mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
/**
|
|
* Created by Andrey Gayvoronsky on 13/04/16.
|
|
*/
|
|
import TimepickerLocale from 'rc-time-picker/lib/locale/ru_RU';
|
|
import assign from 'object-assign';
|
|
const locale = assign({}, {
|
|
placeholder: 'Выберите время',
|
|
}, TimepickerLocale);
|
|
|
|
export default locale;
|