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 import moment from '../moment';
33 function relativeTimeMr(number, withoutSuffix, string, isFuture)
38 case 's': output = 'काही सेकंद'; break;
39 case 'm': output = 'एक मिनिट'; break;
40 case 'mm': output = '%d मिनिटे'; break;
41 case 'h': output = 'एक तास'; break;
42 case 'hh': output = '%d तास'; break;
43 case 'd': output = 'एक दिवस'; break;
44 case 'dd': output = '%d दिवस'; break;
45 case 'M': output = 'एक महिना'; break;
46 case 'MM': output = '%d महिने'; break;
47 case 'y': output = 'एक वर्ष'; break;
48 case 'yy': output = '%d वर्षे'; break;
53 case 's': output = 'काही सेकंदां'; break;
54 case 'm': output = 'एका मिनिटा'; break;
55 case 'mm': output = '%d मिनिटां'; break;
56 case 'h': output = 'एका तासा'; break;
57 case 'hh': output = '%d तासां'; break;
58 case 'd': output = 'एका दिवसा'; break;
59 case 'dd': output = '%d दिवसां'; break;
60 case 'M': output = 'एका महिन्या'; break;
61 case 'MM': output = '%d महिन्यां'; break;
62 case 'y': output = 'एका वर्षा'; break;
63 case 'yy': output = '%d वर्षां'; break;
66 return output.replace(/%d/i, number);
69 export default moment.defineLocale('mr', {
70 months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'),
71 monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'),
72 monthsParseExact : true,
73 weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
74 weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
75 weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),
78 LTS : 'A h:mm:ss वाजता',
81 LLL : 'D MMMM YYYY, A h:mm वाजता',
82 LLLL : 'dddd, D MMMM YYYY, A h:mm वाजता'
86 nextDay : '[उद्या] LT',
87 nextWeek : 'dddd, LT',
89 lastWeek: '[मागील] dddd, LT',
107 preparse: function (string) {
108 return string.replace(/[१२३४५६७८९०]/g, function (match) {
109 return numberMap[match];
112 postformat: function (string) {
113 return string.replace(/\d/g, function (match) {
114 return symbolMap[match];
117 meridiemParse: /रात्री|सकाळी|दुपारी|सायंकाळी/,
118 meridiemHour : function (hour, meridiem) {
122 if (meridiem === 'रात्री') {
123 return hour < 4 ? hour : hour + 12;
124 } else if (meridiem === 'सकाळी') {
126 } else if (meridiem === 'दुपारी') {
127 return hour >= 10 ? hour : hour + 12;
128 } else if (meridiem === 'सायंकाळी') {
132 meridiem: function (hour, minute, isLower) {
135 } else if (hour < 10) {
137 } else if (hour < 17) {
139 } else if (hour < 20) {
146 dow : 0, // Sunday is the first day of the week.
147 doy : 6 // The week that contains Jan 1st is the first week of the year.