ledgerrb/public/app/bower_components/moment/locale/mr.js

105 lines
3.8 KiB
JavaScript
Raw Normal View History

2014-09-30 12:29:53 +02:00
// moment.js locale configuration
// locale : Marathi (mr)
2014-07-31 18:00:20 +02:00
// author : Harshad Kale : https://github.com/kalehv
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['moment'], factory); // AMD
} else if (typeof exports === 'object') {
module.exports = factory(require('../moment')); // Node
} else {
factory(window.moment); // Browser global
}
}(function (moment) {
var symbolMap = {
'1': '१',
'2': '२',
'3': '३',
'4': '४',
'5': '५',
'6': '६',
'7': '७',
'8': '८',
'9': '९',
'0': ''
},
numberMap = {
'१': '1',
'२': '2',
'३': '3',
'४': '4',
'५': '5',
'६': '6',
'७': '7',
'८': '8',
'९': '9',
'': '0'
};
2014-09-30 12:29:53 +02:00
return moment.defineLocale('mr', {
months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'),
monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'),
weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),
2014-07-31 18:00:20 +02:00
longDateFormat : {
2014-09-30 12:29:53 +02:00
LT : 'A h:mm वाजता',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY, LT',
LLLL : 'dddd, D MMMM YYYY, LT'
2014-07-31 18:00:20 +02:00
},
calendar : {
sameDay : '[आज] LT',
nextDay : '[उद्या] LT',
nextWeek : 'dddd, LT',
lastDay : '[काल] LT',
lastWeek: '[मागील] dddd, LT',
sameElse : 'L'
},
relativeTime : {
2014-09-30 12:29:53 +02:00
future : '%s नंतर',
past : '%s पूर्वी',
s : 'सेकंद',
m: 'एक मिनिट',
mm: '%d मिनिटे',
h : 'एक तास',
hh : '%d तास',
d : 'एक दिवस',
dd : '%d दिवस',
M : 'एक महिना',
MM : '%d महिने',
y : 'एक वर्ष',
yy : '%d वर्षे'
2014-07-31 18:00:20 +02:00
},
preparse: function (string) {
return string.replace(/[१२३४५६७८९०]/g, function (match) {
return numberMap[match];
});
},
postformat: function (string) {
return string.replace(/\d/g, function (match) {
return symbolMap[match];
});
},
meridiem: function (hour, minute, isLower)
{
if (hour < 4) {
2014-09-30 12:29:53 +02:00
return 'रात्री';
2014-07-31 18:00:20 +02:00
} else if (hour < 10) {
2014-09-30 12:29:53 +02:00
return 'सकाळी';
2014-07-31 18:00:20 +02:00
} else if (hour < 17) {
2014-09-30 12:29:53 +02:00
return 'दुपारी';
2014-07-31 18:00:20 +02:00
} else if (hour < 20) {
2014-09-30 12:29:53 +02:00
return 'सायंकाळी';
2014-07-31 18:00:20 +02:00
} else {
2014-09-30 12:29:53 +02:00
return 'रात्री';
2014-07-31 18:00:20 +02:00
}
},
week : {
dow : 0, // Sunday is the first day of the week.
doy : 6 // The week that contains Jan 1st is the first week of the year.
}
});
}));