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.
28 lines
852 B
28 lines
852 B
5 years ago
|
import CalendarLocale from 'rc-picker/lib/locale/nl_BE';
|
||
8 years ago
|
import TimePickerLocale from '../../time-picker/locale/nl_BE';
|
||
3 years ago
|
import type { PickerLocale } from '../generatePicker';
|
||
8 years ago
|
|
||
|
// Merge into a locale object
|
||
5 years ago
|
const locale: PickerLocale = {
|
||
8 years ago
|
lang: {
|
||
4 years ago
|
monthPlaceholder: 'Selecteer maand',
|
||
8 years ago
|
placeholder: 'Selecteer datum',
|
||
4 years ago
|
quarterPlaceholder: 'Selecteer kwartaal',
|
||
|
rangeMonthPlaceholder: ['Begin maand', 'Eind maand'],
|
||
8 years ago
|
rangePlaceholder: ['Begin datum', 'Eind datum'],
|
||
4 years ago
|
rangeWeekPlaceholder: ['Begin week', 'Eind week'],
|
||
|
rangeYearPlaceholder: ['Begin jaar', 'Eind jaar'],
|
||
|
weekPlaceholder: 'Selecteer week',
|
||
|
yearPlaceholder: 'Selecteer jaar',
|
||
8 years ago
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
8 years ago
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/issues/424
|
||
|
|
||
|
export default locale;
|