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.
23 lines
526 B
23 lines
526 B
7 years ago
|
import CalendarLocale from '../../vc-calendar/src/locale/bg_BG'
|
||
|
import TimePickerLocale from '../../time-picker/locale/bg_BG'
|
||
|
|
||
|
// 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/l
|
||
|
// o cale/example.json
|
||
|
|
||
|
export default locale
|