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