You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
871 B
25 lines
871 B
3 years ago
|
import CalendarLocale from 'rc-picker/lib/locale/tk_TK';
|
||
|
import TimePickerLocale from '../../time-picker/locale/tk_TK';
|
||
|
import type { PickerLocale } from '../generatePicker';
|
||
|
|
||
|
const locale: PickerLocale = {
|
||
|
lang: {
|
||
|
placeholder: 'Wagt saýlaň',
|
||
|
rangePlaceholder: ['Başlanýan wagty', 'Gutarýan wagty'],
|
||
|
yearPlaceholder: 'Ýyl saýlaň',
|
||
|
quarterPlaceholder: 'Çärýek saýlaň',
|
||
|
monthPlaceholder: 'Aý saýlaň',
|
||
|
weekPlaceholder: 'Hepde saýlaň',
|
||
|
rangeYearPlaceholder: ['Başlanýan ýyly', 'Gutarýan ýyly'],
|
||
|
rangeQuarterPlaceholder: ['Başlanýan çärýegi', 'Gutarýan çärýegi'],
|
||
|
rangeMonthPlaceholder: ['Başlanýan aýy', 'Gutarýan aýy'],
|
||
|
rangeWeekPlaceholder: ['Başlanýan hepdesi', 'Gutarýan hepdesi'],
|
||
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default locale;
|