UNPKG

569 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var da = {
5 code: "da",
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: "Forrige",
12 next: "Næste",
13 today: "I dag",
14 month: "Måned",
15 week: "Uge",
16 day: "Dag",
17 list: "Agenda"
18 },
19 weekText: "Uge",
20 allDayText: "Hele dagen",
21 moreLinkText: "flere",
22 noEventsText: "Ingen arrangementer at vise"
23 };
24
25 return da;
26
27}());