zh-cn.global.js 923 B

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