PHP Classes

File: vendors/moment/locale/lo.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/moment/locale/lo.js   Download  
File: vendors/moment/locale/lo.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 3,041 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 ??' }, ordinalParse: /(???)\d{1,2}/, ordinal : function (number) { return '???' + number; } }); return lo; }));