您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var ca = {
  4. code: 'ca',
  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: 'Següent',
  12. today: 'Avui',
  13. month: 'Mes',
  14. week: 'Setmana',
  15. day: 'Dia',
  16. list: 'Agenda',
  17. },
  18. weekText: 'Set',
  19. allDayText: 'Tot el dia',
  20. moreLinkText: 'més',
  21. noEventsText: 'No hi ha esdeveniments per mostrar',
  22. };
  23. return ca;
  24. }());