PHP Classes

File: modules/system/assets/ui/vendor/moment/locale/ug-cn.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/assets/ui/vendor/moment/locale/ug-cn.js   Download  
File: modules/system/assets/ui/vendor/moment/locale/ug-cn.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 4,509 bytes
 

Contents

Class file image Download
//! moment.js language configuration v2.22.2 ;(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 ugCn = moment.defineLocale('ug-cn', { months: '??????_??????_????_??????_???_?????_?????_???????_????????_????????_???????_???????'.split( '_' ), monthsShort: '??????_??????_????_??????_???_?????_?????_???????_????????_????????_???????_???????'.split( '_' ), weekdays: '????????_???????_????????_????????_????????_????_?????'.split( '_' ), weekdaysShort: '??_??_??_??_??_??_??'.split('_'), weekdaysMin: '??_??_??_??_??_??_??'.split('_'), longDateFormat: { LT: 'HH:mm', LTS: 'HH:mm:ss', L: 'YYYY-MM-DD', LL: 'YYYY-????M-??????D-????', LLL: 'YYYY-????M-??????D-????? HH:mm', LLLL: 'dddd? YYYY-????M-??????D-????? 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: '[???????] dddd [?????] LT', lastDay: '[???????] LT', lastWeek: '[????????] dddd [?????] LT', sameElse: 'L' }, relativeTime: { future: '%s ?????', past: '%s ?????', s: '????? ??????', ss: '%d ??????', m: '??? ?????', mm: '%d ?????', h: '??? ?????', hh: '%d ?????', d: '??? ???', dd: '%d ???', M: '??? ???', MM: '%d ???', y: '??? ???', yy: '%d ???' }, dayOfMonthOrdinalParse: /\d{1,2}(-????|-???|-?????)/, ordinal: function (number, period) { switch (period) { case 'd': case 'D': case 'DDD': return number + '-????'; case 'w': case 'W': return number + '-?????'; default: return number; } }, preparse: function (string) { return string.replace(/?/g, ','); }, postformat: function (string) { return string.replace(/,/g, '?'); }, week: { // GB/T 7408-1994?????????·????·??????????ISO 8601:1988?? dow: 1, // Monday is the first day of the week. doy: 7 // The week that contains Jan 1st is the first week of the year. } }); return ugCn; })));