ant-design/components/date-picker/locale/tr_TR.ts
lijianan 3ed7ec906e chore: remove useless tsx support (#39890)
* chore: remove useless tsx support

* add

* add

* style

* fix lint

* fix lint

* fix lint

* update locale entry

* update locale entry

* update locale entry

* delete useless style
2022-12-31 22:24:55 +08:00

29 lines
917 B
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.

import CalendarLocale from 'rc-picker/lib/locale/tr_TR';
import TimePickerLocale from '../../time-picker/locale/tr_TR';
import type { PickerLocale } from '../generatePicker';
// Merge into a locale object
const locale: PickerLocale = {
lang: {
placeholder: 'Tarih seç',
yearPlaceholder: 'Yıl seç',
quarterPlaceholder: 'Çeyrek seç',
monthPlaceholder: 'Ay seç',
weekPlaceholder: 'Hafta seç',
rangePlaceholder: ['Başlangıç tarihi', 'Bitiş tarihi'],
rangeYearPlaceholder: ['Başlangıç yılı', 'Bitiş yılı'],
rangeMonthPlaceholder: ['Başlangıç ayı', 'Bitiş ayı'],
rangeWeekPlaceholder: ['Başlangıç haftası', 'Bitiş haftası'],
...CalendarLocale,
},
timePickerLocale: {
...TimePickerLocale,
},
};
// All settings at:
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
export default locale;