? removing.more.please.patch
? removing.please.patch
? standardize.to.addcontent.patch
? sites/default/files
? sites/default/private
? sites/default/settings.php
Index: includes/authorize.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/authorize.inc,v
retrieving revision 1.6
diff -u -p -r1.6 authorize.inc
--- includes/authorize.inc	31 Dec 2009 13:43:36 -0000	1.6
+++ includes/authorize.inc	9 Jan 2010 16:07:39 -0000
@@ -43,7 +43,7 @@ function authorize_filetransfer_form($fo
 
   $form['information']['main_header'] = array(
     '#prefix' => '<h3>',
-    '#markup' => t('To continue, please provide your server connection details'),
+    '#markup' => t('To continue, provide your server connection details'),
     '#suffix' => '</h3>',
   );
 
Index: includes/install.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/install.inc,v
retrieving revision 1.121
diff -u -p -r1.121 install.inc
--- includes/install.inc	4 Jan 2010 21:31:52 -0000	1.121
+++ includes/install.inc	9 Jan 2010 17:57:51 -0000
@@ -470,11 +470,11 @@ function drupal_rewrite_settings($settin
 
     $fp = fopen(DRUPAL_ROOT . '/' . $settings_file, 'w');
     if ($fp && fwrite($fp, $buffer) === FALSE) {
-      throw new Exception(st('Failed to modify %settings, please verify the file permissions.', array('%settings' => $settings_file)));
+      throw new Exception(st('Failed to modify %settings, verify the file permissions.', array('%settings' => $settings_file)));
     }
   }
   else {
-    throw new Exception(st('Failed to open %settings, please verify the file permissions.', array('%settings' => $default_settings)));
+    throw new Exception(st('Failed to open %settings, verify the file permissions.', array('%settings' => $default_settings)));
   }
 }
 
@@ -524,7 +524,7 @@ function drupal_verify_profile($install_
       'title'       => st('Required modules'),
       'value'       => st('Required modules not found.'),
       'severity'    => REQUIREMENT_ERROR,
-      'description' => st('The following modules are required but were not found. Please move them into the appropriate modules subdirectory, such as <em>sites/all/modules</em>. Missing modules: !modules', array('!modules' => implode(', ', $modules))),
+      'description' => st('The following modules are required but were not found. Move them into the appropriate modules subdirectory, such as <em>sites/all/modules</em>. Missing modules: !modules', array('!modules' => implode(', ', $modules))),
     );
   }
   return $requirements;
Index: includes/mail.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/mail.inc,v
retrieving revision 1.29
diff -u -p -r1.29 mail.inc
--- includes/mail.inc	4 Dec 2009 16:31:04 -0000	1.29
+++ includes/mail.inc	9 Jan 2010 17:58:23 -0000
@@ -151,7 +151,7 @@ function drupal_mail($module, $key, $to,
     // Log errors
     if (!$message['result']) {
       watchdog('mail', 'Error sending e-mail (from %from to %to).', array('%from' => $message['from'], '%to' => $message['to']), WATCHDOG_ERROR);
-      drupal_set_message(t('Unable to send e-mail. Please contact the site administrator if the problem persists.'), 'error');
+      drupal_set_message(t('Unable to send e-mail. Contact the site administrator if the problem persists.'), 'error');
     }
   }
 
Index: includes/theme.maintenance.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.maintenance.inc,v
retrieving revision 1.51
diff -u -p -r1.51 theme.maintenance.inc
--- includes/theme.maintenance.inc	7 Jan 2010 07:41:45 -0000	1.51
+++ includes/theme.maintenance.inc	9 Jan 2010 17:59:05 -0000
@@ -144,7 +144,7 @@ function theme_install_page($variables) 
     $title = count($messages['error']) > 1 ? st('The following errors must be resolved before you can continue the installation process') : st('The following error must be resolved before you can continue the installation process');
     $variables['messages'] .= '<h3>' . $title . ':</h3>';
     $variables['messages'] .= theme('status_messages', array('display' => 'error'));
-    $variables['content'] .= '<p>' . st('Please check the error messages and <a href="!url">try again</a>.', array('!url' => request_uri())) . '</p>';
+    $variables['content'] .= '<p>' . st('Check the error messages and <a href="!url">try again</a>.', array('!url' => request_uri())) . '</p>';
   }
 
   // Special handling of warning messages
Index: includes/update.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/update.inc,v
retrieving revision 1.26
diff -u -p -r1.26 update.inc
--- includes/update.inc	9 Jan 2010 02:51:09 -0000	1.26
+++ includes/update.inc	9 Jan 2010 18:00:24 -0000
@@ -84,7 +84,7 @@ function update_prepare_d7_bootstrap() {
         'title' => 'Settings file',
         'value' => $writable ? 'The settings file is writable.' : 'The settings file is not writable.',
         'severity' => $writable ? REQUIREMENT_OK : REQUIREMENT_ERROR,
-        'description' => $writable ? '' : 'Drupal requires write permissions to <em>' . $settings_file . '</em> during the update process. If you are unsure how to grant file permissions, please consult the <a href="http://drupal.org/server-permissions">online handbook</a>.',
+        'description' => $writable ? '' : 'Drupal requires write permissions to <em>' . $settings_file . '</em> during the update process. If you are unsure how to grant file permissions, consult the <a href="http://drupal.org/server-permissions">online handbook</a>.',
       ),
     );
     update_extra_requirements($requirements);
Index: includes/database/pgsql/install.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/database/pgsql/install.inc,v
retrieving revision 1.4
diff -u -p -r1.4 install.inc
--- includes/database/pgsql/install.inc	1 Aug 2009 20:31:50 -0000	1.4
+++ includes/database/pgsql/install.inc	9 Jan 2010 18:01:58 -0000
@@ -42,7 +42,7 @@ class DatabaseTasks_pgsql extends Databa
           '!link' => '<a href="INSTALL.pgsql.txt">INSTALL.pgsql.txt</a>'
         );
         $text  = 'The %driver database must use %encoding encoding to work with Drupal.';
-        $text .= 'Please recreate the database with %encoding encoding. See !link for more details.';
+        $text .= 'Recreate the database with %encoding encoding. See !link for more details.';
         $this->fail(st($text, $replacements));
       }
     } catch (Exception $e) {
@@ -100,7 +100,7 @@ class DatabaseTasks_pgsql extends Databa
       $this->pass(st('PostgreSQL has initialized itself.'));
     }
     catch (Exception $e) {
-      $this->fail(st('Drupal could not be correctly setup with the existing database. Please revise any errors.'));
+      $this->fail(st('Drupal could not be correctly setup with the existing database. Revise any errors.'));
     }
   }
 }
