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