1 // moment.js locale configuration
2 // locale : nepali/nepalese
3 // author : suvash : https://github.com/suvash
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
41 return moment
.defineLocale('ne', {
42 months
: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
43 monthsShort
: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
44 weekdays
: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'),
45 weekdaysShort
: 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
46 weekdaysMin
: 'आइ._सो._मङ्_बु._बि._शु._श.'.split('_'),
49 LTS
: 'Aको h:mm:ss बजे',
52 LLL
: 'D MMMM YYYY, LT',
53 LLLL
: 'dddd, D MMMM YYYY, LT'
55 preparse: function (string
) {
56 return string
.replace(/[१२३४५६७८९०]/g, function (match
) {
57 return numberMap
[match
];
60 postformat: function (string
) {
61 return string
.replace(/\d/g, function (match
) {
62 return symbolMap
[match
];
65 meridiem : function (hour
, minute
, isLower
) {
68 } else if (hour
< 10) {
70 } else if (hour
< 15) {
72 } else if (hour
< 18) {
74 } else if (hour
< 20) {
82 nextDay
: '[भोली] LT',
83 nextWeek
: '[आउँदो] dddd[,] LT',
84 lastDay
: '[हिजो] LT',
85 lastWeek
: '[गएको] dddd[,] LT',
104 dow
: 1, // Monday is the first day of the week.
105 doy
: 7 // The week that contains Jan 1st is the first week of the year.