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.
25 lines
468 B
25 lines
468 B
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; |
|
|
|
}());
|
|
|