mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
15 lines
455 B
JavaScript
15 lines
455 B
JavaScript
import objectAssign from 'object-assign';
|
|
import GregorianCalendarLocale from 'gregorian-calendar/lib/locale/en_US';
|
|
import TimepickerLocale from 'rc-time-picker/lib/locale/en_US';
|
|
|
|
// 统一合并为完整的 Locale
|
|
let locale = objectAssign({}, GregorianCalendarLocale);
|
|
locale.lang = objectAssign({
|
|
placeholder: 'Select a time'
|
|
}, TimepickerLocale);
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
export default locale;
|