Files
hrm_eva/wwwroot/lib/jquery.calendars/js/jquery.calendars-ja.js
2020-08-11 16:13:02 +07:00

27 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 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);