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
469 B
20 lines
469 B
6 years ago
|
import CalendarLocale from '../../vc-calendar/src/locale/fr_BE';
|
||
|
import TimePickerLocale from '../../time-picker/locale/fr_BE';
|
||
7 years ago
|
|
||
|
// Merge into a locale object
|
||
|
const locale = {
|
||
|
lang: {
|
||
|
placeholder: 'Sélectionner une date',
|
||
6 years ago
|
rangePlaceholder: ['Date de début', 'Date de fin'],
|
||
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;
|