mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
f1a09fe25d
* feat: Create gl_ES * Bump dependencies rc-pagination rc-picker * Add test case * Add documentation Co-authored-by: Amumu <yoyo837@hotmail.com> * Update test snapshots * fix snapshot Co-authored-by: Amumu <yoyo837@hotmail.com> Co-authored-by: 二货机器人 <smith3816@gmail.com>
21 lines
556 B
TypeScript
21 lines
556 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/gl_ES';
|
|
import TimePickerLocale from '../../time-picker/locale/gl_ES';
|
|
import { PickerLocale } from '../generatePicker';
|
|
|
|
// Merge into a locale object
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Escolla data',
|
|
rangePlaceholder: ['Data inicial', 'Data final'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|