mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
19 lines
550 B
JavaScript
19 lines
550 B
JavaScript
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;
|