mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
a9f14ea48f
* feat: 🌎 new kmr_IQ to replace ku_IQ close #25778 close #25790 * fix locale provider Legacy usage * Update docs/react/i18n.en-US.md Co-authored-by: Amumu <yoyo837@hotmail.com> * Update i18n.zh-CN.md Co-authored-by: Amumu <yoyo837@hotmail.com>
20 lines
572 B
TypeScript
Executable File
20 lines
572 B
TypeScript
Executable File
import CalendarLocale from 'rc-picker/lib/locale/kmr_IQ';
|
|
import TimePickerLocale from '../../time-picker/locale/kmr_IQ';
|
|
import { PickerLocale } from '../generatePicker';
|
|
|
|
// Merge into a locale object
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Dîrok hilbijêre',
|
|
rangePlaceholder: ['Dîroka destpêkê', 'Dîroka dawîn'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
export default locale;
|