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.
21 lines
527 B
21 lines
527 B
5 years ago
|
import CalendarLocale from 'rc-picker/lib/locale/it_IT';
|
||
8 years ago
|
import TimePickerLocale from '../../time-picker/locale/it_IT';
|
||
3 years ago
|
import type { PickerLocale } from '../generatePicker';
|
||
8 years ago
|
|
||
|
// Merge into a locale object
|
||
5 years ago
|
const locale: PickerLocale = {
|
||
8 years ago
|
lang: {
|
||
8 years ago
|
placeholder: 'Selezionare la data',
|
||
6 years ago
|
rangePlaceholder: ["Data d'inizio", 'Data di fine'],
|
||
8 years ago
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
8 years ago
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/issues/424
|
||
|
|
||
|
export default locale;
|