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

31 行
726B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var zhCn = {
  4. code: 'zh-cn',
  5. week: {
  6. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  7. dow: 1, // Monday is the first day of the week.
  8. doy: 4, // The week that contains Jan 4th is the first week of the year.
  9. },
  10. buttonText: {
  11. prev: '上月',
  12. next: '下月',
  13. today: '今天',
  14. month: '月',
  15. week: '周',
  16. day: '日',
  17. list: '日程',
  18. },
  19. weekText: '周',
  20. allDayText: '全天',
  21. moreLinkText: function(n) {
  22. return '另外 ' + n + ' 个'
  23. },
  24. noEventsText: '没有事件显示',
  25. };
  26. return zhCn;
  27. }());