mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
9 lines
231 B
Text
9 lines
231 B
Text
//= depend_on 'client.sk.yml'
|
|
//= require locales/i18n
|
|
<%= JsLocaleHelper.output_locale(:sk) %>
|
|
|
|
I18n.pluralizationRules['sk'] = function (n) {
|
|
if (n == 1) return "one";
|
|
if (n >= 2 && n <= 4) return "few";
|
|
return "other";
|
|
};
|