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.
19 lines
533 B
19 lines
533 B
8 years ago
|
import CalendarLocale from 'rc-calendar/lib/locale/zh_TW';
|
||
|
import TimePickerLocale from '../../time-picker/locale/zh_TW';
|
||
|
import assign from 'object-assign';
|
||
|
|
||
|
const locale = {
|
||
|
lang: assign({
|
||
|
placeholder: '請選擇日期',
|
||
|
rangePlaceholder: ['開始日期', '結束日期'],
|
||
|
}, CalendarLocale),
|
||
|
timePickerLocale: assign({}, TimePickerLocale),
|
||
|
};
|
||
|
|
||
|
locale.lang.ok = '確 定';
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||
|
|
||
|
export default locale;
|