1
0
mirror of synced 2024-11-21 20:46:07 +03:00

Fixes updated translation pattern.

This commit is contained in:
Tobias Bohwalli 2014-07-16 23:58:13 +02:00
parent f99560508e
commit e7ad0b00cd

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);