You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jquery.ui.datepicker-ja.js 1022B

12345678910111213141516171819202122232425
  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 */