mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
364e6fdd53
Updated SR pluralization to use 3 keys: one, few, other (as by Transifex)
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
MessageFormat.locale.sr = function (n) {
|
|
var r10 = n % 10, r100 = n % 100;
|
|
|
|
if (r10 == 1 && r100 != 11)
|
|
return 'one';
|
|
|
|
if (r10 >= 2 && r10 <= 4 && (r100 < 12 || r100 > 14) && n == Math.floor(n))
|
|
return 'few';
|
|
|
|
return 'other';
|
|
}; |