summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-08-11 07:05:11 +0000
committerDries Buytaert <dries@buytaert.net>2007-08-11 07:05:11 +0000
commit541c9673b4e2bab76a423d40c5f48cdae2e5c8de (patch)
tree17aebb448c54d53bdef0cb249ec5e44516be6f2f /modules
parent36cf32247911fb16f70a2d39dc759d8669ce4ad2 (diff)
downloadbrdo-541c9673b4e2bab76a423d40c5f48cdae2e5c8de.tar.gz
brdo-541c9673b4e2bab76a423d40c5f48cdae2e5c8de.tar.bz2
- Patch #165685 by dww: improve strings for messages when fetching updates.
Diffstat (limited to 'modules')
-rw-r--r--modules/update/update.fetch.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/update/update.fetch.inc b/modules/update/update.fetch.inc
index c6b108c0b..a3af87f7b 100644
--- a/modules/update/update.fetch.inc
+++ b/modules/update/update.fetch.inc
@@ -14,7 +14,7 @@ function update_manual_status() {
drupal_set_message(t('Fetched information about all available new releases and updates.'));
}
else {
- drupal_set_message(t('Unable to fetch any information on available new releases and updates.'), 'error');
+ drupal_set_message(t('Unable to fetch any information about available new releases and updates.'), 'error');
}
drupal_goto('admin/logs/updates');
}
@@ -47,10 +47,10 @@ function _update_refresh() {
$frequency = variable_get('update_check_frequency', 1);
cache_set('update_info', $available, 'cache_update', time() + (60 * 60 * 24 * $frequency));
variable_set('update_last_check', time());
- watchdog('update', 'Fetched information on all available new releases and updates.', array(), WATCHDOG_NOTICE, l('view', 'admin/logs/updates'));
+ watchdog('update', 'Fetched information about all available new releases and updates.', array(), WATCHDOG_NOTICE, l('view', 'admin/logs/updates'));
}
else {
- watchdog('update', 'Unable to fetch any information on available new releases and updates.', array(), WATCHDOG_ERROR, l('view', 'admin/logs/updates'));
+ watchdog('update', 'Unable to fetch any information about available new releases and updates.', array(), WATCHDOG_ERROR, l('view', 'admin/logs/updates'));
}
return $available;
}