amis-rpc-design/node_modules/antd/es/date-picker/locale/tr_TR.js
2023-10-07 19:42:30 +08:00

20 lines
853 B
JavaScript
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/es/locale/tr_TR";
import TimePickerLocale from '../../time-picker/locale/tr_TR';
// Merge into a locale object
const locale = {
lang: Object.assign({
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: Object.assign({}, TimePickerLocale)
};
// All settings at:
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
export default locale;