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.
146 lines
3.7 KiB
146 lines
3.7 KiB
5 years ago
|
/* eslint-disable no-template-curly-in-string */
|
||
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/zh_CN';
|
||
|
import Calendar from '../calendar/locale/zh_CN';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/zh_CN';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/zh_CN';
|
||
5 years ago
|
|
||
5 years ago
|
const typeTemplate = '${label}不是一个有效的${type}';
|
||
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'zh-cn',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
4 years ago
|
// locales for all components
|
||
5 years ago
|
global: {
|
||
|
placeholder: '请选择',
|
||
|
},
|
||
|
Table: {
|
||
|
filterTitle: '筛选',
|
||
|
filterConfirm: '确定',
|
||
|
filterReset: '重置',
|
||
4 years ago
|
filterEmptyText: '无筛选项',
|
||
3 years ago
|
filterCheckall: '全选',
|
||
|
filterSearchPlaceholder: '在筛选项中搜索',
|
||
5 years ago
|
selectAll: '全选当页',
|
||
|
selectInvert: '反选当页',
|
||
4 years ago
|
selectNone: '清空所有',
|
||
5 years ago
|
selectionAll: '全选所有',
|
||
5 years ago
|
sortTitle: '排序',
|
||
|
expand: '展开行',
|
||
|
collapse: '关闭行',
|
||
5 years ago
|
triggerDesc: '点击降序',
|
||
|
triggerAsc: '点击升序',
|
||
|
cancelSort: '取消排序',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
|
okText: '确定',
|
||
|
cancelText: '取消',
|
||
|
justOkText: '知道了',
|
||
|
},
|
||
2 years ago
|
Tour: {
|
||
|
Next: '下一步',
|
||
|
Previous: '上一步',
|
||
|
Finish: '结束导览',
|
||
|
},
|
||
5 years ago
|
Popconfirm: {
|
||
|
cancelText: '取消',
|
||
|
okText: '确定',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: '请输入搜索内容',
|
||
|
itemUnit: '项',
|
||
|
itemsUnit: '项',
|
||
5 years ago
|
remove: '删除',
|
||
|
selectCurrent: '全选当页',
|
||
|
removeCurrent: '删除当页',
|
||
|
selectAll: '全选所有',
|
||
|
removeAll: '删除全部',
|
||
|
selectInvert: '反选当页',
|
||
5 years ago
|
},
|
||
|
Upload: {
|
||
|
uploading: '文件上传中',
|
||
|
removeFile: '删除文件',
|
||
|
uploadError: '上传错误',
|
||
|
previewFile: '预览文件',
|
||
5 years ago
|
downloadFile: '下载文件',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: '暂无数据',
|
||
|
},
|
||
|
Icon: {
|
||
|
icon: '图标',
|
||
|
},
|
||
|
Text: {
|
||
|
edit: '编辑',
|
||
|
copy: '复制',
|
||
|
copied: '复制成功',
|
||
|
expand: '展开',
|
||
|
},
|
||
|
PageHeader: {
|
||
|
back: '返回',
|
||
|
},
|
||
5 years ago
|
Form: {
|
||
4 years ago
|
optional: '(可选)',
|
||
5 years ago
|
defaultValidateMessages: {
|
||
|
default: '字段验证错误${label}',
|
||
|
required: '请输入${label}',
|
||
|
enum: '${label}必须是其中一个[${enum}]',
|
||
|
whitespace: '${label}不能为空字符',
|
||
|
date: {
|
||
|
format: '${label}日期格式无效',
|
||
|
parse: '${label}不能转换为日期',
|
||
|
invalid: '${label}是一个无效日期',
|
||
|
},
|
||
|
types: {
|
||
|
string: typeTemplate,
|
||
|
method: typeTemplate,
|
||
|
array: typeTemplate,
|
||
|
object: typeTemplate,
|
||
|
number: typeTemplate,
|
||
|
date: typeTemplate,
|
||
|
boolean: typeTemplate,
|
||
|
integer: typeTemplate,
|
||
|
float: typeTemplate,
|
||
|
regexp: typeTemplate,
|
||
|
email: typeTemplate,
|
||
|
url: typeTemplate,
|
||
|
hex: typeTemplate,
|
||
|
},
|
||
|
string: {
|
||
|
len: '${label}须为${len}个字符',
|
||
|
min: '${label}最少${min}个字符',
|
||
|
max: '${label}最多${max}个字符',
|
||
|
range: '${label}须在${min}-${max}字符之间',
|
||
|
},
|
||
|
number: {
|
||
|
len: '${label}必须等于${len}',
|
||
|
min: '${label}最小值为${min}',
|
||
|
max: '${label}最大值为${max}',
|
||
|
range: '${label}须在${min}-${max}之间',
|
||
|
},
|
||
|
array: {
|
||
|
len: '须为${len}个${label}',
|
||
|
min: '最少${min}个${label}',
|
||
|
max: '最多${max}个${label}',
|
||
|
range: '${label}数量须在${min}-${max}之间',
|
||
|
},
|
||
|
pattern: {
|
||
|
mismatch: '${label}与模式不匹配${pattern}',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
4 years ago
|
Image: {
|
||
|
preview: '预览',
|
||
|
},
|
||
2 years ago
|
QRCode: {
|
||
|
expired: '二维码过期',
|
||
|
refresh: '点击刷新',
|
||
|
},
|
||
5 years ago
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|