summaryrefslogtreecommitdiff
path: root/modules/update
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-09 23:03:22 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-09 23:03:22 +0000
commit71ee49de3eba0639d13a5861803f1cf031f376df (patch)
tree7e9a559099ad267e58e58879dae8246e1bf5cdf2 /modules/update
parenta895a366c56fc3a03303e5341e222b7ad097952b (diff)
downloadbrdo-71ee49de3eba0639d13a5861803f1cf031f376df.tar.gz
brdo-71ee49de3eba0639d13a5861803f1cf031f376df.tar.bz2
#679890 follow-up by Bojhan, aspilicious, and agentrickard: Remove more extraneous 'Please' in the interface.
Diffstat (limited to 'modules/update')
-rw-r--r--modules/update/update.manager.inc2
-rw-r--r--modules/update/update.module6
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/update/update.manager.inc b/modules/update/update.manager.inc
index ab8eade28..5e80d6953 100644
--- a/modules/update/update.manager.inc
+++ b/modules/update/update.manager.inc
@@ -61,7 +61,7 @@ function update_manager_update_form($form, $form_state = array(), $context) {
$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;
}
diff --git a/modules/update/update.module b/modules/update/update.module
index 347f66e59..a961c2087 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -499,10 +499,10 @@ function update_mail($key, &$message, $params) {
}
$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, $msg_reason, $report_link = FALSE, $lan
$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;