PHP Classes

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

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

Contents

Class file image Download
//! moment.js locale configuration //! locale : Malayalam [ml] //! author : Floyd Pink : https://github.com/floydpink ;(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 ml = moment.defineLocale('ml', { months : '??????_?????????_???????_??????_????_???_????_????????_??????????_???????_?????_??????'.split('_'), monthsShort : '???._??????._???._?????._????_???_????._??._???????._?????._???._????.'.split('_'), monthsParseExact : true, weekdays : '????????_??????????_?????????_????????_?????????_???????????_????????'.split('_'), weekdaysShort : '????_??????_?????_????_??????_??????_???'.split('_'), weekdaysMin : '??_??_??_??_????_??_?'.split('_'), longDateFormat : { LT : 'A h:mm -??', LTS : 'A h:mm:ss -??', L : 'DD/MM/YYYY', LL : 'D MMMM YYYY', LLL : 'D MMMM YYYY, A h:mm -??', LLLL : 'dddd, D MMMM YYYY, A h:mm -??' }, calendar : { sameDay : '[?????] LT', nextDay : '[????] LT', nextWeek : 'dddd, LT', lastDay : '[??????] 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: /??????|??????|???? ???????|??????????|??????/i, meridiemHour : function (hour, meridiem) { if (hour === 12) { hour = 0; } if ((meridiem === '??????' && hour >= 4) || meridiem === '???? ???????' || meridiem === '??????????') { return hour + 12; } else { return hour; } }, meridiem : function (hour, minute, isLower) { if (hour < 4) { return '??????'; } else if (hour < 12) { return '??????'; } else if (hour < 17) { return '???? ???????'; } else if (hour < 20) { return '??????????'; } else { return '??????'; } } }); return ml; })));