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.
34 lines
911 B
34 lines
911 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'vi_VN',
|
|
today: 'Hôm nay',
|
|
now: 'Bây giờ',
|
|
backToToday: 'Trở về hôm nay',
|
|
ok: 'Ok',
|
|
clear: 'Xóa',
|
|
month: 'Tháng',
|
|
year: 'Năm',
|
|
timeSelect: 'Chọn thời gian',
|
|
dateSelect: 'Chọn ngày',
|
|
weekSelect: 'Chọn tuần',
|
|
monthSelect: 'Chọn tháng',
|
|
yearSelect: 'Chọn năm',
|
|
decadeSelect: 'Chọn thập kỷ',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Tháng trước (PageUp)',
|
|
nextMonth: 'Tháng sau (PageDown)',
|
|
previousYear: 'Năm trước (Control + left)',
|
|
nextYear: 'Năm sau (Control + right)',
|
|
previousDecade: 'Thập kỷ trước',
|
|
nextDecade: 'Thập kỷ sau',
|
|
previousCentury: 'Thế kỷ trước',
|
|
nextCentury: 'Thế kỷ sau',
|
|
};
|
|
|
|
export default locale;
|