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.
24 lines
513 B
24 lines
513 B
import CalendarLocale from '../../vc-calendar/src/locale/zh_TW'
|
|
import TimePickerLocale from '../../time-picker/locale/zh_TW'
|
|
|
|
const locale = {
|
|
lang: {
|
|
placeholder: '請選擇日期',
|
|
rangePlaceholder: [
|
|
'開始日期', '結束日期'
|
|
],
|
|
...CalendarLocale
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale
|
|
}
|
|
}
|
|
|
|
locale.lang.ok = '確 定'
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/l
|
|
// o cale/example.json
|
|
|
|
export default locale
|