1 // moment.js locale configuration
2 // locale : traditional chinese (zh-tw)
3 // author : Ben : https://github.com/ben-lin
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 return moment.defineLocale('zh-tw', {
17 months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
18 monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
19 weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
20 weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),
21 weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
28 LLLL : 'YYYY年MMMD日ddddLT',
32 llll : 'YYYY年MMMD日ddddLT'
34 meridiem : function (hour, minute, isLower) {
35 var hm = hour * 100 + minute;
38 } else if (hm < 1130) {
40 } else if (hm < 1230) {
42 } else if (hm < 1800) {
51 nextWeek : '[下]ddddLT',
53 lastWeek : '[上]ddddLT',
56 ordinalParse: /\d{1,2}(日|月|週)/,
57 ordinal : function (number, period) {