Fixed Array.indexOf in i18n/uk.js
This commit is contained in:
parent
07c4db1de2
commit
e6f249f66d
2
dist/js/i18n/uk.js
vendored
2
dist/js/i18n/uk.js
vendored
@ -1 +1 @@
|
|||||||
(function(){if(window.define)var e=window.define;if(window.require)var t=window.require;if(window.jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd.define,t=jQuery.fn.select2.amd.require;e("select2/i18n/uk",[],function(){function e(e,t,n,r){return[11,12,13,14].indexOf(e%100)!==-1?r:e%10===1?t:[2,3,4].indexOf(e%10)!==-1?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),t("jquery.select2"),jQuery.fn.select2.amd={define:e,require:t}})();
|
(function(){if(window.define)var e=window.define;if(window.require)var t=window.require;if(window.jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd.define,t=jQuery.fn.select2.amd.require;e("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),t("jquery.select2"),jQuery.fn.select2.amd={define:e,require:t}})();
|
4
src/js/select2/i18n/uk.js
vendored
4
src/js/select2/i18n/uk.js
vendored
@ -1,13 +1,13 @@
|
|||||||
define(function () {
|
define(function () {
|
||||||
// Ukranian
|
// Ukranian
|
||||||
function ending (count, one, couple, more) {
|
function ending (count, one, couple, more) {
|
||||||
if ([11,12,13,14].indexOf(count % 100) !== -1) {
|
if (count % 100 > 10 && count % 100 < 15) {
|
||||||
return more;
|
return more;
|
||||||
}
|
}
|
||||||
if (count % 10 === 1) {
|
if (count % 10 === 1) {
|
||||||
return one;
|
return one;
|
||||||
}
|
}
|
||||||
if ([2,3,4].indexOf(count % 10) !== -1) {
|
if (count % 10 > 1 && count % 10 < 5) {
|
||||||
return couple;
|
return couple;
|
||||||
}
|
}
|
||||||
return more;
|
return more;
|
||||||
|
Loading…
Reference in New Issue
Block a user