PHP Classes

File: CoffeeCMS/contents/themes/cfnews/assets/moment/locale/lo.js

Recommend this page to a friend!
  Classes of James Brows   Coffee CMS   CoffeeCMS/contents/themes/cfnews/assets/moment/locale/lo.js   Download  
File: CoffeeCMS/contents/themes/cfnews/assets/moment/locale/lo.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: 2,837 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : Lao [lo] //! author : Ryan Hart : https://github.com/ryanhart2 ;(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 lo = moment.defineLocale('lo', { months : '??????_?????_????_????_???????_??????_???????_?????_?????_????_?????_?????'.split('_'), monthsShort : '??????_?????_????_????_???????_??????_???????_?????_?????_????_?????_?????'.split('_'), weekdays : '?????_???_??????_???_?????_???_????'.split('_'), weekdaysShort : '???_???_??????_???_?????_???_????'.split('_'), weekdaysMin : '?_?_??_?_??_??_?'.split('_'), weekdaysParseExact : true, 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' }, meridiemParse: /????????|??????/, isPM: function (input) { return input === '??????'; }, meridiem : function (hour, minute, isLower) { if (hour < 12) { return '????????'; } else { return '??????'; } }, calendar : { sameDay : '[??????????] LT', nextDay : '[???????????] LT', nextWeek : '[???]dddd[???????] LT', lastDay : '[?????????????] LT', lastWeek : '[???]dddd[???????????] LT', sameElse : 'L' }, 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 ??' }, dayOfMonthOrdinalParse: /(???)\d{1,2}/, ordinal : function (number) { return '???' + number; } }); return lo; })));