No Description

zh-cn.js 1.1KB

123456789101112131415161718192021222324252627282930313233
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['zh-cn'] = factory()));
  5. }(this, function () { 'use strict';
  6. var zhCn = {
  7. code: "zh-cn",
  8. week: {
  9. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  10. dow: 1,
  11. doy: 4 // The week that contains Jan 4th is the first week of the year.
  12. },
  13. buttonText: {
  14. prev: "上月",
  15. next: "下月",
  16. today: "今天",
  17. month: "月",
  18. week: "周",
  19. day: "日",
  20. list: "日程"
  21. },
  22. weekLabel: "周",
  23. allDayText: "全天",
  24. eventLimitText: function (n) {
  25. return "另外 " + n + " 个";
  26. },
  27. noEventsMessage: "没有事件显示"
  28. };
  29. return zhCn;
  30. }));