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.
31 lines
999 B
31 lines
999 B
5 years ago
|
import CalendarLocale from 'rc-picker/lib/locale/zh_TW';
|
||
8 years ago
|
import TimePickerLocale from '../../time-picker/locale/zh_TW';
|
||
3 years ago
|
import type { PickerLocale } from '../generatePicker';
|
||
8 years ago
|
|
||
5 years ago
|
// 统一合并为完整的 Locale
|
||
|
const locale: PickerLocale = {
|
||
8 years ago
|
lang: {
|
||
8 years ago
|
placeholder: '請選擇日期',
|
||
4 years ago
|
yearPlaceholder: '請選擇年份',
|
||
|
quarterPlaceholder: '請選擇季度',
|
||
|
monthPlaceholder: '請選擇月份',
|
||
|
weekPlaceholder: '請選擇周',
|
||
8 years ago
|
rangePlaceholder: ['開始日期', '結束日期'],
|
||
4 years ago
|
rangeYearPlaceholder: ['開始年份', '結束年份'],
|
||
|
rangeMonthPlaceholder: ['開始月份', '結束月份'],
|
||
3 years ago
|
rangeQuarterPlaceholder: ['開始季度', '結束季度'],
|
||
4 years ago
|
rangeWeekPlaceholder: ['開始周', '結束周'],
|
||
8 years ago
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
8 years ago
|
};
|
||
|
|
||
|
locale.lang.ok = '確 定';
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||
|
|
||
|
export default locale;
|