mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
5c25452de8
* Update locale es_ES (Spanish) * Fix indent
18 lines
536 B
TypeScript
18 lines
536 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/es_ES';
|
|
import TimePickerLocale from '../../time-picker/locale/es_ES';
|
|
import assign from 'object-assign';
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: 'Seleccionar fecha',
|
|
rangePlaceholder: ['Fecha inicial', 'Fecha final'],
|
|
}, CalendarLocale),
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|