2020-08-21 18:26:36 +08:00
|
|
|
import CalendarLocale from 'rc-picker/lib/locale/gl_ES';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/gl_ES';
|
2022-05-07 14:31:54 +08:00
|
|
|
import type { PickerLocale } from '../generatePicker';
|
2020-08-21 18:26:36 +08:00
|
|
|
|
|
|
|
// Merge into a locale object
|
|
|
|
const locale: PickerLocale = {
|
|
|
|
lang: {
|
|
|
|
placeholder: 'Escolla 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;
|