summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-01 18:03:12 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-01 18:03:12 +0000
commit1ba22e154359afc6b2683e0833395c8aa7fe1969 (patch)
tree860cb8113700e92226328357fc87c9f80ba27cdc
parent195fe364d26890f98c5a04510cf6906b7d85263d (diff)
downloadbrdo-1ba22e154359afc6b2683e0833395c8aa7fe1969.tar.gz
brdo-1ba22e154359afc6b2683e0833395c8aa7fe1969.tar.bz2
#205134 by damz: fix not translatable use of t() in update module
-rw-r--r--modules/update/update.report.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc
index 44de3d8f9..c7b82a532 100644
--- a/modules/update/update.report.inc
+++ b/modules/update/update.report.inc
@@ -27,7 +27,7 @@ function update_status() {
*/
function theme_update_report($data) {
$last = variable_get('update_last_check', 0);
- $output = '<div class="update checked">'. t('Last checked: ') . ($last ? format_interval(time() - $last) .' '. t('ago') : t('Never'));
+ $output = '<div class="update checked">'. ($last ? t('Last checked: @time ago', array('@time' => format_interval(time() - $last))) : t('Last checked: never'));
$output .= ' <span class="check-manually">('. l(t('Check manually'), 'admin/reports/updates/check') .')</span>';
$output .= "</div>\n";