Index: xmlsitemap_engines/xmlsitemap_engines.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_engines/Attic/xmlsitemap_engines.admin.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 xmlsitemap_engines.admin.inc
--- xmlsitemap_engines/xmlsitemap_engines.admin.inc	23 May 2009 04:54:03 -0000	1.1.2.8
+++ xmlsitemap_engines/xmlsitemap_engines.admin.inc	23 May 2009 10:35:49 -0000
@@ -49,7 +49,7 @@
   $form['submission']['submission_urls'] = array(
     '#type' => 'fieldset',
     '#title' => t('Submission URLs'),
-    '#description' => t('Use %placeholder instead of the sitemap URL. Select the checkbox to enable the submission for a specific search engine', array('%placeholder' => '[sitemap]')),
+    '#description' => t('Use %placeholder instead of the sitemap URL. Select the checkbox to enable the submission for a specific search engine.', array('%placeholder' => '[sitemap]')),
     '#collapsible' => TRUE,
   );
   foreach (_xmlsitemap_engines_get_engines_data() as $id => $info) {
Index: xmlsitemap_engines/xmlsitemap_engines.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_engines/xmlsitemap_engines.module,v
retrieving revision 1.5.2.37
diff -u -r1.5.2.37 xmlsitemap_engines.module
--- xmlsitemap_engines/xmlsitemap_engines.module	23 May 2009 04:05:39 -0000	1.5.2.37
+++ xmlsitemap_engines/xmlsitemap_engines.module	23 May 2009 10:35:49 -0000
@@ -184,7 +184,7 @@
       variable_get('xmlsitemap_engine_parameter_search_engines', array())
     )
   );
-  drupal_set_message(t('The sitemap has been submitted to the search engines'), 'status', FALSE);
+  drupal_set_message(t('The sitemap has been submitted to the search engines.'), 'status', FALSE);
 }
 
 /*****************************************************************************
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.55
diff -u -r1.6.2.55 xmlsitemap_user.install
--- xmlsitemap_user/xmlsitemap_user.install	23 May 2009 04:05:42 -0000	1.6.2.55
+++ xmlsitemap_user/xmlsitemap_user.install	23 May 2009 10:35:49 -0000
@@ -97,7 +97,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/xmlsitemap.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap/Attic/xmlsitemap.admin.inc,v
retrieving revision 1.1.2.10
diff -u -r1.1.2.10 xmlsitemap.admin.inc
--- xmlsitemap/xmlsitemap.admin.inc	23 May 2009 05:38:38 -0000	1.1.2.10
+++ xmlsitemap/xmlsitemap.admin.inc	23 May 2009 10:35:48 -0000
@@ -107,7 +107,7 @@
     '#title' => t('Priority'),
     '#default_value' => $link->priority,
     '#options' => xmlsitemap_priority_options(TRUE),
-    '#description' => t('The priority of a link determinates its position in the sitemap; the links with a higher priority will appear first in the sitemap'),
+    '#description' => t('The priority of a link determinates its position in the sitemap; the links with a higher priority will appear first in the sitemap.'),
   );
   $form['save'] = array(
     '#type' => 'submit',
@@ -133,7 +133,7 @@
   $user = $original_user;
   session_save_session(TRUE);
   if (!$menu) {
-    form_set_error('path', t('The path is not valid.'));
+    form_set_error('path', t('The path is invalid.'));
     return;
   }
   if (empty($menu['access'])) {
@@ -142,7 +142,7 @@
   }
   $mid = db_result(db_query("SELECT mid from {xmlsitemap_additional} WHERE pdata = '%s'", $path));
   if ($mid !== FALSE) {
-    $error = t('The path has been already used.');
+    $error = t('The path has already been used.');
     if (isset($form['#mid'])) {
       if ($form['#mid'] != $mid) {
         form_set_error('path', $error);
@@ -164,8 +164,8 @@
   $form_state['values']['mid'] = $form['#mid'];
   $link = (object) (array() + $form_state['values']);
   if ($rc = xmlsitemap_write_link($link, 'xmlsitemap_additional', 'xmlsitemap')) {
-    drupal_set_message(t('The %link link has been updated.', array('%link' => $link->pdata)), 'status', FALSE);
-    watchdog('xmlsitemap', 'The %link link has been updated.', array('%link' => $link->pdata));
+    drupal_set_message(t('The link %link has been updated.', array('%link' => $link->pdata)), 'status', FALSE);
+    watchdog('xmlsitemap', 'The link %link has been updated.', array('%link' => $link->pdata));
   }
   if (!rc) {
     drupal_set_message(t('An error occurred while saving the link %link.', array('%link' => $link->pdata)), 'error', FALSE);
@@ -195,7 +195,7 @@
   if ($form_state['values']['confirm']) {
     $link = $form['#link'];
     db_query('DELETE FROM {xmlsitemap_additional} WHERE mid = %d', $link->mid);
-    drupal_set_message(t('The %link link has been deleted', array('%link' => $link->pdata)), 'status', FALSE);
+    drupal_set_message(t('The link %link has been deleted.', array('%link' => $link->pdata)), 'status', FALSE);
   }
 
   $form_state['redirect'] = 'admin/settings/xmlsitemap/additional/list';
@@ -243,11 +243,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(
@@ -304,7 +304,7 @@
   );
   $form['options']['submit'] = array(
     '#type' => 'submit',
-    '#value' => t('Apply'),
+    '#value' => t('Save'),
     '#submit' => array('xmlsitemap_tools_basic_submit'),
   );
   return $form;
@@ -334,7 +334,7 @@
     '#type' => 'fieldset',
   );
   $form['empty']['info'] = array(
-    '#value' => t('There are no settings currently defined.'),
+    '#value' => t('There are currently no settings defined.'),
     '#prefix' => '<div>',
     '#suffix' => '</div>',
   );
