PHP Classes

File: vendors/gentelella/vendors/moment/src/locale/ml.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/moment/src/locale/ml.js   Download  
File: vendors/gentelella/vendors/moment/src/locale/ml.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,189 bytes
 

Contents

Class file image Download
//! moment.js locale configuration //! locale : malayalam (ml) //! author : Floyd Pink : https://github.com/floydpink import moment from '../moment'; export default 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 '??????'; } } });