You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/vi_VN';
|
||
|
import Calendar from '../calendar/locale/vi_VN';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/vi_VN';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/vi_VN';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'vi',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
Table: {
|
||
2 years ago
|
filterTitle: 'Bộ lọc',
|
||
|
filterConfirm: 'Đồng ý',
|
||
|
filterReset: 'Bỏ lọc',
|
||
|
selectAll: 'Chọn tất cả',
|
||
|
selectInvert: 'Chọn ngược lại',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
2 years ago
|
okText: 'Đồng ý',
|
||
|
cancelText: 'Hủy',
|
||
5 years ago
|
justOkText: 'OK',
|
||
|
},
|
||
|
Popconfirm: {
|
||
2 years ago
|
okText: 'Đồng ý',
|
||
|
cancelText: 'Hủy',
|
||
5 years ago
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
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',
|
||
2 years ago
|
previewFile: 'Xem trước tập tin',
|
||
5 years ago
|
downloadFile: 'Tải tập tin',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'Trống',
|
||
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|