2015-11-16 14:10:42 +08:00
|
|
|
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
|
|
|
|
2017-03-23 21:32:29 +08:00
|
|
|
// Merge into a locale object
|
2016-09-09 13:55:21 +08:00
|
|
|
const locale = {
|
|
|
|
lang: assign({
|
|
|
|
placeholder: 'Select date',
|
|
|
|
rangePlaceholder: ['Start date', 'End date'],
|
|
|
|
}, CalendarLocale),
|
|
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
|
|
};
|
2016-04-07 17:44:13 +08:00
|
|
|
|
2015-10-23 23:50:26 +08:00
|
|
|
// All settings at:
|
2017-01-04 10:08:35 +08:00
|
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
2015-10-23 23:50:26 +08:00
|
|
|
|
|
|
|
export default locale;
|