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.
23 lines
617 B
23 lines
617 B
9 years ago
|
/**
|
||
|
* Created by Andrey Gayvoronsky on 13/04/16.
|
||
|
*/
|
||
|
|
||
|
import GregorianCalendarLocale from 'gregorian-calendar/lib/locale/ru_RU';
|
||
|
import CalendarLocale from 'rc-calendar/lib/locale/ru_RU';
|
||
|
import TimePickerLocale from '../../time-picker/locale/ru_RU';
|
||
|
|
||
|
let locale = { ...GregorianCalendarLocale };
|
||
|
locale.lang = {
|
||
|
placeholder: 'Выберите дату',
|
||
|
rangePlaceholder: ['Начальная дата', 'Конечная дата'],
|
||
|
...CalendarLocale,
|
||
|
};
|
||
|
|
||
|
locale.timePickerLocale = { ...TimePickerLocale };
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/issues/424
|
||
|
|
||
|
export default locale;
|
||
|
|