diff --git a/backend/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hy.js b/backend/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hy.js new file mode 100644 index 00000000000..2844441fe38 --- /dev/null +++ b/backend/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hy.js @@ -0,0 +1,37 @@ +/** + * Select2 Armenian translation. + * + * @author Arman Harutyunyan + * @author Siruhi Karakhanyan + * + */ +(function($) { + "use strict"; + + $.fn.select2.locales['hy'] = { + 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 "Որոնել…"; + } + }; + + $.extend($.fn.select2.defaults, $.fn.select2.locales['hy']); + + function character(n) { + return " " + n + " խորհրդանիշ"; + } +})(jQuery);