mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:50:45 +08:00
10 lines
231 B
Plaintext
10 lines
231 B
Plaintext
//= 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";
|
|
};
|