1
0
mirror of synced 2024-11-25 22:36:03 +03:00

merging the hebrew locale commit from KingYes

This commit is contained in:
Igor Vaynberg 2013-04-02 14:21:42 -07:00
parent 8e63ca3eba
commit 7047b81916

17
select2_locale_he.js Normal file
View File

@ -0,0 +1,17 @@
/**
* Select2 Hebrew translation.
*
* Author: Yakir Sitbon <http://www.yakirs.net/>
*/
(function ($) {
"use strict";
$.extend($.fn.select2.defaults, {
formatNoMatches: function () { return "לא נמצאו תוצאות"; },
formatInputTooShort: function (input, min) { var n = min - input.length; return "אנא הזן " + n + " תווים נוספים"; },
formatInputTooLong: function (input, max) { var n = input.length - max; return "אנא הזן " + n + " פחות תווים"; },
formatSelectionTooBig: function (limit) { return "הנך יכול לבחור " + limit + " פרטים"; },
formatLoadMore: function (pageNumber) { return "טוען תוצאות נוספות..."; },
formatSearching: function () { return "מחפש..."; }
});
})(jQuery);