Release note for Id83eda95
[mediawiki.git] / resources / lib / moment / locale / ne.js
blobceb283411d0ec59e16059bef1648f4a900c84f56
1 // moment.js locale configuration
2 // locale : nepali/nepalese
3 // author : suvash : https://github.com/suvash
5 (function (factory) {
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
10     } else {
11         factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
12     }
13 }(function (moment) {
14     var symbolMap = {
15         '1': '१',
16         '2': '२',
17         '3': '३',
18         '4': '४',
19         '5': '५',
20         '6': '६',
21         '7': '७',
22         '8': '८',
23         '9': '९',
24         '0': '०'
25     },
26     numberMap = {
27         '१': '1',
28         '२': '2',
29         '३': '3',
30         '४': '4',
31         '५': '5',
32         '६': '6',
33         '७': '7',
34         '८': '8',
35         '९': '9',
36         '०': '0'
37     };
39     return moment.defineLocale('ne', {
40         months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
41         monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
42         weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'),
43         weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
44         weekdaysMin : 'आइ._सो._मङ्_बु._बि._शु._श.'.split('_'),
45         longDateFormat : {
46             LT : 'Aको h:mm बजे',
47             LTS : 'Aको h:mm:ss बजे',
48             L : 'DD/MM/YYYY',
49             LL : 'D MMMM YYYY',
50             LLL : 'D MMMM YYYY, LT',
51             LLLL : 'dddd, D MMMM YYYY, LT'
52         },
53         preparse: function (string) {
54             return string.replace(/[१२३४५६७८९०]/g, function (match) {
55                 return numberMap[match];
56             });
57         },
58         postformat: function (string) {
59             return string.replace(/\d/g, function (match) {
60                 return symbolMap[match];
61             });
62         },
63         meridiem : function (hour, minute, isLower) {
64             if (hour < 3) {
65                 return 'राती';
66             } else if (hour < 10) {
67                 return 'बिहान';
68             } else if (hour < 15) {
69                 return 'दिउँसो';
70             } else if (hour < 18) {
71                 return 'बेलुका';
72             } else if (hour < 20) {
73                 return 'साँझ';
74             } else {
75                 return 'राती';
76             }
77         },
78         calendar : {
79             sameDay : '[आज] LT',
80             nextDay : '[भोली] LT',
81             nextWeek : '[आउँदो] dddd[,] LT',
82             lastDay : '[हिजो] LT',
83             lastWeek : '[गएको] dddd[,] LT',
84             sameElse : 'L'
85         },
86         relativeTime : {
87             future : '%sमा',
88             past : '%s अगाडी',
89             s : 'केही समय',
90             m : 'एक मिनेट',
91             mm : '%d मिनेट',
92             h : 'एक घण्टा',
93             hh : '%d घण्टा',
94             d : 'एक दिन',
95             dd : '%d दिन',
96             M : 'एक महिना',
97             MM : '%d महिना',
98             y : 'एक बर्ष',
99             yy : '%d बर्ष'
100         },
101         week : {
102             dow : 1, // Monday is the first day of the week.
103             doy : 7  // The week that contains Jan 1st is the first week of the year.
104         }
105     });
106 }));