Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 2 Jahren
123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var pt = {
  4. code: 'pt',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Anterior',
  11. next: 'Seguinte',
  12. today: 'Hoje',
  13. month: 'Mês',
  14. week: 'Semana',
  15. day: 'Dia',
  16. list: 'Agenda',
  17. },
  18. weekText: 'Sem',
  19. allDayText: 'Todo o dia',
  20. moreLinkText: 'mais',
  21. noEventsText: 'Não há eventos para mostrar',
  22. };
  23. return pt;
  24. }());