2019-12-11 23:32:19 +08:00
|
|
|
import CalendarLocale from 'rc-picker/lib/locale/vi_VN';
|
2018-10-15 23:09:08 +08:00
|
|
|
import TimePickerLocale from '../../time-picker/locale/vi_VN';
|
2022-05-07 14:31:54 +08:00
|
|
|
import type { PickerLocale } from '../generatePicker';
|
2017-04-27 16:39:46 +08:00
|
|
|
|
|
|
|
// Merge into a locale object
|
2020-03-12 10:49:32 +08:00
|
|
|
const locale: PickerLocale = {
|
2017-07-03 16:57:11 +08:00
|
|
|
lang: {
|
2017-04-27 16:39:46 +08:00
|
|
|
placeholder: 'Chọn thời điểm',
|
2023-03-18 19:11:17 +08:00
|
|
|
yearPlaceholder: 'Chọn năm',
|
|
|
|
quarterPlaceholder: 'Chọn quý',
|
|
|
|
monthPlaceholder: 'Chọn tháng',
|
|
|
|
weekPlaceholder: 'Chọn tuần',
|
2017-04-27 16:39:46 +08:00
|
|
|
rangePlaceholder: ['Ngày bắt đầu', 'Ngày kết thúc'],
|
2023-03-20 13:10:50 +08:00
|
|
|
rangeYearPlaceholder: ['Năm bắt đầu', 'Năm kết thúc'],
|
2023-03-18 19:11:17 +08:00
|
|
|
rangeQuarterPlaceholder: ['Quý bắt đầu', 'Quý kết thúc'],
|
|
|
|
rangeMonthPlaceholder: ['Tháng bắt đầu', 'Tháng kết thúc'],
|
|
|
|
rangeWeekPlaceholder: ['Tuần bắt đầu', 'Tuần kết thúc'],
|
2017-07-03 16:57:11 +08:00
|
|
|
...CalendarLocale,
|
|
|
|
},
|
|
|
|
timePickerLocale: {
|
|
|
|
...TimePickerLocale,
|
|
|
|
},
|
2017-04-27 16:39:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// All settings at:
|
|
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
|
|
|
|
export default locale;
|