Index: xmlsitemap_taxonomy/xmlsitemap_taxonomy.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_taxonomy/Attic/xmlsitemap_taxonomy.module,v
retrieving revision 1.1.2.16
diff -u -r1.1.2.16 xmlsitemap_taxonomy.module
--- xmlsitemap_taxonomy/xmlsitemap_taxonomy.module	11 Jun 2009 13:20:54 -0000	1.1.2.16
+++ xmlsitemap_taxonomy/xmlsitemap_taxonomy.module	12 Jun 2009 09:59:44 -0000
@@ -188,7 +188,7 @@
  */
 function xmlsitemap_taxonomy_xmlsitemap_description() {
   return '<dt>'. t('XML sitemap taxonomy') .'</dt>'.
-    '<dd>'. t('The module adds <a href="@terms">taxonomy terms</a> (categories) to the sitemap. You can change the default priority when you add or edit a vocabulary, and you can override the default priority when you add or edit individual terms.', array('@terms' => url('admin/content/taxonomy'))) .'</dd>';
+    '<dd>'. t('The module adds <a href="@terms">taxonomy terms</a> (categories) to the sitemap. You can change the default priority if you add or edit a vocabulary, and you can override the default priority if you add or edit individual terms.', array('@terms' => url('admin/content/taxonomy'))) .'</dd>';
 }
 
 /**
Index: xmlsitemap/xmlsitemap.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap/Attic/xmlsitemap.install,v
retrieving revision 1.1.2.71
diff -u -r1.1.2.71 xmlsitemap.install
--- xmlsitemap/xmlsitemap.install	10 Jun 2009 21:34:19 -0000	1.1.2.71
+++ xmlsitemap/xmlsitemap.install	12 Jun 2009 09:59:43 -0000
@@ -406,13 +406,13 @@
     variable_set('menu_rebuild_needed', TRUE);
     $ret[] = array(
       'success' => TRUE,
-      'query' => 'UPDATE MENU CALLBACKS',
+      'query' => 'Updated the menu callbacks successfully.',
     );
   }
   module_rebuild_cache();
   $ret[] = array(
     'success' => TRUE,
-    'query' => 'UPDATE MODULES LIST',
+    'query' => 'Updated the module list successfully.',
   );
   return $ret;
 }
@@ -424,7 +424,7 @@
   variable_set('xmlsitemap_cron_submit_frequency', variable_get('xmlsitemap_cron_submit', FALSE) ? 1 : -1);
   $ret[] = array(
     'success' => TRUE,
-    'query' => 'UPDATE MODULE SETTINGS',
+    'query' => 'Updated the module settings successfully.',
   );
   return $ret;
 }
@@ -462,7 +462,7 @@
   variable_set('xmlsitemap_chunk_size', 1000);
   $ret[] = array(
     'success' => TRUE,
-    'query' => 'UPDATE XMLSITEMAP_CHUNK_SIZE',
+    'query' => 'Updated the XML sitemap chunk size successfully.',
   );
   return $ret;
 }
@@ -491,7 +491,7 @@
   module_rebuild_cache();
   $ret[] = array(
     'success' => TRUE,
-    'query' => 'UPDATE MODULES LIST',
+    'query' => 'Updated the modules list successfully.',
   );
   return $ret;
 }
@@ -503,17 +503,17 @@
   $ret = array();
   if (module_exists('xmlsitemap_term')) {
     module_disable(array('xmlsitemap_term'));
-    drupal_set_message(t('XML sitemap term has been deprecated in favor of XML sitemap taxonomy; enable it in the <a href="@modules">modules page.', array('@modules' => url('admin/build/modules'))), 'status', FALSE);
+    drupal_set_message(t('XML sitemap term has been deprecated in favor of XML sitemap taxonomy; enable it in the <a href="@modules">modules page</a>.', array('@modules' => url('admin/build/modules'))), 'status', FALSE);
     $ret[] = array(
       'success' => TRUE,
-      'query' => 'DISABLE XMLSITEMAP_TERM',
+      'query' => 'Disabled the XML sitemap term module successfully.',
     );
   }
   if (function_exists('rules_clear_cache')) {
     rules_clear_cache();
     $ret[] = array(
       'success' => TRUE,
-      'query' => 'CLEAR RULES CACHE',
+      'query' => 'Cleared rules cache successfully.',
     );
   }
   return $ret;
@@ -528,7 +528,7 @@
     variable_set('menu_rebuild_needed', TRUE);
     $ret[] = array(
       'success' => TRUE,
-      'query' => 'UPDATE MENU CALLBACKS',
+      'query' => 'Re-build menu callbacks successfully.',
     );
   }
   return $ret;
Index: xmlsitemap/xmlsitemap.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap/Attic/xmlsitemap.module,v
retrieving revision 1.1.2.136
diff -u -r1.1.2.136 xmlsitemap.module
--- xmlsitemap/xmlsitemap.module	11 Jun 2009 14:23:17 -0000	1.1.2.136
+++ xmlsitemap/xmlsitemap.module	12 Jun 2009 09:59:43 -0000
@@ -81,7 +81,7 @@
         $output .= "<dl>$optional</dl>";
       }
       $output .= '<p>'. t('Links may be assigned a priority between 0.0 and 1.0. The default priority is 0.5. A priority of <em>Not in sitemap</em> excludes a link from the sitemap.') .'</p>';
-      $output .= '<p>'. t('More information is available in the <a href="@module_docs">XML sitemap documentation</a>.', array('@module_docs' => 'http://drupal.org/handbook/modules/gsitemap')) .'</p>';
+      $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@xmlsitemap">XML sitemap module</a>.', array('@xmlsitemap' => 'http://drupal.org/handbook/modules/gsitemap')) .'</p>';
       break;
 
     default:
@@ -227,7 +227,7 @@
     '15' => t('15 rows'),
     '10' => t('10 rows'),
     '5' => t('5 rows'),
-    '-1' => t('Do not process in cron'),
+    '-1' => t('Do not process via cron'),
   );
 }
 
Index: xmlsitemap/xmlsitemap.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap/Attic/xmlsitemap.admin.inc,v
retrieving revision 1.1.2.20
diff -u -r1.1.2.20 xmlsitemap.admin.inc
--- xmlsitemap/xmlsitemap.admin.inc	11 Jun 2009 13:14:58 -0000	1.1.2.20
+++ xmlsitemap/xmlsitemap.admin.inc	12 Jun 2009 09:59:42 -0000
@@ -64,11 +64,11 @@
     '#description' => t('The change frequency associated with the front page.'),
     '#default_value' => variable_get('xmlsitemap_front_page_changefreq', 3600),
     '#options' => array(
-      '3600' => 'Hourly',
-      '86400' => 'Daily',
-      '604800' => 'Weekly',
-      '2419200' => 'Monthly',
-      '29030400' => 'Yearly',
+      '3600' => t('Hourly'),
+      '86400' => t('Daily'),
+      '604800' => t('Weekly'),
+      '2419200' => t('Monthly'),
+      '29030400' => t('Yearly'),
     ),
   );
   $form['frontpage']['xmlsitemap_front_page_priority'] = array(
Index: xmlsitemap/xmlsitemap.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap/Attic/xmlsitemap.pages.inc,v
retrieving revision 1.1.2.38
diff -u -r1.1.2.38 xmlsitemap.pages.inc
--- xmlsitemap/xmlsitemap.pages.inc	11 Jun 2009 13:40:21 -0000	1.1.2.38
+++ xmlsitemap/xmlsitemap.pages.inc	12 Jun 2009 09:59:43 -0000
@@ -223,7 +223,7 @@
   }
   if ($link_count > $chunk_size) {
     if (!$fp = fopen($parent_directory ."/xsm-$id.xml", 'wb')) {
-      watchdog('xmlsitemap', 'Cannot create the cache file (@file)', array('@file' => $parent_directory ."/xsm-$id.xml"), WATCHDOG_ERROR);
+      watchdog('xmlsitemap', 'Cannot create the cache file (@file).', array('@file' => $parent_directory ."/xsm-$id.xml"), WATCHDOG_ERROR);
       return FALSE;
     }
     fwrite($fp, '<?xml version="1.0" encoding="UTF-8"?>' . "\n");
@@ -259,7 +259,7 @@
   }
   else {
     if (!$fp = fopen($parent_directory ."/xsm-$id.xml", 'wb')) {
-      watchdog('xmlsitemap', 'Cannot create the cache file (@file)', array('@file' => $parent_directory ."/xsm-$id.xml"), WATCHDOG_ERROR);
+      watchdog('xmlsitemap', 'Cannot create the cache file (@file).', array('@file' => $parent_directory ."/xsm-$id.xml"), WATCHDOG_ERROR);
       return FALSE;
     }
     _xmlsitemap_create_cache_chunk($fp, $chunk_size);
Index: xmlsitemap_user/xmlsitemap_user.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.module,v
retrieving revision 1.12.2.102
diff -u -r1.12.2.102 xmlsitemap_user.module
--- xmlsitemap_user/xmlsitemap_user.module	11 Jun 2009 13:20:54 -0000	1.12.2.102
+++ xmlsitemap_user/xmlsitemap_user.module	12 Jun 2009 09:59:44 -0000
@@ -84,7 +84,7 @@
   $form['xmlsitemap']['xmlsitemap_user_role_priority'] = array(
     '#type' => 'select',
     '#title' => t('Default priority'),
-    '#description' => t("The priority of all a user's roles will be added together to set the user's default priority. If all role priorities are left at default, the user's default priority will be %priority.", array('%priority' => $options[variable_get('xmlsitemap_user_default_priority', '0.5')])),
+    '#description' => t("The priority of all user roles will be added together to set the user's default priority. If all role priorities are left at default, the user's default priority will be %priority.", array('%priority' => $options[variable_get('xmlsitemap_user_default_priority', '0.5')])),
     '#default_value' => $priority,
     '#options' => $options,
   );
@@ -185,7 +185,7 @@
  */
 function xmlsitemap_user_xmlsitemap_description() {
   return '<dt>'. t('XML sitemap user') .'</dt>'.
-    '<dd>'. t('The module adds user profiles to the sitemap. The <em>anonymous user</em> role must have permission to access user profiles on the <a href="@access">access control page</a>. You can change the default user priority on the <a href="@user_settings">user settings</a> page. The <a href="@user">user role priority</a> will override the default user priority. You can override both the default priority and the role priority when you add or edit a user.', array('@access' => url('admin/user/access'), '@user_settings' => url('admin/user/settings'), '@user_role' => url('admin/user/roles'))) .'</dd>';
+    '<dd>'. t('The module adds user profiles to the sitemap. The <em>anonymous user</em> role must have permission to access user profiles on the <a href="@access">access control page</a>. You can change the default user priority on the <a href="@user_settings">user settings</a> page. The <a href="@user">user role priority</a> will override the default user priority. You can override both the default priority and the role priority if you add or edit a user.', array('@access' => url('admin/user/access'), '@user_settings' => url('admin/user/settings'), '@user_role' => url('admin/user/roles'))) .'</dd>';
 }
 
 /**
Index: xmlsitemap_user/xmlsitemap_user.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.install,v
retrieving revision 1.6.2.60
diff -u -r1.6.2.60 xmlsitemap_user.install
--- xmlsitemap_user/xmlsitemap_user.install	10 Jun 2009 15:16:55 -0000	1.6.2.60
+++ xmlsitemap_user/xmlsitemap_user.install	12 Jun 2009 09:59:44 -0000
@@ -79,7 +79,7 @@
         'default' => 0,
       ),
       'priority' => array(
-        'description' => t('The priority assigned to the role.'),
+        'description' => 'The priority assigned to the role.',
         'type' => 'float',
         'not null' => TRUE,
         'default' => 0.5,
Index: xmlsitemap_engines/xmlsitemap_engines.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_engines/xmlsitemap_engines.install,v
retrieving revision 1.3.2.20
diff -u -r1.3.2.20 xmlsitemap_engines.install
--- xmlsitemap_engines/xmlsitemap_engines.install	10 Jun 2009 21:34:19 -0000	1.3.2.20
+++ xmlsitemap_engines/xmlsitemap_engines.install	12 Jun 2009 09:59:43 -0000
@@ -36,7 +36,7 @@
   variable_set('xmlsitemap_engines_cron_submit_frequency', 3600);
   $ret[] = array(
     'success' => TRUE,
-    'query' => 'UPDATE MODULE SETTINGS',
+    'query' => 'Updated the module settings successfully.',
   );
   return $ret;
 }
