diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-31 16:38:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-31 16:38:34 +0000 |
commit | 585fdfc9ab56bd3014a68a7845b7ac9ae003b39d (patch) | |
tree | d933f4f2b229c132f65c4e77129dac2b24e9e565 /modules/menu/menu.module | |
parent | 1126d5cfe9bcf385023e294624630e36ff7ec780 (diff) | |
download | brdo-585fdfc9ab56bd3014a68a7845b7ac9ae003b39d.tar.gz brdo-585fdfc9ab56bd3014a68a7845b7ac9ae003b39d.tar.bz2 |
- Patch #108730 by add1sun: small code cleanup.
Diffstat (limited to 'modules/menu/menu.module')
-rw-r--r-- | modules/menu/menu.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.module b/modules/menu/menu.module index 1b5bd7a8c..06fb6b398 100644 --- a/modules/menu/menu.module +++ b/modules/menu/menu.module @@ -23,7 +23,7 @@ Menu administration tabs: $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@menu">Menu page</a>.', array('@menu' => 'http://drupal.org/handbook/modules/menu/')) .'</p>'; return $output; case 'admin/build/menu': - return '<p>'. t('Menus are a collection of links (menu items) used to navigate a website. The list(s) below display the currently available menus along with their menu items. Select an operation from the list to manage each menu or menu item.', array('@admin-settings-menus' => url('admin/build/menu/settings'), '@admin-block'=> url('admin/build/block'))) .'</p>'; + return '<p>'. t('Menus are a collection of links (menu items) used to navigate a website. The list(s) below display the currently available menus along with their menu items. Select an operation from the list to manage each menu or menu item.', array('@admin-settings-menus' => url('admin/build/menu/settings'), '@admin-block' => url('admin/build/block'))) .'</p>'; case 'admin/build/menu/menu/add': return '<p>'. t('Enter the name for your new menu. Remember to enable the newly created block in the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/build/block'))) .'</p>'; case 'admin/build/menu/item/add': |