mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
e088adf0da
* feat: add Uzbek(latn) locale * size-limit * Update docs/react/i18n.zh-CN.md Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: Amumu <yoyo837@hotmail.com> --------- Signed-off-by: Amumu <yoyo837@hotmail.com> Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: lijianan <574980606@qq.com>
29 lines
943 B
TypeScript
29 lines
943 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/uz_UZ';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/uz_UZ';
|
|
import type { PickerLocale } from '../generatePicker';
|
|
|
|
// Merge into a locale object
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Sanani tanlang',
|
|
yearPlaceholder: 'Yilni tanlang',
|
|
quarterPlaceholder: 'Chorakni tanlang',
|
|
monthPlaceholder: 'Oyni tanlang',
|
|
weekPlaceholder: 'Haftani tanlang',
|
|
rangePlaceholder: ['Boshlanish sanasi', 'Tugallanish sanasi'],
|
|
rangeYearPlaceholder: ['Boshlanish yili', 'Tugallanish yili'],
|
|
rangeMonthPlaceholder: ['Boshlanish oyi', 'Tugallanish oyi'],
|
|
rangeWeekPlaceholder: ['Boshlanish haftasi', 'Tugallanish haftasi'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|