fix: missing l10n item

This commit is contained in:
Arnie97
2019-12-03 03:21:47 +08:00
committed by Pierrick Le Gall
parent e7317a7fe4
commit ed7f00b2c2
+1 -1
View File
@@ -292,7 +292,7 @@ $intro_vars = array(
'date' => l10n('Posted the %s', format_date($row['date_available'], array('day', 'month', 'year'))),
'age' => l10n(ucfirst(time_since($row['date_available'], 'year'))),
'added_by' => l10n('Added by %s', $row['added_by']),
'size' => $row['width'].'×'.$row['height'].' pixels, '.sprintf('%.2f', $row['filesize']/1024).'MB',
'size' => l10n('%s pixels, %.2f MB', $row['width'].'×'.$row['height'], $row['filesize']/1024),
'stats' => l10n('Visited %d times', $row['hit']),
'id' => l10n($row['id']),
'ext' => l10n('%s file type',strtoupper(end($extTab)))