รวม code แก้ไข OP 3138, 3141, 2736, 2654
This commit is contained in:
26
wwwroot/lib/jquery.calendars/js/jquery.calendars-ja.js
Normal file
26
wwwroot/lib/jquery.calendars/js/jquery.calendars-ja.js
Normal file
@@ -0,0 +1,26 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Japanese localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Kentaro SATO (kentaro@ranvis.com). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ja = {
|
||||
name: 'Gregorian',
|
||||
epochs: ['BCE', 'CE'],
|
||||
monthNames: ['1月','2月','3月','4月','5月','6月',
|
||||
'7月','8月','9月','10月','11月','12月'],
|
||||
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
|
||||
'7月','8月','9月','10月','11月','12月'],
|
||||
dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
|
||||
dayNamesShort: ['日','月','火','水','木','金','土'],
|
||||
dayNamesMin: ['日','月','火','水','木','金','土'],
|
||||
digits: $.calendars.substituteChineseDigits(
|
||||
['〇', '一', '二', '三', '四', '五', '六', '七', '八', '九'], ['', '十', '百', '千']),
|
||||
dateFormat: 'yyyy/mm/dd',
|
||||
firstDay: 0,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.ja =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.ja;
|
||||
}
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user