mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-10 00:30:28 +08:00
14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
|
|
$.fullCalendar.lang("hr", {
|
|
defaultButtonText: {
|
|
month: "Mjesec",
|
|
week: "Tjedan",
|
|
day: "Dan",
|
|
list: "Raspored"
|
|
},
|
|
allDayText: "Cijeli dan",
|
|
eventLimitText: function(n) {
|
|
return "+ još " + n;
|
|
}
|
|
});
|