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';
|
2016-04-07 17:44:13 +08:00
|
|
|
import TimePickerLocale from '../../time-picker/locale/en_US';
|
2016-06-22 13:18:43 +08:00
|
|
|
import assign from 'object-assign';
|
2015-10-23 23:50:26 +08:00
|
|
|
// 统一合并为完整的 Locale
|
2016-06-22 13:18:43 +08:00
|
|
|
const locale = assign({}, GregorianCalendarLocale);
|
|
|
|
locale.lang = assign({
|
2015-12-29 22:40:09 +08:00
|
|
|
placeholder: 'Select date',
|
2016-04-01 13:53:37 +08:00
|
|
|
rangePlaceholder: ['Start date', 'End date'],
|
2016-07-13 11:14:24 +08:00
|
|
|
}, CalendarLocale);
|
2015-10-23 23:50:26 +08:00
|
|
|
|
2016-06-22 13:18:43 +08:00
|
|
|
locale.timePickerLocale = assign({}, TimePickerLocale);
|
2016-04-07 17:44:13 +08:00
|
|
|
|
2015-10-23 23:50:26 +08:00
|
|
|
// All settings at:
|
|
|
|
// https://github.com/ant-design/ant-design/issues/424
|
|
|
|
|
|
|
|
export default locale;
|