mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
10 lines
158 B
JavaScript
10 lines
158 B
JavaScript
|
MessageFormat.locale.cs = function (n) {
|
||
|
if (n == 1) {
|
||
|
return 'one';
|
||
|
}
|
||
|
if (n == 2 || n == 3 || n == 4) {
|
||
|
return 'few';
|
||
|
}
|
||
|
return 'other';
|
||
|
};
|