summaryrefslogtreecommitdiff
path: root/modules/menu/menu.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-09-18 10:44:19 +0000
committerDries Buytaert <dries@buytaert.net>2008-09-18 10:44:19 +0000
commit9020f7738804bb9533f0b421d4bf99c1159b1c74 (patch)
treed4ab42df91cf016f109615a2d10f197e7e108c63 /modules/menu/menu.install
parenta1674271167635dddbcee8313cc85c092586c402 (diff)
downloadbrdo-9020f7738804bb9533f0b421d4bf99c1159b1c74.tar.gz
brdo-9020f7738804bb9533f0b421d4bf99c1159b1c74.tar.bz2
- Patch #302149 by pwolanin: fixed confusing/duplicate use of names in menu admin.
Diffstat (limited to 'modules/menu/menu.install')
-rw-r--r--modules/menu/menu.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/menu/menu.install b/modules/menu/menu.install
index 8ecebac83..6f927c965 100644
--- a/modules/menu/menu.install
+++ b/modules/menu/menu.install
@@ -10,7 +10,7 @@ function menu_install() {
$t = get_t();
db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('%s', '%s', '%s')", 'navigation', $t('Navigation'), $t('The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.'));
- db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('%s', '%s', '%s')", 'main-menu', $t('Main menu'), $t('The Main menu is often used by themes to show the major sections of a site. A typical representation of the Main menu would be tabs along the top.'));
+ db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('%s', '%s', '%s')", 'main-menu', $t('Main menu'), $t('The Main menu is often used by themes to show the major sections of a site.'));
db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('%s', '%s', '%s')", 'secondary-menu', $t('Secondary menu'), $t('The Secondary menu is often used for pages like legal notices, contact details, and other navigation items that play a lesser role than the Main menu.'));
}