2019-12-11 23:32:19 +08:00
|
|
|
import CalendarLocale from 'rc-picker/lib/locale/fi_FI';
|
2017-04-10 21:52:48 +08:00
|
|
|
import TimePickerLocale from '../../time-picker/locale/fi_FI';
|
2020-03-12 10:49:32 +08:00
|
|
|
import { PickerLocale } from '../generatePicker';
|
2017-04-10 21:52:48 +08:00
|
|
|
|
|
|
|
// Merge into a locale object
|
2020-03-12 10:49:32 +08:00
|
|
|
const locale: PickerLocale = {
|
2017-07-03 16:57:11 +08:00
|
|
|
lang: {
|
2017-04-10 21:52:48 +08:00
|
|
|
placeholder: 'Valitse päivä',
|
|
|
|
rangePlaceholder: ['Alku päivä', 'Loppu päivä'],
|
2017-07-03 16:57:11 +08:00
|
|
|
...CalendarLocale,
|
|
|
|
},
|
|
|
|
timePickerLocale: {
|
|
|
|
...TimePickerLocale,
|
|
|
|
},
|
2017-04-10 21:52:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// All settings at:
|
|
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
|
|
|
|
export default locale;
|