aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n/ui.datepicker-ja.js
blob: 4fd07e38535e9191f81fdb31b859b3a14abce51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Japanese (UTF-8) initialisation for the jQuery UI date picker plugin. */
/* Written by Milly. */
jQuery(function($){
	$.datepicker.regional['ja'] = {
		clearText: '削除', clearStatus: '',
		closeText: '閉じる', closeStatus: '',
		prevText: '<前月', prevStatus: '',
		prevBigText: '<<', prevBigStatus: '',
		nextText: '次月>', nextStatus: '',
		nextBigText: '>>', nextBigStatus: '',
		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',
		dateFormat: 'yy/mm/dd', firstDay: 0, 
		initStatus: '', isRTL: false};
	$.datepicker.setDefaults($.datepicker.regional['ja']);
});