mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
|
MessageFormat.locale.lv = function (n) {
|
||
|
if (n === 0) {
|
||
|
return 'zero';
|
||
|
}
|
||
|
if ((n % 10) == 1 && (n % 100) != 11) {
|
||
|
return 'one';
|
||
|
}
|
||
|
return 'other';
|
||
|
};
|