UNPKG

639 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var de = {
5 code: "de",
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: "Zurück",
12 next: "Vor",
13 today: "Heute",
14 year: "Jahr",
15 month: "Monat",
16 week: "Woche",
17 day: "Tag",
18 list: "Terminübersicht"
19 },
20 weekText: "KW",
21 allDayText: "Ganztägig",
22 moreLinkText: function(n) {
23 return "+ weitere " + n;
24 },
25 noEventsText: "Keine Ereignisse anzuzeigen"
26 };
27
28 return de;
29
30}());