mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
aa17f703d2
* Added missed translation for Azerbaijani language * Added missed translation * Filled changelog * Revert "Filled changelog" This reverts commit4a36eb688f
. * Filled PR content * Revert "Filled PR content" This reverts commit7108e3ae26
. * Test run for jest snapshot --------- Co-authored-by: afc163 <afc163@gmail.com>
26 lines
808 B
TypeScript
26 lines
808 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/az_AZ';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/az_AZ';
|
|
import type { PickerLocale } from '../generatePicker';
|
|
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Tarix seçin',
|
|
rangePlaceholder: ['Başlama tarixi', 'Bitmə tarixi'],
|
|
yearPlaceholder: 'İl seçin',
|
|
quarterPlaceholder: 'Rüb seçin',
|
|
monthPlaceholder: 'Ay seçin',
|
|
weekPlaceholder: 'Həftə seçin',
|
|
rangeYearPlaceholder: ['Başlama il', 'Bitmə il'],
|
|
rangeQuarterPlaceholder: ['Başlama rüb', 'Bitmə rüb'],
|
|
rangeMonthPlaceholder: ['Başlama ay', 'Bitmə ay'],
|
|
rangeWeekPlaceholder: ['Başlama həftə', 'Bitmə həftə'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
export default locale;
|