2008-06-04 02:34:33 +00:00
|
|
|
/* Japanese (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
|
|
|
/* Written by Milly. */
|
|
|
|
jQuery(function($){
|
2008-07-25 09:59:05 +00:00
|
|
|
$.datepicker.regional['ja'] = {
|
|
|
|
clearText: '削除', clearStatus: '',
|
2008-06-04 02:34:33 +00:00
|
|
|
closeText: '閉じる', closeStatus: '',
|
2008-07-25 09:59:05 +00:00
|
|
|
prevText: '<前月', prevStatus: '',
|
|
|
|
prevBigText: '<<', prevBigStatus: '',
|
|
|
|
nextText: '次月>', nextStatus: '',
|
|
|
|
nextBigText: '>>', nextBigStatus: '',
|
2008-06-04 02:34:33 +00:00
|
|
|
currentText: '今日', currentStatus: '',
|
|
|
|
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月'],
|
|
|
|
monthStatus: '', yearStatus: '',
|
|
|
|
weekHeader: 'Wk', weekStatus: '',
|
|
|
|
dayNames: ['日','月','火','水','木','金','土'],
|
|
|
|
dayNamesShort: ['日','月','火','水','木','金','土'],
|
|
|
|
dayNamesMin: ['日','月','火','水','木','金','土'],
|
|
|
|
dayStatus: 'DD', dateStatus: 'D, M d',
|
2008-09-19 14:20:14 +00:00
|
|
|
dateFormat: 'yy/mm/dd', firstDay: 0,
|
2008-06-04 02:34:33 +00:00
|
|
|
initStatus: '', isRTL: false};
|
|
|
|
$.datepicker.setDefaults($.datepicker.regional['ja']);
|
2008-05-29 15:19:49 +00:00
|
|
|
});
|