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.

33 lines
1.4 KiB

  1. /* Chinese initialisation for the jQuery UI date picker plugin. */
  2. /* Written by Ressol (ressol@gmail.com). */
  3. jQuery(function ($) {
  4. $.datepicker.regional['zh-TW'] = {
  5. closeText: '關閉',
  6. prevText: '<上月',
  7. nextText: '下月>',
  8. currentText: '今天',
  9. monthNames: ['一月', '二月', '三月', '四月', '五月', '六月',
  10. '七月', '八月', '九月', '十月', '十一月', '十二月'],
  11. //modfiy by Alina 20140724 日曆上顯示數字 Star
  12. // monthNamesShort: ['一', '二', '三', '四', '五', '六',
  13. // '七', '八', '九', '十', '十一', '十二'],
  14. monthNamesShort: ['1', '2', '3', '4', '5', '6',
  15. '7', '8', '9', '10', '11', '12'],
  16. //modfiy by Alina 20140724 日曆上顯示數字 End
  17. dayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
  18. dayNamesShort: ['週日', '週一', '週二', '週三', '週四', '週五', '週六'],
  19. dayNamesMin: ['日', '一', '二', '三', '四', '五', '六'],
  20. weekHeader: '週',
  21. dateFormat: 'yy/mm/dd',
  22. firstDay: 1,
  23. isRTL: false,
  24. showMonthAfterYear: true,
  25. //modfiy by Alina 20140724 “年”字不用顯示了 Star
  26. //yearSuffix: '年'
  27. yearSuffix: ''
  28. //modfiy by Alina 20140724 “年”字不用顯示了 End
  29. };
  30. $.datepicker.setDefaults($.datepicker.regional['zh-TW']);
  31. });