PHP Classes

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

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

Contents

Class file image Download
//! moment.js locale configuration //! locale : Lao [lo] //! author : Ryan Hart : https://github.com/ryanhart2 import moment from '../moment'; export default 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; } });