diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc index 44de3d8f9dd..c7b82a53204 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 = '
'. t('Last checked: ') . ($last ? format_interval(time() - $last) .' '. t('ago') : t('Never')); + $output = '
'. ($last ? t('Last checked: @time ago', array('@time' => format_interval(time() - $last))) : t('Last checked: never')); $output .= ' ('. l(t('Check manually'), 'admin/reports/updates/check') .')'; $output .= "
\n";