Index: modules/comment/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v retrieving revision 1.830 diff -u -r1.830 comment.module --- modules/comment/comment.module 11 Jan 2010 16:25:16 -0000 1.830 +++ modules/comment/comment.module 12 Jan 2010 19:06:44 -0000 @@ -2487,7 +2487,7 @@ */ function comment_menu_alter(&$items) { // Add comments to the description for admin/content. - $items['admin/content']['description'] = "View, edit, and delete your site's content and comments."; + $items['admin/content']['description'] = "Administer content and comments"; } /** Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.1103 diff -u -r1.1103 user.module --- modules/user/user.module 12 Jan 2010 06:18:58 -0000 1.1103 +++ modules/user/user.module 12 Jan 2010 19:06:44 -0000 @@ -1436,6 +1436,7 @@ // User listing pages. $items['admin/people'] = array( 'title' => 'People', + 'description' => 'Manage user accounts', 'page callback' => 'user_admin', 'page arguments' => array('list'), 'access arguments' => array('administer users'), Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.1205 diff -u -r1.1205 node.module --- modules/node/node.module 12 Jan 2010 06:23:28 -0000 1.1205 +++ modules/node/node.module 12 Jan 2010 19:06:44 -0000 @@ -1764,7 +1764,7 @@ ); $items['admin/content/node'] = array( 'title' => 'Content', - 'description' => "View, edit, and delete your site's content.", + 'description' => "Administer content", 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); Index: modules/help/help.module =================================================================== RCS file: /cvs/drupal/drupal/modules/help/help.module,v retrieving revision 1.95 diff -u -r1.95 help.module --- modules/help/help.module 9 Jan 2010 23:03:21 -0000 1.95 +++ modules/help/help.module 12 Jan 2010 19:06:44 -0000 @@ -12,6 +12,7 @@ function help_menu() { $items['admin/help'] = array( 'title' => 'Help', + 'description' => 'Reference for usage, configuration, and modules', 'page callback' => 'help_main', 'access arguments' => array('access administration pages'), 'weight' => 9, Index: modules/toolbar/toolbar.module =================================================================== RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.module,v retrieving revision 1.31 diff -u -r1.31 toolbar.module --- modules/toolbar/toolbar.module 8 Jan 2010 07:36:53 -0000 1.31 +++ modules/toolbar/toolbar.module 12 Jan 2010 19:06:44 -0000 @@ -204,6 +204,7 @@ 'title' => t('Hello @username', array('@username' => format_username($user))), 'href' => 'user', 'html' => TRUE, + 'attributes' => array('title' => t('User account')), ), 'logout' => array( 'title' => t('Log out'), @@ -231,6 +232,7 @@ 'title' => 'Home', 'href' => '', 'html' => TRUE, + 'attributes' => array('title' => t('Home')), ), ); $build['toolbar_home'] = array( Index: modules/system/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.module,v retrieving revision 1.873 diff -u -r1.873 system.module --- modules/system/system.module 10 Jan 2010 00:09:37 -0000 1.873 +++ modules/system/system.module 12 Jan 2010 19:06:44 -0000 @@ -570,7 +570,7 @@ // Menu items that are basically just menu blocks. $items['admin/structure'] = array( 'title' => 'Structure', - 'description' => 'Control how your site looks and feels.', + 'description' => 'Administer blocks, content types, menus, etc.', 'position' => 'right', 'weight' => -8, 'page callback' => 'system_admin_menu_block_page', @@ -580,7 +580,7 @@ // Appearance. $items['admin/appearance'] = array( 'title' => 'Appearance', - 'description' => 'Select and configure your site theme.', + 'description' => 'Select and configure your themes', 'page callback' => 'system_themes_page', 'access arguments' => array('administer themes'), 'position' => 'left', @@ -589,7 +589,7 @@ ); $items['admin/appearance/list'] = array( 'title' => 'List', - 'description' => 'Select and configure your site theme.', + 'description' => 'Select and configure your theme', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -1, 'file' => 'system.admin.inc', @@ -645,7 +645,7 @@ // Modules. $items['admin/modules'] = array( 'title' => 'Modules', - 'description' => 'Enable or disable add-on modules for your site.', + 'description' => 'Enable or disable modules', 'page callback' => 'drupal_get_form', 'page arguments' => array('system_modules'), 'access arguments' => array('administer modules'), @@ -678,6 +678,7 @@ // Configuration. $items['admin/config'] = array( 'title' => 'Configuration', + 'description' => 'Administer settings', 'page callback' => 'system_admin_config_page', 'access arguments' => array('access administration pages'), 'file' => 'system.admin.inc', @@ -1003,7 +1004,7 @@ // Reports. $items['admin/reports'] = array( 'title' => 'Reports', - 'description' => 'View reports from system logs and other status information.', + 'description' => 'View reports, updates, and errors', 'page callback' => 'system_admin_menu_block_page', 'access arguments' => array('access site reports'), 'weight' => 5, Index: modules/dashboard/dashboard.module =================================================================== RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.module,v retrieving revision 1.13 diff -u -r1.13 dashboard.module --- modules/dashboard/dashboard.module 9 Jan 2010 23:18:55 -0000 1.13 +++ modules/dashboard/dashboard.module 12 Jan 2010 19:06:44 -0000 @@ -27,6 +27,7 @@ function dashboard_menu() { $items['admin/dashboard'] = array( 'title' => 'Dashboard', + 'description' => 'View and customize your dashboard', 'page callback' => 'dashboard_admin', 'access arguments' => array('access dashboard'), // Make this appear first, so for example, in admin menus, it shows up on @@ -35,6 +36,7 @@ ); $items['admin/dashboard/customize'] = array( 'title' => 'Dashboard', + 'description' => 'View and customize your dashboard', 'page callback' => 'dashboard_admin', 'page arguments' => array(TRUE), 'access arguments' => array('access dashboard'),