2013-03-13 20:52:17 +04:00
|
|
|
/**
|
|
|
|
* Select2 <Language> translation.
|
2013-03-13 21:01:28 +04:00
|
|
|
*
|
|
|
|
* Author: Your Name <your@email>
|
2013-03-13 20:52:17 +04:00
|
|
|
*/
|
|
|
|
(function ($) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
$.extend($.fn.select2.defaults, {
|
2013-10-19 07:18:22 +04:00
|
|
|
formatMatches: function (matches) { return matches + " results are available, use up and down arrow keys to navigate."; },
|
2013-03-13 20:52:17 +04:00
|
|
|
formatNoMatches: function () { return "No matches found"; },
|
|
|
|
formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " more character" + (n == 1 ? "" : "s"); },
|
2013-05-20 18:00:54 +04:00
|
|
|
formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1 ? "" : "s"); },
|
2013-03-13 20:52:17 +04:00
|
|
|
formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); },
|
2014-01-08 13:35:47 +04:00
|
|
|
formatLoadMore: function (pageNumber) { return "Loading more results…"; },
|
|
|
|
formatSearching: function () { return "Searching…"; }
|
2013-03-13 20:52:17 +04:00
|
|
|
});
|
|
|
|
})(jQuery);
|