2016-04-14 11:57:59 +08:00
|
|
|
/**
|
|
|
|
* Created by Andrey Gayvoronsky on 13/04/16.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import CalendarLocale from 'rc-calendar/lib/locale/ru_RU';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/ru_RU';
|
|
|
|
|
2016-09-09 13:55:21 +08:00
|
|
|
const locale = {
|
2017-07-03 16:57:11 +08:00
|
|
|
lang: {
|
2016-09-09 13:55:21 +08:00
|
|
|
placeholder: 'Выберите дату',
|
|
|
|
rangePlaceholder: ['Начальная дата', 'Конечная дата'],
|
2017-07-03 16:57:11 +08:00
|
|
|
...CalendarLocale,
|
|
|
|
},
|
|
|
|
timePickerLocale: {
|
|
|
|
...TimePickerLocale,
|
|
|
|
},
|
2016-09-09 13:55:21 +08:00
|
|
|
};
|
2016-04-14 11:57:59 +08:00
|
|
|
|
|
|
|
// All settings at:
|
2017-01-04 10:08:35 +08:00
|
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
2016-04-14 11:57:59 +08:00
|
|
|
|
|
|
|
export default locale;
|