1 //! moment.js locale configuration
2 //! locale : Marathi [mr]
3 //! author : Harshad Kale : https://github.com/kalehv
4 //! author : Vivek Athalye : https://github.com/vnathalye
6 ;(function (global, factory) {
7 typeof exports === 'object' && typeof module !== 'undefined'
8 && typeof require === 'function' ? factory(require('../moment')) :
9 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 factory(global.moment)
11 }(this, (function (moment) { 'use strict';
13 //! moment.js locale configuration
40 function relativeTimeMr(number, withoutSuffix, string, isFuture) {
45 output = 'काही सेकंद';
84 output = 'काही सेकंदां';
87 output = '%d सेकंदां';
90 output = 'एका मिनिटा';
93 output = '%d मिनिटां';
102 output = 'एका दिवसा';
105 output = '%d दिवसां';
108 output = 'एका महिन्या';
111 output = '%d महिन्यां';
114 output = 'एका वर्षा';
117 output = '%d वर्षां';
121 return output.replace(/%d/i, number);
124 var mr = moment.defineLocale('mr', {
125 months: 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
128 monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
131 monthsParseExact: true,
132 weekdays: 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
133 weekdaysShort: 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
134 weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),
137 LTS: 'A h:mm:ss वाजता',
140 LLL: 'D MMMM YYYY, A h:mm वाजता',
141 LLLL: 'dddd, D MMMM YYYY, A h:mm वाजता',
145 nextDay: '[उद्या] LT',
146 nextWeek: 'dddd, LT',
148 lastWeek: '[मागील] dddd, LT',
167 preparse: function (string) {
168 return string.replace(/[१२३४५६७८९०]/g, function (match) {
169 return numberMap[match];
172 postformat: function (string) {
173 return string.replace(/\d/g, function (match) {
174 return symbolMap[match];
177 meridiemParse: /पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,
178 meridiemHour: function (hour, meridiem) {
182 if (meridiem === 'पहाटे' || meridiem === 'सकाळी') {
185 meridiem === 'दुपारी' ||
186 meridiem === 'सायंकाळी' ||
187 meridiem === 'रात्री'
189 return hour >= 12 ? hour : hour + 12;
192 meridiem: function (hour, minute, isLower) {
193 if (hour >= 0 && hour < 6) {
195 } else if (hour < 12) {
197 } else if (hour < 17) {
199 } else if (hour < 20) {
206 dow: 0, // Sunday is the first day of the week.
207 doy: 6, // The week that contains Jan 6th is the first week of the year.