mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-01 16:50:24 +08:00
14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
|
|
$.fullCalendar.lang("it", {
|
|
defaultButtonText: {
|
|
month: "Mese",
|
|
week: "Settimana",
|
|
day: "Giorno",
|
|
list: "Agenda"
|
|
},
|
|
allDayHtml: "Tutto il<br/>giorno",
|
|
eventLimitText: function(n) {
|
|
return "+altri " + n;
|
|
}
|
|
});
|