1 // moment.js locale configuration
3 // author : Mayank Singhal : https://github.com/mayanksinghal
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((typeof global
!== 'undefined' ? global
: this).moment
); // node or other global
39 return moment
.defineLocale('hi', {
40 months
: 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'),
41 monthsShort
: 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
42 weekdays
: 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
43 weekdaysShort
: 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
44 weekdaysMin
: 'र_सो_मं_बु_गु_शु_श'.split('_'),
47 LTS
: 'A h:mm:ss बजे',
50 LLL
: 'D MMMM YYYY, LT',
51 LLLL
: 'dddd, D MMMM YYYY, LT'
56 nextWeek
: 'dddd, LT',
58 lastWeek
: '[पिछले] dddd, LT',
76 preparse: function (string
) {
77 return string
.replace(/[१२३४५६७८९०]/g, function (match
) {
78 return numberMap
[match
];
81 postformat: function (string
) {
82 return string
.replace(/\d/g, function (match
) {
83 return symbolMap
[match
];
86 // Hindi notation for meridiems are quite fuzzy in practice. While there exists
87 // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi.
88 meridiem : function (hour
, minute
, isLower
) {
91 } else if (hour
< 10) {
93 } else if (hour
< 17) {
95 } else if (hour
< 20) {
102 dow
: 0, // Sunday is the first day of the week.
103 doy
: 6 // The week that contains Jan 1st is the first week of the year.