zh-cn.js 690 B

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