mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
10 lines
158 B
JavaScript
10 lines
158 B
JavaScript
|
MessageFormat.locale.sk = function (n) {
|
||
|
if (n == 1) {
|
||
|
return 'one';
|
||
|
}
|
||
|
if (n == 2 || n == 3 || n == 4) {
|
||
|
return 'few';
|
||
|
}
|
||
|
return 'other';
|
||
|
};
|