UNPKG

770 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var hi = {
5 code: 'hi',
6 week: {
7 dow: 0, // Sunday is the first day of the week.
8 doy: 6, // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: 'पिछला',
12 next: 'अगला',
13 today: 'आज',
14 month: 'महीना',
15 week: 'सप्ताह',
16 day: 'दिन',
17 list: 'कार्यसूची',
18 },
19 weekText: 'हफ्ता',
20 allDayText: 'सभी दिन',
21 moreLinkText: function(n) {
22 return '+अधिक ' + n
23 },
24 noEventsText: 'कोई घटनाओं को प्रदर्शित करने के लिए',
25 };
26
27 return hi;
28
29}());