You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
468 B
26 lines
468 B
2 years ago
|
FullCalendar.globalLocales.push(function () {
|
||
|
'use strict';
|
||
|
|
||
|
var ptBr = {
|
||
|
code: 'pt-br',
|
||
|
buttonText: {
|
||
|
prev: 'Anterior',
|
||
|
next: 'Próximo',
|
||
|
today: 'Hoje',
|
||
|
month: 'Mês',
|
||
|
week: 'Semana',
|
||
|
day: 'Dia',
|
||
|
list: 'Lista',
|
||
|
},
|
||
|
weekText: 'Sm',
|
||
|
allDayText: 'dia inteiro',
|
||
|
moreLinkText: function(n) {
|
||
|
return 'mais +' + n
|
||
|
},
|
||
|
noEventsText: 'Não há eventos para mostrar',
|
||
|
};
|
||
|
|
||
|
return ptBr;
|
||
|
|
||
|
}());
|