forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Uzbek(latn) locale (ant-design#47899)
* 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>
- Loading branch information
1 parent
d2a14f3
commit 07a1c00
Showing
8 changed files
with
5,469 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.