You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
927 B
19 lines
927 B
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
|
|
typeof define === 'function' && define.amd ? define(['jquery'], factory) :
|
|
(factory(global.jQuery));
|
|
}(this, (function ($) {
|
|
'use strict';
|
|
|
|
$.fn.datepicker.languages['zh-CN'] = {
|
|
format: 'yyyy年mm月dd日',
|
|
days: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
|
|
daysShort: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
|
|
daysMin: ['日', '一', '二', '三', '四', '五', '六'],
|
|
months: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
|
|
monthsShort: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
|
|
weekStart: 1,
|
|
yearFirst: true,
|
|
yearSuffix: '年'
|
|
};
|
|
})));
|