mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
18 lines
498 B
TypeScript
18 lines
498 B
TypeScript
|
import CalendarLocale from 'rc-calendar/lib/locale/fr_FR';
|
||
|
import TimePickerLocale from '../../time-picker/locale/fr_FR';
|
||
|
import assign from 'object-assign';
|
||
|
|
||
|
// Merge into a locale object
|
||
|
const locale = {
|
||
|
lang: assign({
|
||
|
placeholder: 'Sélectionner une date',
|
||
|
rangePlaceholder: ['Date de début', 'Date de fin'],
|
||
|
}, CalendarLocale),
|
||
|
timePickerLocale: assign({}, TimePickerLocale),
|
||
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/issues/424
|
||
|
|
||
|
export default locale;
|