Index: includes/filetransfer/ftp.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/filetransfer/ftp.inc,v
retrieving revision 1.10
diff -u -p -r1.10 ftp.inc
--- includes/filetransfer/ftp.inc	4 Dec 2009 16:31:04 -0000	1.10
+++ includes/filetransfer/ftp.inc	9 Jan 2010 18:02:54 -0000
@@ -112,10 +112,10 @@ class FileTransferFTPExtension extends F
     $this->connection = ftp_connect($this->hostname, $this->port);
 
     if (!$this->connection) {
-      throw new FileTransferException("Cannot connect to FTP Server, please check settings");
+      throw new FileTransferException("Cannot connect to FTP Server, check settings");
     }
     if (!ftp_login($this->connection, $this->username, $this->password)) {
-      throw new FileTransferException("Cannot login to FTP server, please check username and password");
+      throw new FileTransferException("Cannot login to FTP server, check username and password");
     }
   }
 
Index: modules/aggregator/aggregator.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.admin.inc,v
retrieving revision 1.48
diff -u -p -r1.48 aggregator.admin.inc
--- modules/aggregator/aggregator.admin.inc	3 Jan 2010 21:01:04 -0000	1.48
+++ modules/aggregator/aggregator.admin.inc	9 Jan 2010 18:04:03 -0000
@@ -127,7 +127,7 @@ function aggregator_form_feed_validate($
   if ($form_state['values']['op'] == t('Save')) {
     // Ensure URL is valid.
     if (!valid_url($form_state['values']['url'], TRUE)) {
-      form_set_error('url', t('The URL %url is invalid. Please enter a fully-qualified URL, such as http://www.example.com/feed.xml.', array('%url' => $form_state['values']['url'])));
+      form_set_error('url', t('The URL %url is invalid. Enter a fully-qualified URL, such as http://www.example.com/feed.xml.', array('%url' => $form_state['values']['url'])));
     }
     // Check for duplicate titles.
     if (isset($form_state['values']['fid'])) {
@@ -138,10 +138,10 @@ function aggregator_form_feed_validate($
     }
     foreach ($result as $feed) {
       if (strcasecmp($feed->title, $form_state['values']['title']) == 0) {
-        form_set_error('title', t('A feed named %feed already exists. Please enter a unique title.', array('%feed' => $form_state['values']['title'])));
+        form_set_error('title', t('A feed named %feed already exists. Enter a unique title.', array('%feed' => $form_state['values']['title'])));
       }
       if (strcasecmp($feed->url, $form_state['values']['url']) == 0) {
-        form_set_error('url', t('A feed with this URL %url already exists. Please enter a unique URL.', array('%url' => $form_state['values']['url'])));
+        form_set_error('url', t('A feed with this URL %url already exists. Enter a unique URL.', array('%url' => $form_state['values']['url'])));
       }
     }
   }
@@ -525,7 +525,7 @@ function aggregator_form_category_valida
       $category = db_query("SELECT cid FROM {aggregator_category} WHERE title = :title", array(':title' => $form_state['values']['title']))->fetchObject();
     }
     if ($category) {
-      form_set_error('title', t('A category named %category already exists. Please enter a unique title.', array('%category' => $form_state['values']['title'])));
+      form_set_error('title', t('A category named %category already exists. Enter a unique title.', array('%category' => $form_state['values']['title'])));
     }
   }
 }
Index: modules/block/block.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.admin.inc,v
retrieving revision 1.69
diff -u -p -r1.69 block.admin.inc
--- modules/block/block.admin.inc	8 Jan 2010 11:10:32 -0000	1.69
+++ modules/block/block.admin.inc	9 Jan 2010 18:04:58 -0000
@@ -384,7 +384,7 @@ function block_admin_configure_validate(
       ':info' => $form_state['values']['info'],
     ))->fetchField();
     if (empty($form_state['values']['info']) || $custom_block_exists) {
-      form_set_error('info', t('Please ensure that each block description is unique.'));
+      form_set_error('info', t('Ensure that each block description is unique.'));
     }
   }
 }
@@ -462,7 +462,7 @@ function block_add_block_form_validate($
   $custom_block_exists = (bool) db_query_range('SELECT 1 FROM {block_custom} WHERE info = :info', 0, 1, array(':info' => $form_state['values']['info']))->fetchField();
 
   if (empty($form_state['values']['info']) || $custom_block_exists) {
-    form_set_error('info', t('Please ensure that each block description is unique.'));
+    form_set_error('info', t('Ensure that each block description is unique.'));
   }
 }
 
Index: modules/block/block.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.test,v
retrieving revision 1.33
diff -u -p -r1.33 block.test
--- modules/block/block.test	1 Dec 2009 22:30:30 -0000	1.33
+++ modules/block/block.test	9 Jan 2010 18:05:53 -0000
@@ -99,7 +99,7 @@ class BlockTestCase extends DrupalWebTes
     $this->drupalGet('admin/structure/block/manage/block/' . $bid . '/configure');
     $this->assertNoText(t('Block body'));
     $this->drupalPost('admin/structure/block/manage/block/' . $bid . '/configure', array(), t('Save block'));
-    $this->assertNoText(t('Please ensure that each block description is unique.'));
+    $this->assertNoText(t('Ensure that each block description is unique.'));
 
     // Confirm that the custom block is still being displayed using configured text format.
     $this->drupalGet('node');
Index: modules/color/color.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/color/color.install,v
retrieving revision 1.5
diff -u -p -r1.5 color.install
--- modules/color/color.install	13 May 2009 19:42:14 -0000	1.5
+++ modules/color/color.install	9 Jan 2010 18:06:50 -0000
@@ -23,14 +23,14 @@ function color_requirements($phase) {
       }
       else {
         $requirements['gd']['severity'] = REQUIREMENT_ERROR;
-        $requirements['gd']['description'] = t('The GD library for PHP is enabled, but was compiled without PNG support. Please check the <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/ref.image.php'));
+        $requirements['gd']['description'] = t('The GD library for PHP is enabled, but was compiled without PNG support. Check the <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/ref.image.php'));
       }
     }
     else {
       $requirements['gd'] = array(
         'value' => t('Not installed'),
         'severity' => REQUIREMENT_ERROR,
-        'description' => t('The GD library for PHP is missing or outdated. Please check the <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/ref.image.php')),
+        'description' => t('The GD library for PHP is missing or outdated. Check the <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/ref.image.php')),
       );
     }
     $requirements['gd']['title'] = t('GD library');
