mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-25 00:08:27 +08:00
28961856aa
* Added Dutch locale and bumped dep versions so they include Dutch locales Bumped versions so they include Dutch locales - rc-calendar to ~7.6.2 - rc-pagination to ~1.6.6 * Added dutch locale to LocaleProvider test
18 lines
492 B
TypeScript
18 lines
492 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/nl_NL';
|
|
import TimePickerLocale from '../../time-picker/locale/nl_NL';
|
|
import assign from 'object-assign';
|
|
|
|
// 统一合并为完整的 Locale
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: 'Selecteer datum',
|
|
rangePlaceholder: ['Begin datum', 'Eind datum'],
|
|
}, CalendarLocale),
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
export default locale;
|