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

12345678910111213141516171819202122232425262728
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var cy = {
  4. code: 'cy',
  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: 'Blaenorol',
  11. next: 'Nesaf',
  12. today: 'Heddiw',
  13. year: 'Blwyddyn',
  14. month: 'Mis',
  15. week: 'Wythnos',
  16. day: 'Dydd',
  17. list: 'Rhestr',
  18. },
  19. weekText: 'Wythnos',
  20. allDayText: 'Trwy\'r dydd',
  21. moreLinkText: 'Mwy',
  22. noEventsText: 'Dim digwyddiadau',
  23. };
  24. return cy;
  25. }());