837715f939
Instead of instantly applying the translations, add them to an array. That way users can include the language files that their site supports and apply the required language using $.extend($.fn.select2.defaults, $.fn.select2.locales["nl"]); Signed-off-by: Kevin Brown <kevin@kevinbrown.in>
15 lines
801 B
JavaScript
15 lines
801 B
JavaScript
/**
|
|
* Select2 Italian translation
|
|
*/
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$.fn.select2.locales['it'] = {
|
|
formatNoMatches: function () { return "Nessuna corrispondenza trovata"; },
|
|
formatInputTooShort: function (input, min) { var n = min - input.length; return "Inserisci ancora " + n + " caratter" + (n == 1? "e" : "i"); },
|
|
formatInputTooLong: function (input, max) { var n = input.length - max; return "Inserisci " + n + " caratter" + (n == 1? "e" : "i") + " in meno"; },
|
|
formatSelectionTooBig: function (limit) { return "Puoi selezionare solo " + limit + " element" + (limit == 1 ? "o" : "i"); },
|
|
formatLoadMore: function (pageNumber) { return "Caricamento in corso…"; },
|
|
formatSearching: function () { return "Ricerca…"; }
|
|
});
|
|
})(jQuery); |