mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
8874c9ea75
Add message about new and unread topics at the bottom of topics move localization helper into lib
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';
|
|
};
|