? cleanup.alttags.patc ? cleanup.alttags.patch Index: modules/dashboard/dashboard.module =================================================================== RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.module,v retrieving revision 1.12 diff -u -p -r1.12 dashboard.module --- modules/dashboard/dashboard.module 8 Jan 2010 17:26:40 -0000 1.12 +++ modules/dashboard/dashboard.module 9 Jan 2010 21:42:14 -0000 @@ -27,6 +27,7 @@ function dashboard_help($path, $arg) { function dashboard_menu() { $items['admin/dashboard'] = array( 'title' => 'Dashboard', + 'description' => 'View and change 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 Index: modules/help/help.module =================================================================== RCS file: /cvs/drupal/drupal/modules/help/help.module,v retrieving revision 1.94 diff -u -p -r1.94 help.module --- modules/help/help.module 4 Jan 2010 21:31:52 -0000 1.94 +++ modules/help/help.module 9 Jan 2010 21:42:51 -0000 @@ -12,6 +12,7 @@ function help_menu() { $items['admin/help'] = array( 'title' => 'Help', + 'description' => 'Get help with managing and using your site.', 'page callback' => 'help_main', 'access arguments' => array('access administration pages'), 'weight' => 9, Index: modules/system/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.module,v retrieving revision 1.871 diff -u -p -r1.871 system.module --- modules/system/system.module 8 Jan 2010 06:36:34 -0000 1.871 +++ modules/system/system.module 9 Jan 2010 21:41:15 -0000 @@ -570,7 +570,7 @@ function system_menu() { // 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 and other parts.', 'position' => 'right', 'weight' => -8, 'page callback' => 'system_admin_menu_block_page', @@ -580,7 +580,7 @@ function system_menu() { // Appearance. $items['admin/appearance'] = array( 'title' => 'Appearance', - 'description' => 'Select and configure your site theme.', + 'description' => 'Select and configure your theme.', 'page callback' => 'system_themes_page', 'access arguments' => array('administer themes'), 'position' => 'left', @@ -678,6 +678,7 @@ function system_menu() { // Configuration. $items['admin/config'] = array( 'title' => 'Configuration', + 'description' => 'Administer settings and modules', 'page callback' => 'system_admin_config_page', 'access arguments' => array('access administration pages'), 'file' => 'system.admin.inc', @@ -1003,7 +1004,7 @@ function system_menu() { // 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,