PHP Classes

File: vendors/moment/src/locale/zh-tw.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/moment/src/locale/zh-tw.js   Download  
File: vendors/moment/src/locale/zh-tw.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 2,824 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : traditional chinese (zh-tw) //! author : Ben : https://github.com/ben-lin import moment from '../moment'; export default moment.defineLocale('zh-tw', { months : '??_??_??_??_??_??_??_??_??_??_???_???'.split('_'), monthsShort : '1?_2?_3?_4?_5?_6?_7?_8?_9?_10?_11?_12?'.split('_'), weekdays : '???_???_???_???_???_???_???'.split('_'), weekdaysShort : '??_??_??_??_??_??_??'.split('_'), weekdaysMin : '?_?_?_?_?_?_?'.split('_'), longDateFormat : { LT : 'Ah?mm?', LTS : 'Ah?m?s?', L : 'YYYY?MMMD?', LL : 'YYYY?MMMD?', LLL : 'YYYY?MMMD?Ah?mm?', LLLL : 'YYYY?MMMD?ddddAh?mm?', l : 'YYYY?MMMD?', ll : 'YYYY?MMMD?', lll : 'YYYY?MMMD?Ah?mm?', llll : 'YYYY?MMMD?ddddAh?mm?' }, meridiemParse: /??|??|??|??|??/, meridiemHour : function (hour, meridiem) { if (hour === 12) { hour = 0; } if (meridiem === '??' || meridiem === '??') { return hour; } else if (meridiem === '??') { return hour >= 11 ? hour : hour + 12; } else if (meridiem === '??' || meridiem === '??') { return hour + 12; } }, meridiem : function (hour, minute, isLower) { var hm = hour * 100 + minute; if (hm < 900) { return '??'; } else if (hm < 1130) { return '??'; } else if (hm < 1230) { return '??'; } else if (hm < 1800) { return '??'; } else { return '??'; } }, calendar : { sameDay : '[??]LT', nextDay : '[??]LT', nextWeek : '[?]ddddLT', lastDay : '[??]LT', lastWeek : '[?]ddddLT', sameElse : 'L' }, ordinalParse: /\d{1,2}(?|?|?)/, ordinal : function (number, period) { switch (period) { case 'd' : case 'D' : case 'DDD' : return number + '?'; case 'M' : return number + '?'; case 'w' : case 'W' : return number + '?'; default : return number; } }, relativeTime : { future : '%s?', past : '%s?', s : '??', m : '1??', mm : '%d??', h : '1??', hh : '%d??', d : '1?', dd : '%d?', M : '1??', MM : '%d??', y : '1?', yy : '%d?' } });