#205134 by damz: fix not translatable use of t() in update module
parent
195fe364d2
commit
1ba22e1543
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in New Issue