1
0
mirror of synced 2024-11-22 13:06:08 +03:00

Merge pull request #2540 from futhr/patch-1

Fixes updated translation pattern.
This commit is contained in:
Kevin Brown 2014-07-16 18:00:56 -04:00
commit f579cbb43c

View File

@ -6,7 +6,7 @@
(function ($) {
"use strict";
$.extend($.fn.select2.defaults, {
$.fn.select2.locales['az'] = {
formatMatches: function (matches) { return matches + " nəticə mövcuddur, hərəkət etdirmək üçün yuxarı və aşağı düymələrindən istifadə edin."; },
formatNoMatches: function () { return "Nəticə tapılmadı"; },
formatInputTooShort: function (input, min) { var n = min - input.length; return n + " simvol daxil edin"; },
@ -14,5 +14,7 @@
formatSelectionTooBig: function (limit) { return "Sadəcə " + limit + " element seçə bilərsiniz"; },
formatLoadMore: function (pageNumber) { return "Daha çox nəticə yüklənir…"; },
formatSearching: function () { return "Axtarılır…"; }
});
};
$.extend($.fn.select2.defaults, $.fn.select2.locales['az']);
})(jQuery);