Add transifex config. Reconcile client.yml and server.yml translations in github and transifex. Transifex is now the source of all client.yml and server.yml files.

This commit is contained in:
Neil Lalonde
2014-04-09 15:10:19 -04:00
parent bc56bc62a6
commit cb11967715
38 changed files with 11939 additions and 9740 deletions

View File

@@ -0,0 +1,10 @@
//= depend_on 'client.uk.yml'
//= require locales/i18n
<%= JsLocaleHelper.output_locale(:uk) %>
I18n.pluralizationRules['uk'] = function (n) {
if (n == 0) return ["zero", "none", "other"];
if (n % 10 == 1 && n % 100 != 11) return "one";
if (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20)) return "few";
return "many";
};