PHP Classes

File: modules/system/assets/ui/vendor/moment/locale/tg.js

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/assets/ui/vendor/moment/locale/tg.js   Download  
File: modules/system/assets/ui/vendor/moment/locale/tg.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: 3,979 bytes
 

Contents

Class file image Download
//! moment.js locale 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 suffixes = { 0: '-??', 1: '-??', 2: '-??', 3: '-??', 4: '-??', 5: '-??', 6: '-??', 7: '-??', 8: '-??', 9: '-??', 10: '-??', 12: '-??', 13: '-??', 20: '-??', 30: '-??', 40: '-??', 50: '-??', 60: '-??', 70: '-??', 80: '-??', 90: '-??', 100: '-??' }; var tg = moment.defineLocale('tg', { months : '?????_??????_????_?????_???_???_???_??????_???????_??????_?????_??????'.split('_'), monthsShort : '???_???_???_???_???_???_???_???_???_???_???_???'.split('_'), weekdays : '???????_???????_???????_????????_?????????_?????_?????'.split('_'), weekdaysShort : '???_???_???_???_???_???_???'.split('_'), weekdaysMin : '??_??_??_??_??_??_??'.split('_'), longDateFormat : { LT : 'HH:mm', LTS : 'HH:mm:ss', L : 'DD/MM/YYYY', LL : 'D MMMM YYYY', LLL : 'D MMMM YYYY HH:mm', LLLL : 'dddd, D MMMM YYYY HH:mm' }, calendar : { sameDay : '[????? ?????] LT', nextDay : '[????? ?????] LT', lastDay : '[????? ?????] LT', nextWeek : 'dddd[?] [?????? ????? ?????] LT', lastWeek : 'dddd[?] [?????? ??????? ?????] LT', sameElse : 'L' }, relativeTime : { future : '????? %s', past : '%s ???', s : '?????? ?????', m : '?? ??????', mm : '%d ??????', h : '?? ????', hh : '%d ????', d : '?? ???', dd : '%d ???', M : '?? ???', MM : '%d ???', y : '?? ???', yy : '%d ???' }, meridiemParse: /???|????|???|?????/, meridiemHour: function (hour, meridiem) { if (hour === 12) { hour = 0; } if (meridiem === '???') { return hour < 4 ? hour : hour + 12; } else if (meridiem === '????') { return hour; } else if (meridiem === '???') { return hour >= 11 ? hour : hour + 12; } else if (meridiem === '?????') { return hour + 12; } }, meridiem: function (hour, minute, isLower) { if (hour < 4) { return '???'; } else if (hour < 11) { return '????'; } else if (hour < 16) { return '???'; } else if (hour < 19) { return '?????'; } else { return '???'; } }, dayOfMonthOrdinalParse: /\d{1,2}-(??|??)/, ordinal: function (number) { var a = number % 10, b = number >= 100 ? 100 : null; return number + (suffixes[number] || suffixes[a] || suffixes[b]); }, week : { dow : 1, // Monday is the first day of the week. doy : 7 // The week that contains Jan 1th is the first week of the year. } }); return tg; })));