fix french pluralform
This commit is contained in:
parent
442cca5030
commit
baff120800
@ -8,7 +8,7 @@ define(["app/config", "app/i18n/de", "app/i18n/en", "app/i18n/fr", "app/i18n/ru"
|
|||||||
return msgs[n === 1 ? 0 : 1];
|
return msgs[n === 1 ? 0 : 1];
|
||||||
},
|
},
|
||||||
"fr": function(msgs, n) {
|
"fr": function(msgs, n) {
|
||||||
return msgs[n > 1 ? 0 : 1]
|
return msgs[n > 1 ? 1 : 0]
|
||||||
},
|
},
|
||||||
"ru": function(msg, n) {
|
"ru": function(msg, n) {
|
||||||
if (n % 10 === 1 && n % 100 !== 11) {
|
if (n % 10 === 1 && n % 100 !== 11) {
|
||||||
|
@ -3,7 +3,7 @@ define({
|
|||||||
"postbox-author": "Nom (optionel)",
|
"postbox-author": "Nom (optionel)",
|
||||||
"postbox-email": "Courriel (optionel)",
|
"postbox-email": "Courriel (optionel)",
|
||||||
"postbox-submit": "Soumettre",
|
"postbox-submit": "Soumettre",
|
||||||
"num-comments": "Un commentaire\n{{ n }} commentaires",
|
"num-comments": "{{ n }} commentaire\n{{ n }} commentaires",
|
||||||
"no-comments": "Aucun commentaire pour l'instant",
|
"no-comments": "Aucun commentaire pour l'instant",
|
||||||
"comment-reply": "Répondre",
|
"comment-reply": "Répondre",
|
||||||
"comment-edit": "Éditer",
|
"comment-edit": "Éditer",
|
||||||
|
Loading…
Reference in New Issue
Block a user