feat: Adds zh_TW localisations for Form (#24065)

* Update zh_TW.tsx

* Remove spaces

* Update zh_TW.tsx

* Update snapshot

* replace indexOf() with ||
This commit is contained in:
wx1322 2020-05-12 15:00:24 +08:00 committed by GitHub
parent fdcbfc909d
commit 49f5ed7764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 79 additions and 8 deletions

View File

@ -220,7 +220,7 @@ describe('Locale Provider', () => {
'.ant-btn:not(.ant-btn-primary) span',
)[0].innerHTML;
let okButtonText = currentConfirmNode.querySelectorAll('.ant-btn-primary span')[0].innerHTML;
if (locale.locale === 'zh-cn') {
if (locale.locale.indexOf('zh-') === 0) {
cancelButtonText = cancelButtonText.replace(' ', '');
okButtonText = okButtonText.replace(' ', '');
}

View File

@ -1,30 +1,43 @@
/* eslint-disable no-template-curly-in-string */
import Pagination from 'rc-pagination/lib/locale/zh_TW';
import DatePicker from '../date-picker/locale/zh_TW';
import TimePicker from '../time-picker/locale/zh_TW';
import Calendar from '../calendar/locale/zh_TW';
import { Locale } from '../locale-provider';
const typeTemplate = '${label}不是一個有效的${type}';
const localeValues: Locale = {
locale: 'zh-tw',
Pagination,
DatePicker,
TimePicker,
Calendar,
global: {
placeholder: '請選擇',
},
Table: {
filterTitle: '篩選器',
filterConfirm: '確 定',
filterReset: '重 置',
filterConfirm: '確定',
filterReset: '重置',
selectAll: '全部選取',
selectInvert: '反向選取',
selectionAll: '全選所有',
sortTitle: '排序',
expand: '展開行',
collapse: '關閉行',
triggerDesc: '點擊降序',
triggerAsc: '點擊升序',
cancelSort: '取消排序',
},
Modal: {
okText: '確 定',
cancelText: '取 消',
justOkText: 'OK',
okText: '確定',
cancelText: '取消',
justOkText: '知道了',
},
Popconfirm: {
okText: '確 定',
cancelText: '取 消',
okText: '確定',
cancelText: '取消',
},
Transfer: {
searchPlaceholder: '搜尋資料',
@ -41,9 +54,67 @@ const localeValues: Locale = {
Empty: {
description: '無此資料',
},
Icon: {
icon: '圖標',
},
Text: {
edit: '編輯',
copy: '複製',
copied: '複製成功',
expand: '展開',
},
PageHeader: {
back: '返回',
},
Form: {
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}',
},
},
},
};
export default localeValues;