This repository was archived by the owner on Oct 17, 2021. It is now read-only.

Description
I can't do localisation as it is done in fullcalendar.io. Is ths supported in this version, which I realy like. I tried to get the localisation file from fullcalendar.io and put it into the indes.php file like
$('#calendar').fullCalendar({
var de = {
code: 'de',
week: {
dow: 1, // Monday is the first day of the week.
doy: 4, // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: 'Zurück',
next: 'Vor',
today: 'Heute',
year: 'Jahr',
month: 'Monat',
week: 'Woche',
day: 'Tag',
list: 'Terminübersicht',
},
weekText: 'KW',
allDayText: 'Ganztägig',
moreLinkText(n) {
return '+ weitere ' + n
},
noEventsText: 'Keine Ereignisse anzuzeigen',
};
locale: de;
but it did't work.
Is this supported at all?
Thanks