root 2bb01ae691
All checks were successful
continuous-integration/drone/push Build is passing
🔁 Sync from production: settings and Docker updates
2025-05-15 06:30:43 +00:00

26 lines
475 B
JavaScript

FullCalendar.globalLocales.push(function () {
'use strict';
var ptBr = {
code: "pt-br",
buttonText: {
prev: "Anterior",
next: "Pr\xF3ximo",
today: "Hoje",
month: "M\xEAs",
week: "Semana",
day: "Dia",
list: "Lista"
},
weekText: "Sm",
allDayText: "dia inteiro",
moreLinkText: function(n) {
return "mais +" + n;
},
noEventsText: "N\xE3o h\xE1 eventos para mostrar"
};
return ptBr;
}());