You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
594 B
21 lines
594 B
5 years ago
|
import CalendarLocale from 'rc-picker/lib/locale/mn_MN';
|
||
6 years ago
|
import TimePickerLocale from '../../time-picker/locale/mn_MN';
|
||
3 years ago
|
import type { PickerLocale } from '../generatePicker';
|
||
6 years ago
|
|
||
|
// Merge into a locale object
|
||
5 years ago
|
const locale: PickerLocale = {
|
||
6 years ago
|
lang: {
|
||
|
placeholder: 'Огноо сонгох',
|
||
|
rangePlaceholder: ['Эхлэх огноо', 'Дуусах огноо'],
|
||
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||
|
|
||
|
export default locale;
|