ant-design/components/date-picker/locale/ru_RU.tsx

23 lines
562 B
TypeScript
Raw Normal View History

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';
const locale = {
lang: {
placeholder: 'Выберите дату',
rangePlaceholder: ['Начальная дата', 'Конечная дата'],
...CalendarLocale,
},
timePickerLocale: {
...TimePickerLocale,
},
};
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;