summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-30 17:03:29 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-30 17:03:29 +0000
commit7d4f2836ba303c3ac2657eb019419c04471fb034 (patch)
treed0e6024a791b6d00e16d60284de879d9deae7156 /modules/help/help.module
parentb93ce19a9c04870647eb4567b94d3a894ba280e7 (diff)
downloadbrdo-7d4f2836ba303c3ac2657eb019419c04471fb034.tar.gz
brdo-7d4f2836ba303c3ac2657eb019419c04471fb034.tar.bz2
- Patch #128082 by Goba et al: Allow localization of built-in menu items.
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index 86cb40245..1333a7e89 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -11,7 +11,7 @@
*/
function help_menu() {
$items['admin/help'] = array(
- 'title' => t('Help'),
+ 'title' => 'Help',
'page callback' => 'help_main',
'access arguments' => array('access administration pages'),
'weight' => 9,
@@ -19,7 +19,7 @@ function help_menu() {
foreach (module_implements('help', TRUE) as $module) {
$items['admin/help/'. $module] = array(
- 'title' => t($module),
+ 'title' => $module,
'page callback' => 'help_page',
'type' => MENU_CALLBACK,
);