UNPKG

575 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var hu = {
5 code: 'hu',
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4, // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: 'vissza',
12 next: 'előre',
13 today: 'ma',
14 month: 'Hónap',
15 week: 'Hét',
16 day: 'Nap',
17 list: 'Lista',
18 },
19 weekText: 'Hét',
20 allDayText: 'Egész nap',
21 moreLinkText: 'további',
22 noEventsText: 'Nincs megjeleníthető esemény',
23 };
24
25 return hu;
26
27}());