diff options
Diffstat (limited to 'modules/menu/menu.install')
-rw-r--r-- | modules/menu/menu.install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/menu/menu.install b/modules/menu/menu.install index 0097a3508..8ecebac83 100644 --- a/modules/menu/menu.install +++ b/modules/menu/menu.install @@ -10,8 +10,8 @@ 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')", 'primary-links', $t('Primary links'), $t('Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.')); - db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('%s', '%s', '%s')", 'secondary-links', $t('Secondary links'), $t('Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links.')); + 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')", '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.')); } /** @@ -28,7 +28,7 @@ function menu_uninstall() { */ function menu_schema() { $schema['menu_custom'] = array( - 'description' => t('Holds definitions for top-level custom menus (for example, Primary Links).'), + 'description' => t('Holds definitions for top-level custom menus (for example, Main menu).'), 'fields' => array( 'menu_name' => array( 'type' => 'varchar', |