mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-06-30 16:40:34 +08:00
14 lines
215 B
JavaScript
14 lines
215 B
JavaScript
|
|
$.fullCalendar.lang("cs", {
|
|
defaultButtonText: {
|
|
month: "Měsíc",
|
|
week: "Týden",
|
|
day: "Den",
|
|
list: "Agenda"
|
|
},
|
|
allDayText: "Celý den",
|
|
eventLimitText: function(n) {
|
|
return "+další: " + n;
|
|
}
|
|
});
|