1 // moment.js language configuration
2 // language : Marathi (mr)
3 // author : Harshad Kale : https://github.com/kalehv
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(window
.moment
); // Browser global
39 return moment
.lang('mr', {
40 months
: 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split("_"),
41 monthsShort
: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split("_"),
42 weekdays
: 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split("_"),
43 weekdaysShort
: 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split("_"),
44 weekdaysMin
: 'र_सो_मं_बु_गु_शु_श'.split("_"),
49 LLL
: "D MMMM YYYY, LT",
50 LLLL
: "dddd, D MMMM YYYY, LT"
54 nextDay
: '[उद्या] LT',
55 nextWeek
: 'dddd, LT',
57 lastWeek
: '[मागील] dddd, LT',
75 preparse: function (string
) {
76 return string
.replace(/[१२३४५६७८९०]/g, function (match
) {
77 return numberMap
[match
];
80 postformat: function (string
) {
81 return string
.replace(/\d/g, function (match
) {
82 return symbolMap
[match
];
85 meridiem: function (hour
, minute
, isLower
)
89 } else if (hour
< 10) {
91 } else if (hour
< 17) {
93 } else if (hour
< 20) {
100 dow
: 0, // Sunday is the first day of the week.
101 doy
: 6 // The week that contains Jan 1st is the first week of the year.