Skip to content

Commit

Permalink
add Armenian translations for Select2
Browse files Browse the repository at this point in the history
  • Loading branch information
arman-h authored and waiting-for-dev committed Aug 9, 2023
1 parent a4d2600 commit 4b11b9f
Showing 1 changed file with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Select2 Armenian translation.
*
* @author Arman Harutyunyan <[email protected]>
* @author Siruhi Karakhanyan <[email protected]>
*
*/
(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);

0 comments on commit 4b11b9f

Please sign in to comment.