21 lines
529 B
Vue
21 lines
529 B
Vue
|
import CalendarLocale from '../../vc-picker/locale/it_IT';
|
||
|
import TimePickerLocale from '../../time-picker/locale/it_IT';
|
||
|
import type { PickerLocale } from '../generatePicker';
|
||
|
|
||
|
// Merge into a locale object
|
||
|
const locale: PickerLocale = {
|
||
|
lang: {
|
||
|
placeholder: 'Selezionare la data',
|
||
|
rangePlaceholder: ["Data d'inizio", 'Data di fine'],
|
||
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/issues/424
|
||
|
|
||
|
export default locale;
|