2019-12-11 23:32:19 +08:00
|
|
|
import CalendarLocale from 'rc-picker/lib/locale/pt_BR';
|
2016-11-25 09:44:28 +08:00
|
|
|
import TimePickerLocale from '../../time-picker/locale/pt_BR';
|
2020-03-12 10:49:32 +08:00
|
|
|
import { PickerLocale } from '../generatePicker';
|
2016-11-25 09:44:28 +08:00
|
|
|
|
2017-03-23 21:32:29 +08:00
|
|
|
// Merge into a locale object
|
2020-03-12 10:49:32 +08:00
|
|
|
const locale: PickerLocale = {
|
2017-07-03 16:57:11 +08:00
|
|
|
lang: {
|
2016-11-25 09:44:28 +08:00
|
|
|
placeholder: 'Selecionar data',
|
2020-01-28 19:44:13 +08:00
|
|
|
rangePlaceholder: ['Data inicial', 'Data final'],
|
2017-07-03 16:57:11 +08:00
|
|
|
...CalendarLocale,
|
|
|
|
},
|
|
|
|
timePickerLocale: {
|
|
|
|
...TimePickerLocale,
|
|
|
|
},
|
2016-11-25 09:44:28 +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
|
2016-11-25 09:44:28 +08:00
|
|
|
|
|
|
|
export default locale;
|