mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
20 lines
498 B
TypeScript
20 lines
498 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/ca_ES';
|
|
import TimePickerLocale from '../../time-picker/locale/ca_ES';
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: {
|
|
placeholder: 'Seleccionar data',
|
|
rangePlaceholder: ['Data inicial', 'Data final'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|