diff --git a/components/locale/vi_VN.ts b/components/locale/vi_VN.ts index a0363e3f82..d8168571ac 100644 --- a/components/locale/vi_VN.ts +++ b/components/locale/vi_VN.ts @@ -4,6 +4,8 @@ import DatePicker from '../date-picker/locale/vi_VN'; import type { Locale } from '.'; import TimePicker from '../time-picker/locale/vi_VN'; +const typeTemplate = '${label} không phải kiểu ${type} hợp lệ'; + const localeValues: Locale = { locale: 'vi', Pagination, @@ -32,6 +34,56 @@ const localeValues: Locale = { itemUnit: '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: { uploading: 'Đang tải lên...', removeFile: 'Gỡ bỏ tập tin',