Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /** |
| 2 | * Select2 Japanese translation. |
||
| 3 | */ |
||
| 4 | (function ($) { |
||
| 5 | "use strict"; |
||
| 6 | |||
| 7 | $.fn.select2.locales['ja'] = { |
||
| 8 | formatNoMatches: function () { return "該当なし"; }, |
||
| 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; }, |
||
| 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; }, |
||
| 11 | formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; }, |
||
| 12 | formatLoadMore: function (pageNumber) { return "読込中・・・"; }, |
||
| 13 | formatSearching: function () { return "検索中・・・"; } |
||
| 14 | }; |
||
| 15 | |||
| 16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ja']); |
||
| 17 | })(jQuery); |