PluginProbe
Booking Calendar / 10.10.1
Booking Calendar v10.10.1
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / js / datepick / jquery.datepick-ja.js

jquery.datepick-ja.js in Booking Calendar 10.10.1, at js/datepick/jquery.datepick-ja.js

27 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Japanese initialisation for the jQuery UI date picker plugin. */
2 /* Written by Kentaro SATO (kentaro@ranvis.com). */
3 (function($) {
4 $.datepick.regional['ja'] = {
5 clearText: 'クリア', clearStatus: '日付をクリアします',
6 closeText: '閉じる', closeStatus: '変更せずに閉じます',
7 prevText: '<前', prevStatus: '前月を表示します',
8 prevBigText: '<<', prevBigStatus: '前年を表示します',
9 nextText: '次>', nextStatus: '翌月を表示します',
10 nextBigText: '>>', nextBigStatus: '翌年を表示します',
11 currentText: '今日', currentStatus: '今月を表示します',
12 monthNames: ['1月','2月','3月','4月','5月','6月',
13 '7月','8月','9月','10月','11月','12月'],
14 monthNamesShort: ['1月','2月','3月','4月','5月','6月',
15 '7月','8月','9月','10月','11月','12月'],
16 monthStatus: '表示する月を変更します', yearStatus: '表示する年を変更します',
17 weekHeader: '', weekStatus: '暦週で第何週目かを表します',
18 dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
19 dayNamesShort: ['','','','','','',''],
20 dayNamesMin: ['','','','','','',''],
21 dayStatus: '週の始まりをDDにします', dateStatus: 'Md日(D)',
22 dateFormat: 'yy/mm/dd', firstDay: 0,
23 initStatus: '日付を選択します', isRTL: false,
24 showMonthAfterYear: true, yearSuffix: ''};
25 $.datepick.setDefaults($.datepick.regional['ja']);
26 })(jQuery);
27