mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
9aec72c395
* chore: remove useless tsx support * add * add * style * fix lint * fix lint * fix lint * update locale entry * update locale entry * update locale entry * delete useless style
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import Pagination from 'rc-pagination/lib/locale/vi_VN';
|
|
import Calendar from '../calendar/locale/vi_VN';
|
|
import DatePicker from '../date-picker/locale/vi_VN';
|
|
import type { Locale } from '.';
|
|
import TimePicker from '../time-picker/locale/vi_VN';
|
|
|
|
const localeValues: Locale = {
|
|
locale: 'vi',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Table: {
|
|
filterTitle: 'Bộ lọc',
|
|
filterConfirm: 'Đồng ý',
|
|
filterReset: 'Bỏ lọc',
|
|
selectAll: 'Chọn tất cả',
|
|
selectInvert: 'Chọn ngược lại',
|
|
},
|
|
Modal: {
|
|
okText: 'Đồng ý',
|
|
cancelText: 'Hủy',
|
|
justOkText: 'OK',
|
|
},
|
|
Popconfirm: {
|
|
okText: 'Đồng ý',
|
|
cancelText: 'Hủy',
|
|
},
|
|
Transfer: {
|
|
titles: ['', ''],
|
|
searchPlaceholder: 'Tìm ở đây',
|
|
itemUnit: 'mục',
|
|
itemsUnit: 'mục',
|
|
},
|
|
Upload: {
|
|
uploading: 'Đang tải lên...',
|
|
removeFile: 'Gỡ bỏ tập tin',
|
|
uploadError: 'Lỗi tải lên',
|
|
previewFile: 'Xem trước tập tin',
|
|
downloadFile: 'Tải tập tin',
|
|
},
|
|
Empty: {
|
|
description: 'Trống',
|
|
},
|
|
};
|
|
|
|
export default localeValues;
|