fix plural translations

This commit is contained in:
Jean-Christian Paul Denis 2023-04-08 14:20:56 +02:00
parent 78977b5f26
commit 39f9f4bc0c
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -11,23 +11,35 @@
l10n::$locales['Show some figures of your blog'] = 'Afficher quelques chiffres de votre blog'; l10n::$locales['Show some figures of your blog'] = 'Afficher quelques chiffres de votre blog';
l10n::$locales['no entries'] = 'aucun billet'; l10n::$locales['no entries'] = 'aucun billet';
l10n::$locales['one entry'][0] = 'un billet'; l10n::$locales['one entry'] = [
l10n::$locales['one entry'][1] = '%s billets'; 'un billet',
'%s billets',
];
l10n::$locales['no categories'] = 'aucune catégorie'; l10n::$locales['no categories'] = 'aucune catégorie';
l10n::$locales['one category'][0] = 'une catégorie'; l10n::$locales['one category'] = [
l10n::$locales['one category'][1] = '%s catégories'; 'une catégorie',
'%s catégories',
];
l10n::$locales['no comments'] = 'aucun commentaire'; l10n::$locales['no comments'] = 'aucun commentaire';
l10n::$locales['one comment'][0] = 'un commentaire'; l10n::$locales['one comment'] = [
l10n::$locales['one comment'][1] = '%s commentaires'; 'un commentaire',
'%s commentaires',
];
l10n::$locales['no trackbacks'] = 'aucun rétrolien'; l10n::$locales['no trackbacks'] = 'aucun rétrolien';
l10n::$locales['one trackback'][0] = 'un rétrolien'; l10n::$locales['one trackback'] = [
l10n::$locales['one trackback'][1] = '%s rétroliens'; 'un rétrolien',
'%s rétroliens',
];
l10n::$locales['no tags'] = 'aucun mot-clé'; l10n::$locales['no tags'] = 'aucun mot-clé';
l10n::$locales['one tag'][0] = 'un mot-clé'; l10n::$locales['one tag'] = [
l10n::$locales['one tag'][1] = '%s mots-clés'; 'un mot-clé',
'%s mots-clés',
];
l10n::$locales['no author'] = 'aucun auteur'; l10n::$locales['no author'] = 'aucun auteur';
l10n::$locales['one author'][0] = 'un auteur'; l10n::$locales['one author'] = [
l10n::$locales['one author'][1] = '%s auteurs'; 'un auteur',
'%s auteurs',
];
l10n::$locales['My blog numbers'] = 'Mon blog en chiffres'; l10n::$locales['My blog numbers'] = 'Mon blog en chiffres';
l10n::$locales['Show entries count'] = 'Afficher le nombre de billets'; l10n::$locales['Show entries count'] = 'Afficher le nombre de billets';
l10n::$locales['Title for entries count:'] = 'Titre pour le nombre de billets :'; l10n::$locales['Title for entries count:'] = 'Titre pour le nombre de billets :';