Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / ne.js
blobe2c737eab1973fb40b821da77a3efcaa99051013
1 //! moment.js locale configuration
2 //! locale : Nepalese [ne]
3 //! author : suvash : https://github.com/suvash
5 ;(function (global, factory) {
6    typeof exports === 'object' && typeof module !== 'undefined'
7        && typeof require === 'function' ? factory(require('../moment')) :
8    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9    factory(global.moment)
10 }(this, (function (moment) { 'use strict';
12     //! moment.js locale configuration
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     var ne = moment.defineLocale('ne', {
40         months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split(
41             '_'
42         ),
43         monthsShort: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(
44             '_'
45         ),
46         monthsParseExact: true,
47         weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split(
48             '_'
49         ),
50         weekdaysShort: 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
51         weekdaysMin: 'आ._सो._मं._बु._बि._शु._श.'.split('_'),
52         weekdaysParseExact: true,
53         longDateFormat: {
54             LT: 'Aको h:mm बजे',
55             LTS: 'Aको h:mm:ss बजे',
56             L: 'DD/MM/YYYY',
57             LL: 'D MMMM YYYY',
58             LLL: 'D MMMM YYYY, Aको h:mm बजे',
59             LLLL: 'dddd, D MMMM YYYY, Aको h:mm बजे',
60         },
61         preparse: function (string) {
62             return string.replace(/[१२३४५६७८९०]/g, function (match) {
63                 return numberMap[match];
64             });
65         },
66         postformat: function (string) {
67             return string.replace(/\d/g, function (match) {
68                 return symbolMap[match];
69             });
70         },
71         meridiemParse: /राति|बिहान|दिउँसो|साँझ/,
72         meridiemHour: function (hour, meridiem) {
73             if (hour === 12) {
74                 hour = 0;
75             }
76             if (meridiem === 'राति') {
77                 return hour < 4 ? hour : hour + 12;
78             } else if (meridiem === 'बिहान') {
79                 return hour;
80             } else if (meridiem === 'दिउँसो') {
81                 return hour >= 10 ? hour : hour + 12;
82             } else if (meridiem === 'साँझ') {
83                 return hour + 12;
84             }
85         },
86         meridiem: function (hour, minute, isLower) {
87             if (hour < 3) {
88                 return 'राति';
89             } else if (hour < 12) {
90                 return 'बिहान';
91             } else if (hour < 16) {
92                 return 'दिउँसो';
93             } else if (hour < 20) {
94                 return 'साँझ';
95             } else {
96                 return 'राति';
97             }
98         },
99         calendar: {
100             sameDay: '[आज] LT',
101             nextDay: '[भोलि] LT',
102             nextWeek: '[आउँदो] dddd[,] LT',
103             lastDay: '[हिजो] LT',
104             lastWeek: '[गएको] dddd[,] LT',
105             sameElse: 'L',
106         },
107         relativeTime: {
108             future: '%sमा',
109             past: '%s अगाडि',
110             s: 'केही क्षण',
111             ss: '%d सेकेण्ड',
112             m: 'एक मिनेट',
113             mm: '%d मिनेट',
114             h: 'एक घण्टा',
115             hh: '%d घण्टा',
116             d: 'एक दिन',
117             dd: '%d दिन',
118             M: 'एक महिना',
119             MM: '%d महिना',
120             y: 'एक बर्ष',
121             yy: '%d बर्ष',
122         },
123         week: {
124             dow: 0, // Sunday is the first day of the week.
125             doy: 6, // The week that contains Jan 6th is the first week of the year.
126         },
127     });
129     return ne;
131 })));