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.
20 lines
458 B
20 lines
458 B
6 years ago
|
import CalendarLocale from '../../vc-calendar/src/locale/nl_BE';
|
||
|
import TimePickerLocale from '../../time-picker/locale/nl_BE';
|
||
7 years ago
|
|
||
|
// Merge into a locale object
|
||
|
const locale = {
|
||
|
lang: {
|
||
|
placeholder: 'Selecteer datum',
|
||
6 years ago
|
rangePlaceholder: ['Begin datum', 'Eind datum'],
|
||
7 years ago
|
...CalendarLocale,
|
||
7 years ago
|
},
|
||
|
timePickerLocale: {
|
||
7 years ago
|
...TimePickerLocale,
|
||
|
},
|
||
6 years ago
|
};
|
||
7 years ago
|
|
||
5 years ago
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/issues/424
|
||
7 years ago
|
|
||
6 years ago
|
export default locale;
|