diff options
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 12 |
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'), |