summaryrefslogtreecommitdiff
path: root/modules/path
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/path
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/path')
-rw-r--r--modules/path/path.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index 5baa45a82..1fa588f69 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -38,30 +38,30 @@ function path_help($section) {
*/
function path_menu() {
$items['admin/build/path'] = array(
- 'title' => t('URL aliases'),
- 'description' => t('Change your site\'s URL paths by aliasing them.'),
+ 'title' => 'URL aliases',
+ 'description' => "Change your site's URL paths by aliasing them.",
'page callback' => 'path_admin',
'access arguments' => array('administer url aliases'),
);
$items['admin/build/path/edit'] = array(
- 'title' => t('Edit alias'),
+ 'title' => 'Edit alias',
'page callback' => 'drupal_get_form',
'page arguments' => array('path_admin_edit'),
'type' => MENU_CALLBACK,
);
$items['admin/build/path/delete'] = array(
- 'title' => t('Delete alias'),
+ 'title' => 'Delete alias',
'page callback' => 'drupal_get_form',
'page arguments' => array('path_admin_delete_confirm'),
'type' => MENU_CALLBACK,
);
$items['admin/build/path/list'] = array(
- 'title' => t('List'),
+ 'title' => 'List',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items['admin/build/path/add'] = array(
- 'title' => t('Add alias'),
+ 'title' => 'Add alias',
'page callback' => 'drupal_get_form',
'page arguments' => array('path_admin_edit'),
'access arguments' => array('administer url aliases'),