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