diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-28 15:18:55 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-28 15:18:55 +0000 |
commit | c8b28009cd19cac57493d008daca7868f23c4aff (patch) | |
tree | 31566a149202fcff3d719ad2785b5fd14f4df026 /modules/system/system.module | |
parent | 949a7014df31a89f226bdbd1222e4f229b63d49f (diff) | |
download | brdo-c8b28009cd19cac57493d008daca7868f23c4aff.tar.gz brdo-c8b28009cd19cac57493d008daca7868f23c4aff.tar.bz2 |
- Made sure all menu items can be translated. Path by Goba.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 4d956df11..945c2f99f 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -59,8 +59,8 @@ function system_link($type) { $help["modules"] = t("Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. On the left hand side click on the name of the module for their individual configurations. Once a module is enabled, you will need to grant permissions to users in user management."); $help["filters"] = t("Filters fit between the raw text in a node and the HTML output. They allow you to replace text selectively. Uses include automatic conversion of emoticons into graphics and filtering HTML content from users' submissions."); - menu("admin/system", "configuration", "system_admin", system_help("admin/system"), 3); - menu("admin/system/themes", "themes", "system_admin", system_help("admin/system/themes"), 2); + menu("admin/system", t("configuration"), "system_admin", system_help("admin/system"), 3); + menu("admin/system/themes", t("themes"), "system_admin", system_help("admin/system/themes"), 2); foreach (theme_list(1) as $theme) { // NOTE: refresh the list because some themes might have been enabled/disabled. @@ -71,15 +71,15 @@ function system_link($type) { } } - menu("admin/system/modules", "modules", "system_admin", system_help("admin/system/modules"), 3); + menu("admin/system/modules", t("modules"), "system_admin", system_help("admin/system/modules"), 3); foreach (module_list(1) as $name) { // NOTE: refresh the list because some modules might have been enabled/disabled. if (module_hook($name, "settings")) { menu("admin/system/modules/$name", $name, "system_admin", module_invoke($name, "system", "admin_help")); } } - menu("admin/system/filters", "filters", "system_admin", system_help("admin/system/filters"), 4); - menu("admin/system/help", "help", "system_help", NULL, 9); + menu("admin/system/filters", t("filters"), "system_admin", system_help("admin/system/filters"), 4); + menu("admin/system/help", t("help"), "system_help", NULL, 9); } } } |