mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
18 lines
537 B
TypeScript
18 lines
537 B
TypeScript
|
import CalendarLocale from 'rc-calendar/lib/locale/en_US';
|
|||
|
import TimePickerLocale from '../../time-picker/locale/tr_TR';
|
|||
|
import assign from 'object-assign';
|
|||
|
|
|||
|
// Merge into a locale object
|
|||
|
const locale = {
|
|||
|
lang: assign({
|
|||
|
placeholder: 'Tarih Seç',
|
|||
|
rangePlaceholder: ['Başlangıç Tarihi', 'Bitiş Tarihi'],
|
|||
|
}, CalendarLocale),
|
|||
|
timePickerLocale: assign({}, TimePickerLocale),
|
|||
|
};
|
|||
|
|
|||
|
// All settings at:
|
|||
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|||
|
|
|||
|
export default locale;
|