mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-01 16:50:24 +08:00
14 lines
223 B
JavaScript
14 lines
223 B
JavaScript
|
|
$.fullCalendar.lang("de", {
|
|
defaultButtonText: {
|
|
month: "Monat",
|
|
week: "Woche",
|
|
day: "Tag",
|
|
list: "Terminübersicht"
|
|
},
|
|
allDayText: "Ganztägig",
|
|
eventLimitText: function(n) {
|
|
return "+ weitere " + n;
|
|
}
|
|
});
|