diff options
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_uk.js')
-rw-r--r-- | apps/files_external/3rdparty/select2/select2_locale_uk.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_uk.js b/apps/files_external/3rdparty/select2/select2_locale_uk.js deleted file mode 100644 index 8d31a056080..00000000000 --- a/apps/files_external/3rdparty/select2/select2_locale_uk.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * Select2 Ukrainian translation. - * - * @author bigmihail <bigmihail@bigmir.net> - * @author Uriy Efremochkin <efremochkin@uriy.me> - */ -(function ($) { - "use strict"; - - $.extend($.fn.select2.defaults, { - formatMatches: function (matches) { return character(matches, "результат") + " знайдено, використовуйте клавіші зі стрілками вверх та вниз для навігації."; }, - formatNoMatches: function () { return "Нічого не знайдено"; }, - formatInputTooShort: function (input, min) { return "Введіть буль ласка ще " + character(min - input.length, "символ"); }, - formatInputTooLong: function (input, max) { return "Введіть буль ласка на " + character(input.length - max, "символ") + " менше"; }, - formatSelectionTooBig: function (limit) { return "Ви можете вибрати лише " + character(limit, "елемент"); }, - formatLoadMore: function (pageNumber) { return "Завантаження даних…"; }, - formatSearching: function () { return "Пошук…"; } - }); - - function character (n, word) { - return n + " " + word + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "и" : "" : "ів"); - } -})(jQuery); |