mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-25 13:10:31 +08:00
14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
|
|
$.fullCalendar.lang("pt-br", {
|
|
defaultButtonText: {
|
|
month: "Mês",
|
|
week: "Semana",
|
|
day: "Dia",
|
|
list: "Compromissos"
|
|
},
|
|
allDayText: "dia inteiro",
|
|
eventLimitText: function(n) {
|
|
return "mais +" + n;
|
|
}
|
|
});
|