fixes #1963 use specific translation string instead of re-using another one + lowercase

This commit is contained in:
plegall
2023-08-21 16:45:17 +02:00
parent 06f6d97e0d
commit 73a77fed6c
3 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -611,12 +611,12 @@ function get_thumbnail_title($info, $title, $comment='')
if (!empty($info['hit']))
{
$details[] = $info['hit'].' '.strtolower(l10n('Visits'));
$details[] = l10n('%d visits', $info['hit']);
}
if ($conf['rate'] and !empty($info['rating_score']))
{
$details[] = strtolower(l10n('Rating score')).' '.$info['rating_score'];
$details[] = l10n('rating score %s', $info['rating_score']);
}
if (isset($info['nb_comments']) and $info['nb_comments'] != 0)