mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
9c17f94cab
* feat: Table supports filterMode="tree-select" * add tree component * fix detail * use tree * add @table-filter-dropdown-max-height * feat: add check all to filter tree * feat: add search * feat: use filterTreeNode * fix code style * fix style * style: tree node selected bg * fix demo * feat: add filterSearch * fix: clear search value after close filter dropdown * update snapshot * code style * fix test case * chore: new FilterDropdown.tsx file * chore: searchValueMatched function * add test case * test: add test cases * feat: reset only works on dropdown state now * chore: add table locales * fix search input width * tweak style * style: update transfer search input style * perf: improve table perf * fix: filterMuiltiple={false} * test: add test for selecting * chore: fix table filter selection * fix lint * remove unused code * fix: style dependencies * test: turn off bail config for duplidated-package-plugin in feature branch * Update components/table/hooks/useFilter/FilterSearch.tsx Co-authored-by: Peach <scdzwyxst@gmail.com> * fix locale link * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Peach <scdzwyxst@gmail.com>
136 lines
3.5 KiB
TypeScript
136 lines
3.5 KiB
TypeScript
/* eslint-disable no-template-curly-in-string */
|
|
import Pagination from 'rc-pagination/lib/locale/zh_CN';
|
|
import DatePicker from '../date-picker/locale/zh_CN';
|
|
import TimePicker from '../time-picker/locale/zh_CN';
|
|
import Calendar from '../calendar/locale/zh_CN';
|
|
import { Locale } from '../locale-provider';
|
|
|
|
const typeTemplate = '${label}不是一个有效的${type}';
|
|
|
|
const localeValues: Locale = {
|
|
locale: 'zh-cn',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
// locales for all components
|
|
global: {
|
|
placeholder: '请选择',
|
|
},
|
|
Table: {
|
|
filterTitle: '筛选',
|
|
filterConfirm: '确定',
|
|
filterReset: '重置',
|
|
filterEmptyText: '无筛选项',
|
|
filterCheckall: '全选',
|
|
filterSearchPlaceholder: '在筛选项中搜索',
|
|
selectAll: '全选当页',
|
|
selectInvert: '反选当页',
|
|
selectNone: '清空所有',
|
|
selectionAll: '全选所有',
|
|
sortTitle: '排序',
|
|
expand: '展开行',
|
|
collapse: '关闭行',
|
|
triggerDesc: '点击降序',
|
|
triggerAsc: '点击升序',
|
|
cancelSort: '取消排序',
|
|
},
|
|
Modal: {
|
|
okText: '确定',
|
|
cancelText: '取消',
|
|
justOkText: '知道了',
|
|
},
|
|
Popconfirm: {
|
|
cancelText: '取消',
|
|
okText: '确定',
|
|
},
|
|
Transfer: {
|
|
searchPlaceholder: '请输入搜索内容',
|
|
itemUnit: '项',
|
|
itemsUnit: '项',
|
|
remove: '删除',
|
|
selectCurrent: '全选当页',
|
|
removeCurrent: '删除当页',
|
|
selectAll: '全选所有',
|
|
removeAll: '删除全部',
|
|
selectInvert: '反选当页',
|
|
},
|
|
Upload: {
|
|
uploading: '文件上传中',
|
|
removeFile: '删除文件',
|
|
uploadError: '上传错误',
|
|
previewFile: '预览文件',
|
|
downloadFile: '下载文件',
|
|
},
|
|
Empty: {
|
|
description: '暂无数据',
|
|
},
|
|
Icon: {
|
|
icon: '图标',
|
|
},
|
|
Text: {
|
|
edit: '编辑',
|
|
copy: '复制',
|
|
copied: '复制成功',
|
|
expand: '展开',
|
|
},
|
|
PageHeader: {
|
|
back: '返回',
|
|
},
|
|
Form: {
|
|
optional: '(可选)',
|
|
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}',
|
|
},
|
|
},
|
|
},
|
|
Image: {
|
|
preview: '预览',
|
|
},
|
|
};
|
|
|
|
export default localeValues;
|