source: trunk/template-common/lib/ui/i18n/ui.datepicker-ja.js @ 3282

Last change on this file since 3282 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 1.3 KB
Line 
1/* Japanese (UTF-8) initialisation for the jQuery UI date picker plugin. */
2/* Written by Milly. */
3jQuery(function($){
4        $.datepicker.regional['ja'] = {clearText: '削除', clearStatus: '',
5                closeText: '閉じる', closeStatus: '',
6                prevText: '<前月', prevStatus: '',
7                nextText: '次月>', nextStatus: '',
8                currentText: '今日', currentStatus: '',
9                monthNames: ['1月','2月','3月','4月','5月','6月',
10                '7月','8月','9月','10月','11月','12月'],
11                monthNamesShort: ['1月','2月','3月','4月','5月','6月',
12                '7月','8月','9月','10月','11月','12月'],
13                monthStatus: '', yearStatus: '',
14                weekHeader: 'Wk', weekStatus: '',
15                dayNames: ['日','月','火','水','木','金','土'],
16                dayNamesShort: ['日','月','火','水','木','金','土'],
17                dayNamesMin: ['日','月','火','水','木','金','土'],
18                dayStatus: 'DD', dateStatus: 'D, M d',
19                dateFormat: 'yy/mm/dd', firstDay: 0, 
20                initStatus: '', isRTL: false};
21        $.datepicker.setDefaults($.datepicker.regional['ja']);
22});
Note: See TracBrowser for help on using the repository browser.