diff options
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_bg.js')
-rw-r--r-- | apps/files_external/3rdparty/select2/select2_locale_bg.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_bg.js b/apps/files_external/3rdparty/select2/select2_locale_bg.js new file mode 100644 index 00000000000..585d28a2b0b --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_bg.js @@ -0,0 +1,18 @@ +/** + * Select2 Bulgarian translation. + * + * @author Lubomir Vikev <lubomirvikev@gmail.com> + * @author Uriy Efremochkin <efremochkin@uriy.me> + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Няма намерени съвпадения"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Моля въведете още " + n + " символ" + (n > 1 ? "а" : ""); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Моля въведете с " + n + " по-малко символ" + (n > 1 ? "а" : ""); }, + formatSelectionTooBig: function (limit) { return "Можете да направите до " + limit + (limit > 1 ? " избора" : " избор"); }, + formatLoadMore: function (pageNumber) { return "Зареждат се още…"; }, + formatSearching: function () { return "Търсене…"; } + }); +})(jQuery); |