mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
11ebc915eb
* Swedish locale * Create sv_SE.tsx * Create sv_SE.tsx * Create sv_SE.tsx
17 lines
451 B
TypeScript
17 lines
451 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/sv_SE';
|
|
import TimePickerLocale from '../../time-picker/locale/sv_SE';
|
|
import assign from 'object-assign';
|
|
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: 'Välj datum',
|
|
rangePlaceholder: ['Startdatum', 'Slutdatum'],
|
|
}, CalendarLocale),
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
export default locale;
|