Index: modules/comment/comment.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.admin.inc,v
retrieving revision 1.38
diff -u -p -r1.38 comment.admin.inc
--- modules/comment/comment.admin.inc	7 Jan 2010 05:23:51 -0000	1.38
+++ modules/comment/comment.admin.inc	9 Jan 2010 18:07:23 -0000
@@ -140,7 +140,7 @@ function comment_admin_overview_validate
   $form_state['values']['comments'] = array_diff($form_state['values']['comments'], array(0));
   // We can't execute any 'Update options' if no comments were selected.
   if (count($form_state['values']['comments']) == 0) {
-    form_set_error('', t('Please select one or more comments to perform the update on.'));
+    form_set_error('', t('Select one or more comments to perform the update on.'));
   }
 }
 
Index: modules/contact/contact.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/contact/contact.pages.inc,v
retrieving revision 1.39
diff -u -p -r1.39 contact.pages.inc
--- modules/contact/contact.pages.inc	3 Jan 2010 21:01:04 -0000	1.39
+++ modules/contact/contact.pages.inc	9 Jan 2010 18:07:54 -0000
@@ -19,7 +19,7 @@ function contact_site_form($form, &$form
   $limit = variable_get('contact_threshold_limit', 5);
   $window = variable_get('contact_threshold_window', 3600);
   if (!flood_is_allowed('contact', $limit, $window) && !user_access('administer contact forms')) {
-    drupal_set_message(t("You cannot send more than %limit messages in @interval. Please try again later.", array('%limit' => $limit, '@interval' => format_interval($window))), 'error');
+    drupal_set_message(t("You cannot send more than %limit messages in @interval. Try again later.", array('%limit' => $limit, '@interval' => format_interval($window))), 'error');
     drupal_access_denied();
     drupal_exit();
   }
@@ -178,7 +178,7 @@ function contact_personal_form($form, &$
   $limit = variable_get('contact_threshold_limit', 5);
   $window = variable_get('contact_threshold_window', 3600);
   if (!flood_is_allowed('contact', $limit, $window) && !user_access('administer contact forms') && !user_access('administer users')) {
-    drupal_set_message(t("You cannot send more than %limit messages in @interval. Please try again later.", array('%limit' => $limit, '@interval' => format_interval($window))), 'error');
+    drupal_set_message(t("You cannot send more than %limit messages in @interval. Try again later.", array('%limit' => $limit, '@interval' => format_interval($window))), 'error');
     drupal_access_denied();
     drupal_exit();
   }
Index: modules/contact/contact.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/contact/contact.test,v
retrieving revision 1.39
diff -u -p -r1.39 contact.test
--- modules/contact/contact.test	7 Dec 2009 06:07:19 -0000	1.39
+++ modules/contact/contact.test	9 Jan 2010 18:08:37 -0000
@@ -145,7 +145,7 @@ class ContactSitewideTestCase extends Dr
     // Submit contact form one over limit.
     $this->drupalGet('contact');
     $this->assertResponse(403, t('Access denied to anonymous user after reaching message treshold.'));
-    $this->assertRaw(t('You cannot send more than %number messages in @interval. Please try again later.', array('%number' => variable_get('contact_threshold_limit', 3), '@interval' => format_interval(600))), t('Message threshold reached.'));
+    $this->assertRaw(t('You cannot send more than %number messages in @interval. Try again later.', array('%number' => variable_get('contact_threshold_limit', 3), '@interval' => format_interval(600))), t('Message threshold reached.'));
 
     // Delete created categories.
     $this->drupalLogin($admin_user);
@@ -371,12 +371,12 @@ class ContactPersonalTestCase extends Dr
 
     // Submit contact form one over limit.
     $this->drupalGet('user/' . $this->contact_user->uid. '/contact');
-    $this->assertRaw(t('You cannot send more than %number messages in @interval. Please try again later.', array('%number' => $flood_limit, '@interval' => format_interval(variable_get('contact_threshold_window', 3600)))), 'Normal user denied access to flooded contact form.');
+    $this->assertRaw(t('You cannot send more than %number messages in @interval. Try again later.', array('%number' => $flood_limit, '@interval' => format_interval(variable_get('contact_threshold_window', 3600)))), 'Normal user denied access to flooded contact form.');
 
     // Test that the admin user can still access the contact form even though
     // the flood limit was reached.
     $this->drupalLogin($this->admin_user);
-    $this->assertNoText('Please try again later.', 'Admin user not denied access to flooded contact form.');
+    $this->assertNoText('Try again later.', 'Admin user not denied access to flooded contact form.');
   }
 
   /**
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 18:09:39 -0000
@@ -38,14 +38,14 @@ function help_menu() {
 function help_help($path, $arg) {
   switch ($path) {
     case 'admin/help':
-      $output = '<p>' . t('Please follow these steps to set up and start using your website:') . '</p>';
+      $output = '<p>' . t('Follow these steps to set up and start using your website:') . '</p>';
       $output .= '<ol>';
       $output .= '<li>' . t('<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/config'))) . '</li>';
       $output .= '<li>' . t('<strong>Enable additional functionality</strong> Next, visit the <a href="@modules">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href="@download_modules">Drupal modules download section</a>.', array('@modules' => url('admin/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '</li>';
       $output .= '<li>' . t('<strong>Customize your website design</strong> To change the "look and feel" of your website, visit the <a href="@themes">themes section</a>. You may choose from one of the included themes or download additional themes from the <a href="@download_themes">Drupal themes download section</a>.', array('@themes' => url('admin/appearance'), '@download_themes' => 'http://drupal.org/project/themes')) . '</li>';
       $output .= '<li>' . t('<strong>Start posting content</strong> Finally, you can <a href="@content">add new content</a> for your website.', array('@content' => url('node/add'))) . '</li>';
       $output .= '</ol>';
-      $output .= '<p>' . t('For more information, please refer to the specific topics listed in the next section, or the <a href="@handbook">online Drupal handbooks</a>. You may also post at the <a href="@forum">Drupal forum</a>, or view the wide range of <a href="@support">other support options</a> available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '</p>';
+      $output .= '<p>' . t('For more information, refer to the specific topics listed in the next section, or the <a href="@handbook">online Drupal handbooks</a>. You may also post at the <a href="@forum">Drupal forum</a>, or view the wide range of <a href="@support">other support options</a> available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '</p>';
       return $output;
     case 'admin/help#help':
       $output = '';
Index: modules/help/help.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/help/help.test,v
retrieving revision 1.16
diff -u -p -r1.16 help.test
--- modules/help/help.test	8 Jan 2010 05:14:03 -0000	1.16
+++ modules/help/help.test	9 Jan 2010 18:11:41 -0000
@@ -44,7 +44,7 @@ class HelpTestCase extends DrupalWebTest
     $this->assertRaw(drupal_get_path('module', 'help') . '/help.css', t('The help.css file is present in the HTML.'));
 
     // Verify that introductory help text exists, goes for 100% module coverage.
-    $this->assertRaw(t('For more information, please refer to the specific topics listed in the next section, or the <a href="@drupal">online Drupal handbooks</a>.', array('@drupal' => 'http://drupal.org/handbooks')), 'Help intro text correctly appears.');
+    $this->assertRaw(t('For more information, refer to the specific topics listed in the next section, or the <a href="@drupal">online Drupal handbooks</a>.', array('@drupal' => 'http://drupal.org/handbooks')), 'Help intro text correctly appears.');
 
     // Verify that help topics text appears.
     $this->assertRaw('<h2>' . t('Help topics') . '</h2><p>' . t('Help is available on the following items:') . '</p>', t('Help topics text correctly appears.'));
Index: modules/image/image.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/image/image.module,v
retrieving revision 1.30
diff -u -p -r1.30 image.module
--- modules/image/image.module	11 Dec 2009 16:49:40 -0000	1.30
+++ modules/image/image.module	9 Jan 2010 18:12:45 -0000
@@ -609,7 +609,7 @@ function image_style_generate() {
       // to support Retry-After.
       drupal_add_http_header('503 Service Unavailable');
       drupal_add_http_header('Retry-After', 3);
-      print t('Image generation in progress, please try again shortly.');
+      print t('Image generation in progress, try again shortly.');
       drupal_exit();
     }
   }
Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.108
diff -u -p -r1.108 content_types.inc
--- modules/node/content_types.inc	3 Jan 2010 21:01:04 -0000	1.108
+++ modules/node/content_types.inc	9 Jan 2010 18:13:08 -0000
@@ -284,7 +284,7 @@ function node_type_form_validate($form, 
     // 'theme' conflicts with theme_node_form().
     // '0' is invalid, since elsewhere we check it using empty().
     if (in_array($type->type, array('0', 'theme'))) {
-      form_set_error('type', t("Invalid machine-readable name. Please enter a name other than %invalid.", array('%invalid' => $type->type)));
+      form_set_error('type', t("Invalid machine-readable name. Enter a name other than %invalid.", array('%invalid' => $type->type)));
     }
   }
 
Index: modules/node/node.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.api.php,v
retrieving revision 1.54
diff -u -p -r1.54 node.api.php
--- modules/node/node.api.php	4 Jan 2010 20:34:28 -0000	1.54
+++ modules/node/node.api.php	9 Jan 2010 18:13:52 -0000
@@ -860,7 +860,7 @@ function hook_form($node, $form_state) {
       2 => 'Option B',
       3 => 'Option C',
     ),
-    '#description' => t('Please choose an option.'),
+    '#description' => t('Choose an option.'),
   );
 
   return $form;
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.1200
diff -u -p -r1.1200 node.module
--- modules/node/node.module	8 Jan 2010 07:36:53 -0000	1.1200
+++ modules/node/node.module	9 Jan 2010 18:15:39 -0000
@@ -73,7 +73,7 @@ function node_help($path, $arg) {
       $message = t('The content access permissions need to be rebuilt.');
     }
     else {
-      $message = t('The content access permissions need to be rebuilt. Please visit <a href="@node_access_rebuild">this page</a>.', array('@node_access_rebuild' => url('admin/reports/status/rebuild')));
+      $message = t('The content access permissions need to be rebuilt. <a href="@node_access_rebuild">Rebuild permissions</a>.', array('@node_access_rebuild' => url('admin/reports/status/rebuild')));
     }
     drupal_set_message($message, 'error');
   }
@@ -3190,7 +3190,7 @@ function node_assign_owner_action_form($
 function node_assign_owner_action_validate($form, $form_state) {
   $exists = (bool) db_query_range('SELECT 1 FROM {users} WHERE name = :name', 0, 1, array(':name' => $form_state['values']['owner_name']))->fetchField();
   if (!$exists) {
-    form_set_error('owner_name', t('Please enter a valid username.'));
+    form_set_error('owner_name', t('Enter a valid username.'));
   }
 }
 
Index: modules/node/node.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v
retrieving revision 1.108
diff -u -p -r1.108 node.pages.inc
--- modules/node/node.pages.inc	3 Jan 2010 21:01:04 -0000	1.108
+++ modules/node/node.pages.inc	9 Jan 2010 18:17:35 -0000
@@ -45,7 +45,7 @@ function theme_node_add_list($variables)
     $output .= '</dl>';
   }
   else {
-    $output = '<p>' . t('You have not created any content types yet. Please go to the <a href="@create-content">content type creation page</a> to add a new content type.', array('@create-content' => url('admin/structure/types/add'))) . '</p>';
+    $output = '<p>' . t('You have not created any content types yet. Go to the <a href="@create-content">content type creation page</a> to add a new content type.', array('@create-content' => url('admin/structure/types/add'))) . '</p>';
   }
   return $output;
 }
Index: modules/openid/openid.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/openid/openid.install,v
retrieving revision 1.9
diff -u -p -r1.9 openid.install
--- modules/openid/openid.install	4 Dec 2009 16:49:47 -0000	1.9
+++ modules/openid/openid.install	9 Jan 2010 18:18:03 -0000
@@ -70,7 +70,7 @@ function openid_requirements($phase) {
       $requirements['bcmath'] = array(
         'value' => t('Not installed'),
         'severity' => REQUIREMENT_ERROR,
-        'description' => t('OpenID requires the BC Math library for PHP which is missing or outdated. Please check the <a href="@url">PHP BC Math Library documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/en/book.bc.php')),
+        'description' => t('OpenID requires the BC Math library for PHP which is missing or outdated. Check the <a href="@url">PHP BC Math Library documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/en/book.bc.php')),
       );
     }
     else {
Index: modules/openid/openid.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/openid/openid.module,v
retrieving revision 1.68
diff -u -p -r1.68 openid.module
--- modules/openid/openid.module	4 Dec 2009 16:49:47 -0000	1.68
+++ modules/openid/openid.module	9 Jan 2010 18:18:39 -0000
@@ -183,7 +183,7 @@ function openid_begin($claimed_id, $retu
 
   $services = openid_discovery($claimed_id);
   if (count($services) == 0) {
-    form_set_error('openid_identifier', t('Sorry, that is not a valid OpenID. Please ensure you have spelled your ID correctly.'));
+    form_set_error('openid_identifier', t('Sorry, that is not a valid OpenID. Ensure you have spelled your ID correctly.'));
     return;
   }
 
@@ -448,7 +448,7 @@ function openid_authentication($response
     $form_state['values']['response'] = $response;
 
     if (empty($response['openid.sreg.email']) && empty($response['openid.sreg.nickname'])) {
-      drupal_set_message(t('Please complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning');
+      drupal_set_message(t('Complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning');
       $success = FALSE;
     }
     else {
@@ -457,7 +457,7 @@ function openid_authentication($response
       drupal_validate_form('user_register_form', $form, $form_state);
       $success = !form_get_errors();
       if (!$success) {
-        drupal_set_message(t('Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Please complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning');
+        drupal_set_message(t('Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning');
         // Append form validation errors below the above warning.
         $messages = drupal_get_messages('error');
         foreach ($messages['error'] as $message) {
Index: modules/openid/openid.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/openid/openid.test,v
retrieving revision 1.8
diff -u -p -r1.8 openid.test
--- modules/openid/openid.test	24 Nov 2009 05:20:48 -0000	1.8
+++ modules/openid/openid.test	9 Jan 2010 18:19:20 -0000
@@ -197,7 +197,7 @@ class OpenIDFunctionalTest extends Drupa
     // Submit form to the OpenID Provider Endpoint.
     $this->drupalPost(NULL, array(), t('Send'));
 
-    $this->assertRaw(t('Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Please complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), t('User was asked to complete the registration process manually.'));
+    $this->assertRaw(t('Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), t('User was asked to complete the registration process manually.'));
     $this->assertRaw(t('The name %name is already taken.', array('%name' => $this->web_user->name)), t('Form validation error for username was displayed.'));
     $this->assertRaw(t('The e-mail address %mail is not valid.', array('%mail' => 'mail@invalid#')), t('Form validation error for e-mail address was displayed.'));
 
@@ -241,7 +241,7 @@ class OpenIDFunctionalTest extends Drupa
     // Submit form to the OpenID Provider Endpoint.
     $this->drupalPost(NULL, array(), t('Send'));
 
-    $this->assertRaw(t('Please complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), t('User was asked to complete the registration process manually.'));
+    $this->assertRaw(t('Complete the registration by filling out the form below. If you already have an account, you can <a href="@login">log in</a> now and add your OpenID under "My account".', array('@login' => url('user/login'))), t('User was asked to complete the registration process manually.'));
     $this->assertNoRaw(t('You must enter a username.'), t('Form validation error for username was not displayed.'));
     $this->assertNoRaw(t('You must enter an e-mail address.'), t('Form validation error for e-mail address was not displayed.'));
 
Index: modules/php/php.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/php/php.install,v
retrieving revision 1.16
diff -u -p -r1.16 php.install
--- modules/php/php.install	4 Dec 2009 16:49:47 -0000	1.16
+++ modules/php/php.install	9 Jan 2010 18:20:56 -0000
@@ -41,5 +41,5 @@ function php_enable() {
  * Implements hook_disable().
  */
 function php_disable() {
-  drupal_set_message(t('The PHP module has been disabled. Please note that any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code.'));
+  drupal_set_message(t('The PHP module has been disabled. Any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code.'));
 }
Index: modules/simpletest/simpletest.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/simpletest.install,v
retrieving revision 1.31
diff -u -p -r1.31 simpletest.install
--- modules/simpletest/simpletest.install	7 Jan 2010 05:34:21 -0000	1.31
+++ modules/simpletest/simpletest.install	9 Jan 2010 18:21:44 -0000
@@ -63,7 +63,7 @@ function simpletest_requirements($phase)
   );
   if (!$has_domdocument) {
     $requirements['php_domdocument']['severity'] = REQUIREMENT_ERROR;
-    $requirements['php_domdocument']['description'] =t('SimpleTest requires the DOMDocument class to be available. Please check the configure command at the <a href="@link-phpinfo">PHP info page</a>.', array('@link-phpinfo' => url('admin/reports/status/php')));
+    $requirements['php_domdocument']['description'] =t('SimpleTest requires the DOMDocument class to be available. Check the configure command at the <a href="@link-phpinfo">PHP info page</a>.', array('@link-phpinfo' => url('admin/reports/status/php')));
   }
 
   // SimpleTest currently needs 2 cURL options which are incompatible with
