懒羊羊
2023-08-30 71e81ed1d12e4d69f53c8ad9e066650ad4186293
提交 | 用户 | 时间
71e81e 1 (function (global, factory) {
2     typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
3     typeof define === 'function' && define.amd ? define(factory) :
4     (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.de = factory()));
5 }(this, function () { 'use strict';
6
7     var de = {
8         code: "de",
9         week: {
10             dow: 1,
11             doy: 4 // The week that contains Jan 4th is the first week of the year.
12         },
13         buttonText: {
14             prev: "Zurück",
15             next: "Vor",
16             today: "Heute",
17             year: "Jahr",
18             month: "Monat",
19             week: "Woche",
20             day: "Tag",
21             list: "Terminübersicht"
22         },
23         weekLabel: "KW",
24         allDayText: "Ganztägig",
25         eventLimitText: function (n) {
26             return "+ weitere " + n;
27         },
28         noEventsMessage: "Keine Ereignisse anzuzeigen"
29     };
30
31     return de;
32
33 }));