You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
517 B
20 lines
517 B
import CalendarLocale from '../../vc-calendar/src/locale/ar_EG'
|
|
import TimePickerLocale from '../../time-picker/locale/ar_EG'
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: {
|
|
placeholder: 'اختيار التاريخ',
|
|
rangePlaceholder: ['البداية', 'النهاية'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
}
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale
|