Update locale vi_VN adding Vietnamese translation for Form component validation (#40992)

* add vietnamese form translate

* Update vi_VN.ts

add vietnamese form translate 2
pull/40994/head
lamvananh 2 years ago committed by GitHub
parent 059042b2cd
commit b896d0ede9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,6 +4,8 @@ import DatePicker from '../date-picker/locale/vi_VN';
import type { Locale } from '.'; import type { Locale } from '.';
import TimePicker from '../time-picker/locale/vi_VN'; import TimePicker from '../time-picker/locale/vi_VN';
const typeTemplate = '${label} không phải kiểu ${type} hợp lệ';
const localeValues: Locale = { const localeValues: Locale = {
locale: 'vi', locale: 'vi',
Pagination, Pagination,
@ -32,6 +34,56 @@ const localeValues: Locale = {
itemUnit: 'mục', itemUnit: 'mục',
itemsUnit: 'mục', itemsUnit: 'mục',
}, },
Form: {
optional: '(Tùy chọn)',
defaultValidateMessages: {
default: '${label} không đáp ứng điều kiện quy định',
required: 'Hãy nhập thông tin cho trường ${label}',
enum: '${label} phải có giá trị nằm trong tập [${enum}]',
whitespace: '${label} không được chứa khoảng trắng',
date: {
format: '${label} sai định dạng ngày tháng',
parse: 'Không thể chuyển ${label} sang kiểu Ngày tháng',
invalid: '${label} không phải giá trị Ngày tháng hợp lệ',
},
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} phải dài đúng ${len} ký tự',
min: 'Độ dài tối thiểu trường ${label} là ${min} ký tự',
max: 'Độ dài tối đa trường ${label} là ${max} ký tự',
range: 'Độ dài trường ${label} phải từ ${min} đến ${max} ký tự',
},
number: {
len: '${label} phải bằng ${len}',
min: '${label} phải lớn hơn hoặc bằng ${min}',
max: '${label} phải nhỏ hơn hoặc bằng ${max}',
range: '${label} phải nằm trong khoảng ${min}-${max}',
},
array: {
len: 'Mảng ${label} phải có ${len} phần tử ',
min: 'Mảng ${label} phải chứa tối thiểu ${min} phần tử ',
max: 'Mảng ${label} phải chứa tối đa ${max} phần tử ',
range: 'Mảng ${label} phải chứa từ ${min}-${max} phần tử',
},
pattern: {
mismatch: '${label} không thỏa mãn mẫu kiểm tra ${pattern}',
},
},
},
Upload: { Upload: {
uploading: 'Đang tải lên...', uploading: 'Đang tải lên...',
removeFile: 'Gỡ bỏ tập tin', removeFile: 'Gỡ bỏ tập tin',

Loading…
Cancel
Save