#205134 by damz: fix not translatable use of t() in update module

6.x
Gábor Hojtsy 2008-01-01 18:03:12 +00:00
parent 195fe364d2
commit 1ba22e1543
1 changed files with 1 additions and 1 deletions

View File

@ -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";