mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 01:03:31 +02:00
fixes #1963 use specific translation string instead of re-using another one + lowercase
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -439,4 +439,6 @@ $lang['Albums found'] = 'Albums found';
|
||||
$lang['Search in this set'] = 'Search in this set';
|
||||
$lang['Tags listed here match your search by word. Click on one to browse by tag.'] = 'Tags listed here match your search by word. Click on one to browse by tag.';
|
||||
$lang['Albums listed here match your search by word. Click on one to browse by album.'] = 'Albums listed here match your search by word. Click on one to browse by album.';
|
||||
$lang['%d visits'] = '%d visits';
|
||||
$lang['rating score %s'] = 'rating score %s';
|
||||
?>
|
||||
|
||||
@@ -444,3 +444,5 @@ $lang['Albums found'] = 'Albums trouvés';
|
||||
$lang['Search in this set'] = 'Rechercher dans ce lot';
|
||||
$lang['Tags listed here match your search by word. Click on one to browse by tag.'] = 'Les tags ci-dessous correspondent à votre recherche par mot. Cliquez sur l\'un d\'eux pour basculer en navigation par tag.';
|
||||
$lang['Albums listed here match your search by word. Click on one to browse by album.'] = 'Les albums ci-dessous correspondent à votre recherche par mot. Cliquez sur l\'un d\'eux pour basculer en navigation par album.';
|
||||
$lang['%d visits'] = '%d visites';
|
||||
$lang['rating score %s'] = 'score %s';
|
||||
|
||||
Reference in New Issue
Block a user