mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 22:47:03 +03:00
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
15 lines
750 B
JavaScript
15 lines
750 B
JavaScript
/**
|
|
* Select2 Japanese translation.
|
|
*/
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$.extend($.fn.select2.defaults, {
|
|
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);
|