mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
c2afa97ca1
* Added basque (eu-ES) translation * Update components/locale/eu_ES.tsx Co-authored-by: Amumu <yoyo837@hotmail.com> * Update docs/react/i18n.zh-CN.md Co-authored-by: Amumu <yoyo837@hotmail.com> * added test cases Co-authored-by: Amumu <yoyo837@hotmail.com>
21 lines
565 B
TypeScript
21 lines
565 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/eu_ES';
|
|
import TimePickerLocale from '../../time-picker/locale/eu_ES';
|
|
import type { PickerLocale } from '../generatePicker';
|
|
|
|
// Merge into a locale object
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Hautatu data',
|
|
rangePlaceholder: ['Hasierako data', 'Amaiera data'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|