1 // moment.js locale configuration
2 // locale : malayalam (ml)
3 // author : Floyd Pink : https://github.com/floydpink
6 if (typeof define
=== 'function' && define
.amd
) {
7 define(['moment'], factory
); // AMD
8 } else if (typeof exports
=== 'object') {
9 module
.exports
= factory(require('../moment')); // Node
11 factory((typeof global
!== 'undefined' ? global
: this).moment
); // node or other global
14 return moment
.defineLocale('ml', {
15 months
: 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'),
16 monthsShort
: 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'),
17 weekdays
: 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split('_'),
18 weekdaysShort
: 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
19 weekdaysMin
: 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
22 LTS
: 'A h:mm:ss -നു',
25 LLL
: 'D MMMM YYYY, LT',
26 LLLL
: 'dddd, D MMMM YYYY, LT'
29 sameDay
: '[ഇന്ന്] LT',
30 nextDay
: '[നാളെ] LT',
31 nextWeek
: 'dddd, LT',
32 lastDay
: '[ഇന്നലെ] LT',
33 lastWeek
: '[കഴിഞ്ഞ] dddd, LT',
37 future
: '%s കഴിഞ്ഞ്',
51 meridiem : function (hour
, minute
, isLower
) {
54 } else if (hour
< 12) {
56 } else if (hour
< 17) {
57 return 'ഉച്ച കഴിഞ്ഞ്';
58 } else if (hour
< 20) {