fix french pluralform

This commit is contained in:
Martin Zimmermann 2014-01-25 22:19:37 +01:00
parent 442cca5030
commit baff120800
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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",