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.

123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var esUs = {
  4. code: 'es',
  5. week: {
  6. dow: 0, // Sunday is the first day of the week.
  7. doy: 6, // The week that contains Jan 1st is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Ant',
  11. next: 'Sig',
  12. today: 'Hoy',
  13. month: 'Mes',
  14. week: 'Semana',
  15. day: 'Día',
  16. list: 'Agenda',
  17. },
  18. weekText: 'Sm',
  19. allDayText: 'Todo el día',
  20. moreLinkText: 'más',
  21. noEventsText: 'No hay eventos para mostrar',
  22. };
  23. return esUs;
  24. }());