1 // moment.js locale configuration
2 // locale : Marathi (mr)
3 // author : Harshad Kale : https://github.com/kalehv
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
41 return moment.defineLocale('mr', {
42 months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'),
43 monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'),
44 weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
45 weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
46 weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),
49 LTS : 'A h:mm:ss वाजता',
52 LLL : 'D MMMM YYYY, LT',
53 LLLL : 'dddd, D MMMM YYYY, LT'
57 nextDay : '[उद्या] LT',
58 nextWeek : 'dddd, LT',
60 lastWeek: '[मागील] dddd, LT',
78 preparse: function (string) {
79 return string.replace(/[१२३४५६७८९०]/g, function (match) {
80 return numberMap[match];
83 postformat: function (string) {
84 return string.replace(/\d/g, function (match) {
85 return symbolMap[match];
88 meridiem: function (hour, minute, isLower)
92 } else if (hour < 10) {
94 } else if (hour < 17) {
96 } else if (hour < 20) {
103 dow : 0, // Sunday is the first day of the week.
104 doy : 6 // The week that contains Jan 1st is the first week of the year.