@@ -75,7 +75,7 @@ function simpletest_requirements($phase)
   );
   if ($open_basedir) {
     $requirements['php_open_basedir']['severity'] = REQUIREMENT_ERROR;
-    $requirements['php_open_basedir']['description'] = t('The testing framework requires the PHP <a href="@open_basedir-url">open_basedir</a> restriction to be disabled. Please check your webserver configuration or contact your web host.', array('@open_basedir-url' => 'http://php.net/manual/en/ini.core.php#ini.open-basedir'));
+    $requirements['php_open_basedir']['description'] = t('The testing framework requires the PHP <a href="@open_basedir-url">open_basedir</a> restriction to be disabled. Check your webserver configuration or contact your web host.', array('@open_basedir-url' => 'http://php.net/manual/en/ini.core.php#ini.open-basedir'));
   }
 
   return $requirements;
Index: modules/simpletest/simpletest.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/simpletest.module,v
retrieving revision 1.87
diff -u -p -r1.87 simpletest.module
--- modules/simpletest/simpletest.module	28 Dec 2009 12:06:49 -0000	1.87
+++ modules/simpletest/simpletest.module	9 Jan 2010 18:22:11 -0000
@@ -241,7 +241,7 @@ function _simpletest_batch_finished($suc
 
 
     drupal_set_message(t('The test run did not successfully finish.'), 'error');
-    drupal_set_message(t('Please use the <em>Clean environment</em> button to clean-up temporary files and tables.'), 'warning');
+    drupal_set_message(t('Use the <em>Clean environment</em> button to clean-up temporary files and tables.'), 'warning');
   }
   module_invoke_all('test_group_finished');
 }
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.247
diff -u -p -r1.247 system.admin.inc
--- modules/system/system.admin.inc	9 Jan 2010 09:46:09 -0000	1.247
+++ modules/system/system.admin.inc	9 Jan 2010 18:23:48 -0000
@@ -1452,7 +1452,7 @@ function system_ip_blocking_form_validat
     form_set_error('ip', t('You may not block your own IP address.'));
   }
   elseif (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_RES_RANGE) == FALSE) {
-    form_set_error('ip', t('Please enter a valid IP address.'));
+    form_set_error('ip', t('Enter a valid IP address.'));
   }
 }
 
