Mercurial > defr > drupal > core
comparison modules/menu/menu.module @ 7:fff6d4c8c043 6.3
Drupal 6.3
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Dec 2008 14:30:28 +0100 |
parents | 2427550111ae |
children |
comparison
equal
deleted
inserted
replaced
6:2cfdc3c92142 | 7:fff6d4c8c043 |
---|---|
1 <?php | 1 <?php |
2 // $Id: menu.module,v 1.157.2.2 2008/04/09 21:11:48 goba Exp $ | 2 // $Id: menu.module,v 1.157.2.3 2008/05/10 06:53:53 dries Exp $ |
3 | 3 |
4 /** | 4 /** |
5 * @file | 5 * @file |
6 * Allows administrators to customize the site navigation menu. | 6 * Allows administrators to customize the site navigation menu. |
7 */ | 7 */ |
25 case 'admin/build/menu': | 25 case 'admin/build/menu': |
26 return '<p>'. t('Menus are a collection of links (menu items) used to navigate a website. The menus currently available on your site are displayed below. Select a menu from this list to manage its menu items.') .'</p>'; | 26 return '<p>'. t('Menus are a collection of links (menu items) used to navigate a website. The menus currently available on your site are displayed below. Select a menu from this list to manage its menu items.') .'</p>'; |
27 case 'admin/build/menu/add': | 27 case 'admin/build/menu/add': |
28 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>'; | 28 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>'; |
29 case 'admin/build/menu-customize/%': | 29 case 'admin/build/menu-customize/%': |
30 return '<p>'. t('To rearrange menu items, grab a drag-and-drop handle under the <em>Menu item</em> column and drag the items (or group of items) to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.') .'<p>'; | 30 return '<p>'. t('To rearrange menu items, grab a drag-and-drop handle under the <em>Menu item</em> column and drag the items (or group of items) to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.') .'</p>'; |
31 case 'admin/build/menu/item/add': | 31 case 'admin/build/menu/item/add': |
32 return '<p>'. t('Enter the title and path for your new menu item.') .'</p>'; | 32 return '<p>'. t('Enter the title and path for your new menu item.') .'</p>'; |
33 } | 33 } |
34 } | 34 } |
35 | 35 |