1
0
mirror of synced 2025-02-04 06:09:23 +03:00

Merge pull request #1331 from execjosh/japanese-translation

Shorten Japanese translation for `formatNoMatches`
This commit is contained in:
Igor Vaynberg 2013-05-20 08:50:48 -07:00
commit 79a0f1de4f

View File

@ -5,7 +5,7 @@
"use strict";
$.extend($.fn.select2.defaults, {
formatNoMatches: function () { return "該当項目なし"; },
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 + "項目までしか選択できません"; },