UNPKG

725 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
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: function(n) {
23 return "另外 " + n + " 个";
24 },
25 noEventsText: "没有事件显示"
26 };
27
28 return zhCn;
29
30}());