2017-01-04 10:05:48 +08:00
|
|
|
import CalendarLocale from 'rc-calendar/lib/locale/sv_SE';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/sv_SE';
|
|
|
|
|
|
|
|
const locale = {
|
2017-07-03 16:57:11 +08:00
|
|
|
lang: {
|
2017-01-04 10:05:48 +08:00
|
|
|
placeholder: 'Välj datum',
|
|
|
|
rangePlaceholder: ['Startdatum', 'Slutdatum'],
|
2017-07-03 16:57:11 +08:00
|
|
|
...CalendarLocale,
|
|
|
|
},
|
|
|
|
timePickerLocale: {
|
|
|
|
...TimePickerLocale,
|
|
|
|
},
|
2017-01-04 10:05:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// All settings at:
|
2017-01-04 10:08:35 +08:00
|
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
2017-01-04 10:05:48 +08:00
|
|
|
|
|
|
|
export default locale;
|