Skip to content

Commit

Permalink
feat: add Uzbek(latn) locale (ant-design#47899)
Browse files Browse the repository at this point in the history
* feat: add Uzbek(latn) locale

* size-limit

* Update docs/react/i18n.zh-CN.md

Co-authored-by: afc163 <[email protected]>
Signed-off-by: Amumu <[email protected]>

---------

Signed-off-by: Amumu <[email protected]>
Co-authored-by: afc163 <[email protected]>
Co-authored-by: lijianan <[email protected]>
  • Loading branch information
3 people authored Mar 16, 2024
1 parent 7247c3b commit e088adf
Show file tree
Hide file tree
Showing 8 changed files with 5,469 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/calendar/locale/uz_UZ.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import uzUZ from '../../date-picker/locale/uz_UZ';

export default uzUZ;
28 changes: 28 additions & 0 deletions components/date-picker/locale/uz_UZ.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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;
Loading

0 comments on commit e088adf

Please sign in to comment.