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.

2 years ago
12345678910111213141516171819202122232425
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var ptBr = {
  4. code: 'pt-br',
  5. buttonText: {
  6. prev: 'Anterior',
  7. next: 'Próximo',
  8. today: 'Hoje',
  9. month: 'Mês',
  10. week: 'Semana',
  11. day: 'Dia',
  12. list: 'Lista',
  13. },
  14. weekText: 'Sm',
  15. allDayText: 'dia inteiro',
  16. moreLinkText: function(n) {
  17. return 'mais +' + n
  18. },
  19. noEventsText: 'Não há eventos para mostrar',
  20. };
  21. return ptBr;
  22. }());