PHP Classes

File: CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/locale/zh-cn.js

Recommend this page to a friend!
  Classes of James Brows   Coffee CMS   CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/locale/zh-cn.js   Download  
File: CoffeeCMS/contents/themes/cfnews/cfnews-html/assets/moment/locale/zh-cn.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Coffee CMS
Content management system using MVC based themes
Author: By
Last change:
Date: 2 years ago
Size: 3,600 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : Chinese (China) [zh-cn] //! author : suupic : https://github.com/suupic //! author : Zeno Zeng : https://github.com/zenozeng ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; var zhCn = moment.defineLocale('zh-cn', { months : '??_??_??_??_??_??_??_??_??_??_???_???'.split('_'), monthsShort : '1?_2?_3?_4?_5?_6?_7?_8?_9?_10?_11?_12?'.split('_'), weekdays : '???_???_???_???_???_???_???'.split('_'), weekdaysShort : '??_??_??_??_??_??_??'.split('_'), weekdaysMin : '?_?_?_?_?_?_?'.split('_'), longDateFormat : { LT : 'HH:mm', LTS : 'HH:mm:ss', 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? HH:mm', llll : 'YYYY?MMMD?dddd HH:mm' }, meridiemParse: /??|??|??|??|??|??/, meridiemHour: function (hour, meridiem) { if (hour === 12) { hour = 0; } if (meridiem === '??' || meridiem === '??' || meridiem === '??') { return hour; } else if (meridiem === '??' || meridiem === '??') { return hour + 12; } else { // '??' return hour >= 11 ? hour : hour + 12; } }, meridiem : function (hour, minute, isLower) { var hm = hour * 100 + minute; if (hm < 600) { return '??'; } else 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' }, dayOfMonthOrdinalParse: /\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 ?' }, week : { // GB/T 7408-1994?????????·????·??????????ISO 8601:1988?? dow : 1, // Monday is the first day of the week. doy : 4 // The week that contains Jan 4th is the first week of the year. } }); return zhCn; })));