UNPKG

577 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var nl = {
5 code: 'nl',
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: 'Vorige',
12 next: 'Volgende',
13 today: 'Vandaag',
14 year: 'Jaar',
15 month: 'Maand',
16 week: 'Week',
17 day: 'Dag',
18 list: 'Agenda',
19 },
20 allDayText: 'Hele dag',
21 moreLinkText: 'extra',
22 noEventsText: 'Geen evenementen om te laten zien',
23 };
24
25 return nl;
26
27}());