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

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