fix french pluralform

pull/57/merge
Martin Zimmermann 11 years ago
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];
},
"fr": function(msgs, n) {
return msgs[n > 1 ? 0 : 1]
return msgs[n > 1 ? 1 : 0]
},
"ru": function(msg, n) {
if (n % 10 === 1 && n % 100 !== 11) {

@ -3,7 +3,7 @@ define({
"postbox-author": "Nom (optionel)",
"postbox-email": "Courriel (optionel)",
"postbox-submit": "Soumettre",
"num-comments": "Un commentaire\n{{ n }} commentaires",
"num-comments": "{{ n }} commentaire\n{{ n }} commentaires",
"no-comments": "Aucun commentaire pour l'instant",
"comment-reply": "Répondre",
"comment-edit": "Éditer",

Loading…
Cancel
Save