mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
398788b2c9
* fix: import correct locale file from rc-calendar, close #9373 * Update snapshot
20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/tr_TR';
|
||
import TimePickerLocale from '../../time-picker/locale/tr_TR';
|
||
|
||
// Merge into a locale object
|
||
const locale = {
|
||
lang: {
|
||
placeholder: 'Tarih Seç',
|
||
rangePlaceholder: ['Başlangıç Tarihi', 'Bitiş Tarihi'],
|
||
...CalendarLocale,
|
||
},
|
||
timePickerLocale: {
|
||
...TimePickerLocale,
|
||
},
|
||
};
|
||
|
||
// All settings at:
|
||
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||
|
||
export default locale;
|