### Eclipse Workspace Patch 1.0
#P CVS update_status
Index: update_status.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/update_status/update_status.module,v
retrieving revision 1.58
diff -u -r1.58 update_status.module
--- update_status.module	20 Jun 2007 23:43:20 -0000	1.58
+++ update_status.module	25 Jun 2007 18:56:02 -0000
@@ -31,7 +31,7 @@
       elseif ($status['update_status']['severity'] == REQUIREMENT_WARNING) {
         drupal_set_message($status['update_status']['description']);
       }
-      return '<p>'. t('See the !available_updates page for information on any modules listed below that have newer versions released.', array('!available_updates' => l(t('available updates'), 'admin/logs/updates'))) .'</p>';
+      return '<p>'. t('See the !available_updates page for information on installed modules with new versions released.', array('!available_updates' => l(t('available updates'), 'admin/logs/updates'))) .'</p>';
   }
 }
 
@@ -45,7 +45,7 @@
     $items[] = array(
       'path' => 'admin/logs/updates',
       'title' => t('Available updates'),
-      'description' => t('Get a status report on your installed modules and available updates.'),
+      'description' => t('Get a status report on installed modules and available updates.'),
       'callback' => 'update_status_status',
       'weight' => 10,
       'access' => $admin_access,
@@ -210,7 +210,7 @@
       }
     }
     else {
-      $requirements['update_status']['value'] = t('No available update data');
+      $requirements['update_status']['value'] = t('No update data available');
       $requirements['update_status']['severity'] = REQUIREMENT_WARNING;
       $requirements['update_status']['description'] = _update_status_no_data();
     }
@@ -260,7 +260,7 @@
  * Prints a warning message when there is no data about available updates.
  */
 function _update_status_no_data() {
-  return t('No information about potential new releases for your currently installed modules is available. To check for updates, you may need to !run_cron or you can !check_manually. Please note that checking for available updates can take a long time, so please be patient.', array(
+  return t('No information is available about potential new releases for currently installed modules. To check for updates, you may need to !run_cron or you can !check_manually. Please note that checking for available updates can take a long time, so please be patient.', array(
     '!run_cron' => l(t('run cron'), 'admin/logs/status/run-cron', NULL, drupal_get_destination()),
     '!check_manually' => l(t('check manually'), 'admin/logs/updates/force-check', NULL, drupal_get_destination()),
   ));
