mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
decfac3540
* Add missing props to es_ES locale * Unnecessary properties were removed * test: update snap * Fix: typo in short week day abbreviation * test: update snap * test: update snap --------- Co-authored-by: 栗嘉男 <574980606@qq.com>
37 lines
823 B
TypeScript
37 lines
823 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/es_ES';
|
|
|
|
import TimePickerLocale from '../../time-picker/locale/es_ES';
|
|
import type { PickerLocale } from '../generatePicker';
|
|
|
|
// Merge into a locale object
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Seleccionar fecha',
|
|
rangePlaceholder: ['Fecha inicial', 'Fecha final'],
|
|
shortWeekDays: ['Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'],
|
|
shortMonths: [
|
|
'Ene',
|
|
'Feb',
|
|
'Mar',
|
|
'Abr',
|
|
'May',
|
|
'Jun',
|
|
'Jul',
|
|
'Ago',
|
|
'Sep',
|
|
'Oct',
|
|
'Nov',
|
|
'Dic',
|
|
],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|