2016-11-25 09:44:28 +08:00
|
|
|
import CalendarLocale from 'rc-calendar/lib/locale/pt_BR';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/pt_BR';
|
|
|
|
import assign from 'object-assign';
|
|
|
|
|
2017-03-23 21:32:29 +08:00
|
|
|
// Merge into a locale object
|
2016-11-25 09:44:28 +08:00
|
|
|
const locale = {
|
|
|
|
lang: assign({
|
|
|
|
placeholder: 'Selecionar data',
|
|
|
|
rangePlaceholder: ['Data de início', 'Data de fim'],
|
|
|
|
}, CalendarLocale),
|
|
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
|
|
};
|
|
|
|
|
|
|
|
// 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
|
2016-11-25 09:44:28 +08:00
|
|
|
|
|
|
|
export default locale;
|