ant-design/components/date-picker/locale/ru_RU.tsx
Ivan Yakovlev b91b30c48a
chore: localization update (#25958)
* chore: add missed variable (#25954)

* chore: add missed variables (#25954)

* chore: transform to uppercase (#25954)

* chore: add missed varibles (#25954)

Co-authored-by: Ivan.Yakovlev <ivan.yakovlev@pochtavip.com>
2020-08-02 13:41:44 +08:00

32 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Created by Andrey Gayvoronsky on 13/04/16.
*/
import CalendarLocale from 'rc-picker/lib/locale/ru_RU';
import TimePickerLocale from '../../time-picker/locale/ru_RU';
import { PickerLocale } from '../generatePicker';
// Merge into a locale object
const locale: PickerLocale = {
lang: {
placeholder: 'Выберите дату',
yearPlaceholder: 'Выберите год',
quarterPlaceholder: 'Выберите квартал',
monthPlaceholder: 'Выберите месяц',
weekPlaceholder: 'Выберите неделю',
rangePlaceholder: ['Начальная дата', 'Конечная дата'],
rangeYearPlaceholder: ['Начальный годr', 'Год окончания'],
rangeMonthPlaceholder: ['Начальный месяц', 'Конечный месяц'],
rangeWeekPlaceholder: ['Начальная неделя', 'Конечная неделя'],
...CalendarLocale,
},
timePickerLocale: {
...TimePickerLocale,
},
};
// All settings at:
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
export default locale;