2015-10-23 23:50:26 +08:00
|
|
|
import objectAssign from 'object-assign';
|
2015-11-16 14:10:42 +08:00
|
|
|
import GregorianCalendarLocale from 'gregorian-calendar/lib/locale/en_US';
|
|
|
|
import CalendarLocale from 'rc-calendar/lib/locale/en_US';
|
2015-10-23 17:57:02 +08:00
|
|
|
|
2015-10-23 23:50:26 +08:00
|
|
|
// 统一合并为完整的 Locale
|
|
|
|
let locale = objectAssign({}, GregorianCalendarLocale);
|
2015-11-19 15:10:48 +08:00
|
|
|
locale.lang = objectAssign({
|
2015-11-19 19:15:52 +08:00
|
|
|
placeholder: 'Select a date'
|
2015-11-19 15:10:48 +08:00
|
|
|
}, CalendarLocale);
|
2015-10-23 23:50:26 +08:00
|
|
|
|
|
|
|
// All settings at:
|
|
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
|
|
|
|
export default locale;
|