mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
eadbd62ee8
* Update Turkish translations * feat: update Turkish translations * /* eslint-disable no-template-curly-in-string */ * fix: minor change to a Turkish translation * chore: update snapshots Co-authored-by: Amumu <yoyo837@hotmail.com>
29 lines
912 B
TypeScript
29 lines
912 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/tr_TR';
|
||
import TimePickerLocale from '../../time-picker/locale/tr_TR';
|
||
import { 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;
|