mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
b69a6886d7
* locale: Add Norwegian Bokmål locales to Ant Design * Add Vemund Santi to authors. * docs: add Norwegian to list of i18n language examples * test: add tests for Norwegian Bokmål * Update dependencies. Use locales from rc-pagination.
20 lines
487 B
TypeScript
20 lines
487 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/nb_NO';
|
|
import TimePickerLocale from '../../time-picker/locale/nb_NO';
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: {
|
|
placeholder: 'Velg dato',
|
|
rangePlaceholder: ['Startdato', 'Sluttdato'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|