@@ -1659,7 +1659,7 @@ function system_performance_settings() {
   $disabled = !$is_writable;
   $disabled_message = '';
   if(!$is_writable) {
-    $disabled_message = ' ' . t('<strong class="error">Please set up the <a href="!file-system">public files directory</a> to make these optimizations available.</strong>', array('!file-system' => url('admin/config/media/file-system')));
+    $disabled_message = ' ' . t('<strong class="error">Set up the <a href="!file-system">public files directory</a> to make these optimizations available.</strong>', array('!file-system' => url('admin/config/media/file-system')));
   }
 
   $form['bandwidth_optimization'] = array(
@@ -2102,7 +2102,7 @@ function system_add_date_format_type_for
     }
     $types = system_get_date_types();
     if (in_array(trim($form_state['values']['machine_name']), array_keys($types))) {
-      form_set_error('machine_name', t('This date type already exists. Please enter a unique type.'));
+      form_set_error('machine_name', t('This date type already exists. Enter a unique type.'));
     }
   }
 }
@@ -2809,7 +2809,7 @@ function system_add_date_formats_form_va
   $formats = system_get_date_formats('custom');
   $format = trim($form_state['values']['date_format']);
   if (!empty($formats) && in_array($format, array_keys($formats)) && (!isset($form_state['values']['dfid']) || $form_state['values']['dfid'] != $formats[$format]['dfid'])) {
-    form_set_error('date_format', t('This format already exists. Please enter a unique format string.'));
+    form_set_error('date_format', t('This format already exists. Enter a unique format string.'));
   }
 }
 
