mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
18 lines
485 B
TypeScript
18 lines
485 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/de_DE';
|
|
import TimePickerLocale from '../../time-picker/locale/de_DE';
|
|
import assign from 'object-assign';
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: 'Datum auswählen',
|
|
rangePlaceholder: ['Startdatum', 'Enddatum'],
|
|
}, CalendarLocale),
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
export default locale;
|