30 lines
934 B
JavaScript
30 lines
934 B
JavaScript
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
||
|
import { commonLocale } from "./common";
|
||
|
var locale = _objectSpread(_objectSpread({}, commonLocale), {}, {
|
||
|
locale: 'zh_CN',
|
||
|
today: '今天',
|
||
|
now: '此刻',
|
||
|
backToToday: '返回今天',
|
||
|
ok: '确定',
|
||
|
timeSelect: '选择时间',
|
||
|
dateSelect: '选择日期',
|
||
|
weekSelect: '选择周',
|
||
|
clear: '清除',
|
||
|
month: '月',
|
||
|
year: '年',
|
||
|
previousMonth: '上个月 (翻页上键)',
|
||
|
nextMonth: '下个月 (翻页下键)',
|
||
|
monthSelect: '选择月份',
|
||
|
yearSelect: '选择年份',
|
||
|
decadeSelect: '选择年代',
|
||
|
previousYear: '上一年 (Control键加左方向键)',
|
||
|
nextYear: '下一年 (Control键加右方向键)',
|
||
|
previousDecade: '上一年代',
|
||
|
nextDecade: '下一年代',
|
||
|
previousCentury: '上一世纪',
|
||
|
nextCentury: '下一世纪',
|
||
|
yearFormat: 'YYYY年',
|
||
|
cellDateFormat: 'D',
|
||
|
monthBeforeYear: false
|
||
|
});
|
||
|
export default locale;
|