Mercurial > hg > rc2
comparison plugins/jqueryui/js/i18n/jquery.ui.datepicker-ja.js @ 0:4681f974d28b
vanilla 1.3.3 distro, I hope
author | Charlie Root |
---|---|
date | Thu, 04 Jan 2018 15:52:31 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4681f974d28b |
---|---|
1 /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */ | |
2 /* Japanese initialisation for the jQuery UI date picker plugin. */ | |
3 /* Written by Kentaro SATO (kentaro@ranvis.com). */ | |
4 jQuery(function($){ | |
5 $.datepicker.regional['ja'] = { | |
6 closeText: '閉じる', | |
7 prevText: '<前', | |
8 nextText: '次>', | |
9 currentText: '今日', | |
10 monthNames: ['1月','2月','3月','4月','5月','6月', | |
11 '7月','8月','9月','10月','11月','12月'], | |
12 monthNamesShort: ['1月','2月','3月','4月','5月','6月', | |
13 '7月','8月','9月','10月','11月','12月'], | |
14 dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], | |
15 dayNamesShort: ['日','月','火','水','木','金','土'], | |
16 dayNamesMin: ['日','月','火','水','木','金','土'], | |
17 weekHeader: '週', | |
18 dateFormat: 'yy/mm/dd', | |
19 firstDay: 0, | |
20 isRTL: false, | |
21 showMonthAfterYear: true, | |
22 yearSuffix: '年'}; | |
23 $.datepicker.setDefaults($.datepicker.regional['ja']); | |
24 }); | |
25 /* @license-end */ |