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.
23 lines
531 B
23 lines
531 B
import CalendarLocale from '../../vc-calendar/src/locale/en_US'
|
|
import TimePickerLocale from '../../time-picker/locale/en_US'
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: {
|
|
placeholder: 'Chọn thời điểm',
|
|
rangePlaceholder: [
|
|
'Ngày bắt đầu', 'Ngày kết thúc'
|
|
],
|
|
...CalendarLocale
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale
|
|
}
|
|
}
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/lo
|
|
// cale/example.json
|
|
|
|
export default locale
|