GUAC-1217: Add French message format rules.

This commit is contained in:
Michael Jumper
2015-06-05 19:11:23 -07:00
parent e5ae8802e1
commit a0bd737ac6
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
MessageFormat.locale.fr = function (n) {
if (n >= 0 && n < 2) {
return 'one';
}
return 'other';
};