missing a translation for t(' ago') at line 713
should be :
$content .= '<div class=\'created\'>' . t('Created on ') . format_date($cat->latest->created) . ' (' . format_interval(time() - $cat->latest->created) . t(' ago').') </div>';
instead of
$content .= '<div class=\'created\'>' . t('Created on ') . format_date($cat->latest->created) . ' (' . format_interval(time() - $cat->latest->created) . ' ago) </div>';
Comments
Comment #1
mcurry commentedFix committed to DRUPAL-5 and DRUPAL-4-7 branch. Please get the next dev build or wait for the next official release builds.
These really should be t() calls. I've not yet had time to convert them all.
Thanks for reporting this.
Comment #2
(not verified) commented