Index: modules/system/system.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.api.php,v
retrieving revision 1.116
diff -u -p -r1.116 system.api.php
--- modules/system/system.api.php	8 Jan 2010 11:07:01 -0000	1.116
+++ modules/system/system.api.php	9 Jan 2010 18:25:18 -0000
@@ -1844,7 +1844,7 @@ function hook_requirements($phase) {
     }
     else {
       $requirements['cron'] = array(
-        'description' => $t('Cron has not run. It appears cron jobs have not been setup on your system. Please check the help pages for <a href="@url">configuring cron jobs</a>.', array('@url' => 'http://drupal.org/cron')),
+        'description' => $t('Cron has not run. It appears cron jobs have not been setup on your system. Check the help pages for <a href="@url">configuring cron jobs</a>.', array('@url' => 'http://drupal.org/cron')),
         'severity' => REQUIREMENT_ERROR,
         'value' => $t('Never run'),
       );
Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.436
diff -u -p -r1.436 system.install
--- modules/system/system.install	9 Jan 2010 02:51:09 -0000	1.436
+++ modules/system/system.install	9 Jan 2010 18:27:21 -0000
@@ -66,7 +66,7 @@ function system_requirements($phase) {
     $requirements['php'] = array(
       'title' => $t('PHP'),
       'value' => $phpversion,
-      'description' => $t('The phpinfo() function has been disabled for security reasons. To see your server\'s phpinfo() information, change your PHP settings or contact your server administrator. For more information, please read the <a href="@phpinfo">Enabling and disabling phpinfo()</a> handbook page.', array('@phpinfo' => 'http://drupal.org/node/243993')),
+      'description' => $t('The phpinfo() function has been disabled for security reasons. To see your server\'s phpinfo() information, change your PHP settings or contact your server administrator. For more information, <a href="@phpinfo">Enabling and disabling phpinfo()</a> handbook page.', array('@phpinfo' => 'http://drupal.org/node/243993')),
       'severity' => REQUIREMENT_INFO,
     );
   }
@@ -228,7 +228,7 @@ function system_requirements($phase) {
       elseif ($phase == 'install') {
         // For the installer UI, we need different wording. 'value' will
         // be treated as version, so provide none there.
-        $description = $error . $t('An automated attempt to create this directory failed, possibly due to a permissions problem. To proceed with the installation, either create the directory and modify its permissions manually, or ensure that the installer has the permissions to create it automatically. For more information, please see INSTALL.txt or the <a href="@handbook_url">online handbook</a>.', array('@handbook_url' => 'http://drupal.org/server-permissions'));
+        $description = $error . $t('An automated attempt to create this directory failed, possibly due to a permissions problem. To proceed with the installation, either create the directory and modify its permissions manually, or ensure that the installer has the permissions to create it automatically. For more information, see INSTALL.txt or the <a href="@handbook_url">online handbook</a>.', array('@handbook_url' => 'http://drupal.org/server-permissions'));
         $requirements['file system']['value'] = '';
       }
       if (!empty($description)) {
@@ -307,7 +307,7 @@ function system_requirements($phase) {
       $requirements['update status'] = array(
         'value' => $t('Not enabled'),
         'severity' => REQUIREMENT_WARNING,
-        'description' => $t('Update notifications are not enabled. It is <strong>highly recommended</strong> that you enable the update status module from the <a href="@module">module administration page</a> in order to stay up-to-date on new releases. For more information please read the <a href="@update">Update status handbook page</a>.', array('@update' => 'http://drupal.org/handbook/modules/update', '@module' => url('admin/modules'))),
+        'description' => $t('Update notifications are not enabled. It is <strong>highly recommended</strong> that you enable the update status module from the <a href="@module">module administration page</a> in order to stay up-to-date on new releases. For more information, <a href="@update">Update status handbook page</a>.', array('@update' => 'http://drupal.org/handbook/modules/update', '@module' => url('admin/modules'))),
       );
     }
     else {
@@ -1996,7 +1996,7 @@ function system_update_7013() {
     $timezone = 'UTC';
   }
   variable_set('date_default_timezone', $timezone);
-  drupal_set_message('The default time zone has been set to <em>' . check_plain($timezone) . '</em>. Please check the ' . l('date and time configuration page', 'admin/config/regional/settings') . ' to configure it correctly.', 'warning');
+  drupal_set_message('The default time zone has been set to <em>' . check_plain($timezone) . '</em>. Check the ' . l('date and time configuration page', 'admin/config/regional/settings') . ' to configure it correctly.', 'warning');
 }
 
 /**
@@ -2168,7 +2168,7 @@ function system_update_7021() {
         'cache' => -1,
       ));
     }
-    drupal_set_message('The contact form information setting was migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to only show on the site-wide contact page. The block was set to use the default text format, which might differ from the HTML based format used before. Please check the block and ensure that the output is right.');
+    drupal_set_message('The contact form information setting was migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to only show on the site-wide contact page. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right.');
   }
   $insert->execute();
 
@@ -2191,7 +2191,7 @@ function system_update_7021() {
         'cache' => -1,
       ));
     }
-    drupal_set_message('The user registration guidelines were migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to only show on the user registration page. The block was set to use the default text format, which might differ from the HTML based format used before. Please check the block and ensure that the output is right.');
+    drupal_set_message('The user registration guidelines were migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to only show on the user registration page. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right.');
     $insert->execute();
   }
 
@@ -2214,7 +2214,7 @@ function system_update_7021() {
         'cache' => -1,
       ));
     }
-    drupal_set_message('The site mission was migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to only show on the front page in the highlighted content region. The block was set to use the default text format, which might differ from the HTML based format used before. Please check the block and ensure that the output is right. If your theme does not have a highlighted content region, you might need to <a href="' . url('admin/structure/block') . '">relocate the block</a>.');
+    drupal_set_message('The site mission was migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to only show on the front page in the highlighted content region. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right. If your theme does not have a highlighted content region, you might need to <a href="' . url('admin/structure/block') . '">relocate the block</a>.');
     $insert->execute();
     // Migrate mission to RSS site description.
     variable_set('feed_description', $mission);
@@ -2240,7 +2240,7 @@ function system_update_7021() {
         'cache' => -1,
       ));
     }
-    drupal_set_message('The footer message was migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to appear in the footer. The block was set to use the default text format, which might differ from the HTML based format used before. Please check the block and ensure that the output is right. If your theme does not have a footer region, you might need to <a href="' . url('admin/structure/block') . '">relocate the block</a>.');
+    drupal_set_message('The footer message was migrated to <a href="' . url('admin/structure/block/manage/block/' . $bid . '/configure') . '">a custom block</a> and set up to appear in the footer. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right. If your theme does not have a footer region, you might need to <a href="' . url('admin/structure/block') . '">relocate the block</a>.');
     $insert->execute();
   }
 
@@ -2373,7 +2373,7 @@ function system_update_7032() {
 function system_update_7033() {
   if (variable_get('cache') == 2) {
     variable_set('cache', CACHE_NORMAL);
-    return t('Aggressive caching was disabled and replaced with normal caching, please read the page caching section in default.settings.php for more information on how to enable similar functionality.');
+    return t('Aggressive caching was disabled and replaced with normal caching, read the page caching section in default.settings.php for more information on how to enable similar functionality.');
   }
 }
 
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 18:27:52 -0000
@@ -1805,7 +1805,7 @@ function system_form_user_register_form_
 function system_user_login(&$edit, $account) {
   // If the user has a NULL time zone, notify them to set a time zone.
   if (!$account->timezone && variable_get('configurable_timezones', 1) && variable_get('empty_timezone_message', 0)) {
-    drupal_set_message(t('Please configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$account->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
+    drupal_set_message(t('Configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$account->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
   }
 }
 
@@ -1831,7 +1831,7 @@ function system_user_timezone(&$form, &$
     '#description' => t('Select the desired local time and time zone. Dates and times throughout this site will be displayed using this time zone.'),
   );
   if (!isset($account->timezone) && $account->uid == $user->uid && empty($form_state['input']['timezone'])) {
-    $form['timezone']['#description'] = t('Your time zone setting will be automatically detected if possible. Please confirm the selection and click save.');
+    $form['timezone']['#description'] = t('Your time zone setting will be automatically detected if possible. Confirm the selection and click save.');
     $form['timezone']['timezone']['#attributes'] = array('class' => array('timezone-detect'));
     drupal_add_js('misc/timezone.js');
   }
@@ -2832,7 +2832,7 @@ function system_send_email_action_valida
   // Validate the configuration form.
   if (!valid_email_address($form_values['recipient']) && $form_values['recipient'] != '%author') {
     // We want the literal %author placeholder to be emphasized in the error message.
-    form_set_error('recipient', t('Please enter a valid email address or %author.', array('%author' => '%author')));
+    form_set_error('recipient', t('Enter a valid email address or %author.', array('%author' => '%author')));
   }
 }
 
Index: modules/system/system.tar.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.tar.inc,v
retrieving revision 1.2
diff -u -p -r1.2 system.tar.inc
--- modules/system/system.tar.inc	17 Aug 2009 19:14:41 -0000	1.2
+++ modules/system/system.tar.inc	9 Jan 2010 18:28:12 -0000
@@ -154,7 +154,7 @@ class Archive_Tar 
             }
             if (!extension_loaded($extname)) {
                 die("The extension '$extname' couldn't be found.\n".
-                    "Please make sure your version of PHP was built ".
+                    "Make sure your version of PHP was built ".
                     "with '$extname' support.\n");
                 return false;
             }
Index: modules/system/system.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.test,v
retrieving revision 1.100
diff -u -p -r1.100 system.test
--- modules/system/system.test	4 Jan 2010 21:31:52 -0000	1.100
+++ modules/system/system.test	9 Jan 2010 18:29:14 -0000
@@ -358,19 +358,19 @@ class IPAddressBlockingTestCase extends 
     $edit = array();
     $edit['ip'] = '255.255.255.255';
     $this->drupalPost('admin/config/people/ip-blocking', $edit, t('Save'));
-    $this->assertText(t('Please enter a valid IP address.'));
+    $this->assertText(t('Enter a valid IP address.'));
 
     // Try to block a reserved IP address.
     $edit = array();
     $edit['ip'] = 'test.example.com';
     $this->drupalPost('admin/config/people/ip-blocking', $edit, t('Save'));
-    $this->assertText(t('Please enter a valid IP address.'));
+    $this->assertText(t('Enter a valid IP address.'));
 
     // Submit an empty form.
     $edit = array();
     $edit['ip'] = '';
     $this->drupalPost('admin/config/people/ip-blocking', $edit, t('Save'));
-    $this->assertText(t('Please enter a valid IP address.'));
+    $this->assertText(t('Enter a valid IP address.'));
 
     // Submit your own IP address. This fails, although it works when testing manually.
      // TODO: on some systems this test fails due to a bug or inconsistency in cURL.
Index: modules/update/update.manager.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/update/update.manager.inc,v
retrieving revision 1.11
diff -u -p -r1.11 update.manager.inc
--- modules/update/update.manager.inc	29 Oct 2009 07:11:50 -0000	1.11
+++ modules/update/update.manager.inc	9 Jan 2010 18:29:43 -0000
@@ -61,7 +61,7 @@ function update_manager_update_form($for
   $available = update_get_available(TRUE);
   if (empty($available)) {
     $form['message'] = array(
-      '#markup' => t('There was a problem getting update information. Please try again later.'),
+      '#markup' => t('There was a problem getting update information. Try again later.'),
     );
     return $form;
   }
Index: modules/update/update.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/update/update.module,v
retrieving revision 1.59
diff -u -p -r1.59 update.module
--- modules/update/update.module	4 Jan 2010 21:31:52 -0000	1.59
+++ modules/update/update.module	9 Jan 2010 18:30:57 -0000
@@ -499,10 +499,10 @@ function update_mail($key, &$message, $p
   }
   $settings_url = url('admin/reports/updates/settings', array('absolute' => TRUE));
   if (variable_get('update_notification_threshold', 'all') == 'all') {
-    $message['body'][] = t('Your site is currently configured to send these emails when any updates are available. To get notified only for security updates, please visit !url.', array('!url' => $settings_url));
+    $message['body'][] = t('Your site is currently configured to send these emails when any updates are available. To get notified only for security updates, !url.', array('!url' => $settings_url));
   }
   else {
-    $message['body'][] = t('Your site is currently configured to send these emails only when security updates are available. To get notified for any available updates, please visit !url.', array('!url' => $settings_url));
+    $message['body'][] = t('Your site is currently configured to send these emails only when security updates are available. To get notified for any available updates, !url.', array('!url' => $settings_url));
   }
 }
 
@@ -553,7 +553,7 @@ function _update_message_text($msg_type,
         $text = t('Your version of Drupal is no longer supported. Upgrading is strongly recommended!', array(), array('langcode' => $langcode));
       }
       else {
-        $text = t('The installed version of at least one of your modules or themes is no longer supported. Upgrading or disabling is strongly recommended! Please see the project homepage for more details.', array(), array('langcode' => $langcode));
+        $text = t('The installed version of at least one of your modules or themes is no longer supported. Upgrading or disabling is strongly recommended. See the project homepage for more details.', array(), array('langcode' => $langcode));
       }
       break;
 
Index: modules/user/user.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/user/user.admin.inc,v
retrieving revision 1.93
diff -u -p -r1.93 user.admin.inc
--- modules/user/user.admin.inc	6 Jan 2010 15:32:23 -0000	1.93
+++ modules/user/user.admin.inc	9 Jan 2010 18:31:31 -0000
@@ -825,12 +825,12 @@ function user_admin_role_validate($form,
     if ($form_state['values']['op'] == t('Save role')) {
       $role = user_role_load($form_state['values']['name']);
       if ($role && $role->rid != $form_state['values']['rid']) {
-        form_set_error('name', t('The role name %name already exists. Please choose another role name.', array('%name' => $form_state['values']['name'])));
+        form_set_error('name', t('The role name %name already exists. Choose another role name.', array('%name' => $form_state['values']['name'])));
       }
     }
     elseif ($form_state['values']['op'] == t('Add role')) {
       if (user_role_load($form_state['values']['name'])) {
-        form_set_error('name', t('The role name %name already exists. Please choose another role name.', array('%name' => $form_state['values']['name'])));
+        form_set_error('name', t('The role name %name already exists. Choose another role name.', array('%name' => $form_state['values']['name'])));
       }
     }
   }
Index: modules/user/user.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/user/user.api.php,v
retrieving revision 1.18
diff -u -p -r1.18 user.api.php
--- modules/user/user.api.php	26 Dec 2009 16:50:09 -0000	1.18
+++ modules/user/user.api.php	9 Jan 2010 18:31:58 -0000
@@ -287,7 +287,7 @@ function hook_user_update(&$edit, $accou
 function hook_user_login(&$edit, $account) {
   // If the user has a NULL time zone, notify them to set a time zone.
   if (!$user->timezone && variable_get('configurable_timezones', 1) && variable_get('empty_timezone_message', 0)) {
-    drupal_set_message(t('Please configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$user->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
+    drupal_set_message(t('Configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$user->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
   }
 }
 
Index: modules/user/user.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/user/user.module,v
retrieving revision 1.1099
diff -u -p -r1.1099 user.module
--- modules/user/user.module	7 Jan 2010 04:54:18 -0000	1.1099
+++ modules/user/user.module	9 Jan 2010 18:32:32 -0000
@@ -1842,11 +1842,11 @@ function user_login_final_validate($form
 
     if (isset($form_state['flood_control_triggered'])) {
       if ($form_state['flood_control_triggered'] == 'user') {
-        form_set_error('name', format_plural(variable_get('user_failed_login_user_limit', 5), 'Sorry, there has been more than one failed login attempt for this account. It is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', 'Sorry, there have been more than @count failed login attempts for this account. It is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
+        form_set_error('name', format_plural(variable_get('user_failed_login_user_limit', 5), 'Sorry, there has been more than one failed login attempt for this account. It is temporarily blocked. Try again later, or <a href="@url">request a new password</a>.', 'Sorry, there have been more than @count failed login attempts for this account. It is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
       }
       else {
         // We did not find a uid, so the limit is IP-based.
-        form_set_error('name', t('Sorry, too many failed login attempts from your IP address. This IP address is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
+        form_set_error('name', t('Sorry, too many failed login attempts from your IP address. This IP address is temporarily blocked. Try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
       }
     }
     else {
Index: modules/user/user.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/user/user.test,v
retrieving revision 1.74
diff -u -p -r1.74 user.test
--- modules/user/user.test	7 Jan 2010 05:23:52 -0000	1.74
+++ modules/user/user.test	9 Jan 2010 18:34:42 -0000
@@ -289,11 +289,11 @@ class UserLoginTestCase extends DrupalWe
     $this->drupalPost('user', $edit, t('Log in'));
     if (isset($flood_trigger)) {
       if ($flood_trigger == 'user') {
-        $this->assertRaw(format_plural(variable_get('user_failed_login_user_limit', 5), 'Sorry, there has been more than one failed login attempt for this account. It is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', 'Sorry, there have been more than @count failed login attempts for this account. It is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
+        $this->assertRaw(format_plural(variable_get('user_failed_login_user_limit', 5), 'Sorry, there has been more than one failed login attempt for this account. It is temporarily blocked. Try again later, or <a href="@url">request a new password</a>.', 'Sorry, there have been more than @count failed login attempts for this account. It is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
       }
       else {
         // No uid, so the limit is IP-based.
-        $this->assertRaw(t('Sorry, too many failed login attempts from your IP address. This IP address is temporarily blocked. Please try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
+        $this->assertRaw(t('Sorry, too many failed login attempts from your IP address. This IP address is temporarily blocked. Try again later, or <a href="@url">request a new password</a>.', array('@url' => url('user/password'))));
       }
     }
     else {
Index: scripts/run-tests.sh
===================================================================
RCS file: /cvs/drupal/drupal/scripts/run-tests.sh,v
retrieving revision 1.38
diff -u -p -r1.38 run-tests.sh
--- scripts/run-tests.sh	17 Dec 2009 22:02:26 -0000	1.38
+++ scripts/run-tests.sh	9 Jan 2010 18:35:21 -0000
@@ -226,7 +226,7 @@ function simpletest_script_parse_args() 
     exit;
   }
   elseif ($args['concurrency'] > 1 && !function_exists('pcntl_fork')) {
-    simpletest_script_print_error("Parallel test execution requires the Process Control extension to be compiled in PHP. Please see http://php.net/manual/en/intro.pcntl.php for more information.");
+    simpletest_script_print_error("Parallel test execution requires the Process Control extension to be compiled in PHP. See http://php.net/manual/en/intro.pcntl.php for more information.");
     exit;
   }
 
@@ -255,7 +255,7 @@ function simpletest_script_init($server_
     list($php, ) = explode(' ', $_ENV['SUDO_COMMAND'], 2);
   }
   else {
-    simpletest_script_print_error('Unable to automatically determine the path to the PHP interpreter. Please supply the --php command line argument.');
+    simpletest_script_print_error('Unable to automatically determine the path to the PHP interpreter. Supply the --php command line argument.');
     simpletest_script_help();
     exit();
   }