GUAC-1230: Add all messageformat.js locales.

This commit is contained in:
Michael Jumper
2015-07-14 13:20:44 -07:00
parent 7efbaf10c3
commit 8e1d8b8af9
70 changed files with 466 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
MessageFormat.locale.cs = function (n) {
if (n == 1) {
return 'one';
}
if (n == 2 || n == 3 || n == 4) {
return 'few';
}
return 'other';
};