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.
|
|
|
import GregorianCalendarLocale from 'gregorian-calendar/lib/locale/en_US';
|
|
|
|
import CalendarLocale from 'rc-calendar/lib/locale/en_US';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/en_US';
|
|
|
|
|
|
|
|
// 统一合并为完整的 Locale
|
|
|
|
const locale = { ...GregorianCalendarLocale };
|
|
|
|
locale.lang = {
|
|
|
|
placeholder: 'Select date',
|
|
|
|
rangePlaceholder: ['Start date', 'End date'],
|
|
|
|
...CalendarLocale,
|
|
|
|
};
|
|
|
|
|
|
|
|
locale.timePickerLocale = { ...TimePickerLocale };
|
|
|
|
|
|
|
|
// All settings at:
|
|
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
|
|
|
|
export default locale;
|