### Eclipse Workspace Patch 1.0
#P drupal-contrib-cvs
Index: modules/views/modules/user.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/user.views.inc,v
retrieving revision 1.21
diff -u -r1.21 user.views.inc
--- modules/views/modules/user.views.inc	31 Mar 2008 18:10:06 -0000	1.21
+++ modules/views/modules/user.views.inc	31 Mar 2008 21:32:44 -0000
@@ -103,7 +103,7 @@
   // picture
   $data['users']['picture'] = array(
     'title' => t('Picture'),
-    'help' => t('The user\'s picture, if allowed'), // The help that appears on the UI,
+    'help' => t("The user's picture, if allowed."), // The help that appears on the UI,
     // Information for displaying the uid
     'field' => array(
       'handler' => 'views_handler_field_user_picture',
@@ -130,7 +130,7 @@
   // access field
   $data['users']['access'] = array(
     'title' => t('Last access'), // The item it appears as on the UI,
-    'help' => t('The user\'s last access date.'), // The help that appears on the UI,
+    'help' => t("The user's last access date."), // The help that appears on the UI,
     'field' => array(
       'handler' => 'views_handler_field_date',
       'click sortable' => TRUE,
@@ -146,7 +146,7 @@
   // login field
   $data['users']['login'] = array(
     'title' => t('Last login'), // The item it appears as on the UI,
-    'help' => t('The user\'s last login date.'), // The help that appears on the UI,
+    'help' => t("The user's last login date."), // The help that appears on the UI,
     'field' => array(
       'handler' => 'views_handler_field_date',
       'click sortable' => TRUE,
@@ -180,7 +180,7 @@
   // log field
   $data['users']['signature'] = array(
     'title' => t('Signature'), // The item it appears as on the UI,
-    'help' => t('The user\'s signature.'), // The help that appears on the UI,
+    'help' => t("The user's signature."), // The help that appears on the UI,
      // Information for displaying a title as a field
     'field' => array(
       'handler' => 'views_handler_field_xss',
Index: modules/views/modules/comment.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/comment.views.inc,v
retrieving revision 1.4
diff -u -r1.4 comment.views.inc
--- modules/views/modules/comment.views.inc	30 Mar 2008 15:57:01 -0000	1.4
+++ modules/views/modules/comment.views.inc	31 Mar 2008 21:32:43 -0000
@@ -23,7 +23,7 @@
   $data['comments']['table']['base'] = array(
     'field' => 'cid',
     'title' => t('Comments'),
-    'help' => t('Your site\'s comments.'),
+    'help' => t("Your site's comments."),
   );
 
   //joins
@@ -77,7 +77,7 @@
 
   //name (of comment author)
   $data['comments']['name'] = array(
-    'title' => t('Author\'s name'),
+    'title' => t("Author's name"),
     'help' => t('The name of the poster.'),
     'field' => array(
       'handler' => 'views_handler_field_username_comment',
@@ -87,8 +87,8 @@
 
   //homepage
   $data['comments']['homepage'] = array(
-    'title' => t('Author\'s website'),
-    'help' => t('The website address of the comment\'s author. Can be a link. The homepage can also be linked with the Name field.'),
+    'title' => t("Author's website"),
+    'help' => t("The website address of the comment's author. Can be a link. The homepage can also be linked with the Name field."),
     'field' => array(
       'handler' => 'views_handler_field',
       'click sortable' => TRUE,
@@ -152,7 +152,7 @@
 
   //last_comment_name (author's name)
   $data['node_comment_statistics']['last_comment_name'] = array(
-    'title' => t('Last author\'s name'),
+    'title' => t("Last author's name"),
     'help' => t('The name of the author of the last posted comment.'),
     'field' => array(
       'handler' => 'views_handler_field',
@@ -247,7 +247,7 @@
   function options_form(&$form, &$form_state) {
     parent::options_form($form, $form_state);
     $form['link_to_user'] = array(
-      '#title' => t('Link this field to its user or an author\'s homepage'),
+      '#title' => t("Link this field to its user or an author's homepage"),
       '#type' => 'checkbox',
       '#default_value' => $this->options['link_to_user'],
     );
Index: modules/views/modules/node.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/node.views.inc,v
retrieving revision 1.43
diff -u -r1.43 node.views.inc
--- modules/views/modules/node.views.inc	31 Mar 2008 00:18:45 -0000	1.43
+++ modules/views/modules/node.views.inc	31 Mar 2008 21:32:44 -0000
@@ -26,7 +26,7 @@
   $data['node']['table']['base'] = array(
     'field' => 'nid',
     'title' => t('Node'),
-    'help' => t('Nodes are a Drupal site\'s primary content.'),
+    'help' => t("Nodes are a Drupal site's primary content."),
     'weight' => 10,
   );
 
Index: modules/views/includes/plugins.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/includes/plugins.inc,v
retrieving revision 1.49
diff -u -r1.49 plugins.inc
--- modules/views/includes/plugins.inc	31 Mar 2008 03:54:07 -0000	1.49
+++ modules/views/includes/plugins.inc	31 Mar 2008 21:32:43 -0000
@@ -494,7 +494,7 @@
         'category' => 'basic',
         'title' => t('Use pager'),
         'value' => $this->get_option('use_pager') ? ($this->get_option('use_pager') == 'mini' ? t('Mini') : t('Yes')) : t('No'),
-        'desc' => t('Change this display\'s pager setting.'),
+        'desc' => t("Change this display's pager setting."),
       );
     }
 
@@ -595,7 +595,7 @@
         'category' => 'basic',
         'title' => $name,
         'value' => $field,
-        'desc' => t('Change this display\'s !name.', array('!name' => strtolower($name))),
+        'desc' => t("Change this display's !name.", array('!name' => strtolower($name))),
       );
     }
   }
@@ -659,7 +659,7 @@
         $form['pager_element'] = array(
           '#type' => 'textfield',
           '#title' => t('Pager element'),
-          '#description' => t('Unless you\'re experiencing problems with pagers related to this view, you should leave this at 0. If using multiple pagers on one page you may need to set this number to a higher value so as not to conflict within the ?page= array.  Large values will add a lot of commas to your URLs, so avoid if possible.'),
+          '#description' => t("Unless you're experiencing problems with pagers related to this view, you should leave this at 0. If using multiple pagers on one page you may need to set this number to a higher value so as not to conflict within the ?page= array. Large values will add a lot of commas to your URLs, so avoid if possible."),
           '#default_value' => intval($this->get_option('pager_element')),
         );
         break;
@@ -683,7 +683,7 @@
         $form['use_more'] = array(
           '#type' => 'checkbox',
           '#title' => t('Create more link'),
-          '#description' => t('This will add a more link to the bottom of this view, which will link to the page view. If you have more than one page view, the link will point to the display specified in \'Link display\' above.'),
+          '#description' => t("This will add a more link to the bottom of this view, which will link to the page view. If you have more than one page view, the link will point to the display specified in 'Link display' above."),
           '#default_value' => $this->get_option('use_more'),
         );
         break;
@@ -831,7 +831,7 @@
         $form['link_display'] = array(
           '#type' => 'radios',
           '#options' => $options,
-          '#description' => t('Which display to use to get this display\'s path for things like summary links, rss feed links, more links, etc.'),
+          '#description' => t("Which display to use to get this display's path for things like summary links, rss feed links, more links, etc."),
           '#default_value' => $this->get_link_display(),
         );
         break;
Index: modules/views/js/ajax_view.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/js/ajax_view.js,v
retrieving revision 1.2
diff -u -r1.2 ajax_view.js
--- modules/views/js/ajax_view.js	30 Mar 2008 15:58:26 -0000	1.2
+++ modules/views/js/ajax_view.js	31 Mar 2008 21:32:43 -0000
@@ -67,7 +67,7 @@
                 });
               }
             },
-            error: function() { alert(Drupal.t("An error occurred")); },
+            error: function() { alert(Drupal.t("An error occurred.")); },
             dataType: 'json'
           });
   
@@ -98,7 +98,7 @@
                     });
                   }
                 },
-                error: function() { $(this).removeClass('views-throbbing'); alert(Drupal.t("An error occurred")); },
+                error: function() { $(this).removeClass('views-throbbing'); alert(Drupal.t("An error occurred.")); },
                 dataType: 'json'
               });
 
@@ -130,7 +130,7 @@
                     });
                   }
                 },
-                error: function() { $(this).removeClass('views-throbbing'); alert(Drupal.t("An error occurred")); },
+                error: function() { $(this).removeClass('views-throbbing'); alert(Drupal.t("An error occurred.")); },
                 dataType: 'json'
               });
 
