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>
16 lines
747 B
JavaScript
16 lines
747 B
JavaScript
/**
|
|
* Select2 Japanese translation.
|
|
*/
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$.fn.select2.locales['ja'] = {
|
|
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);
|