mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
3ed7ec906e
* chore: remove useless tsx support * add * add * style * fix lint * fix lint * fix lint * update locale entry * update locale entry * update locale entry * delete useless style
28 lines
946 B
TypeScript
28 lines
946 B
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/ga_IE';
|
|
import TimePickerLocale from '../../time-picker/locale/ga_IE';
|
|
import type { PickerLocale } from '../generatePicker';
|
|
|
|
// Merge into a locale object
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'Roghnaigh dáta',
|
|
yearPlaceholder: 'Roghnaigh bliain',
|
|
quarterPlaceholder: 'Roghnaigh ráithe',
|
|
monthPlaceholder: 'Roghnaigh mí',
|
|
weekPlaceholder: 'Roghnaigh seachtain',
|
|
rangePlaceholder: ['Dáta tosaigh', 'Dáta deiridh'],
|
|
rangeYearPlaceholder: ['Tús na bliana', 'Deireadh na bliana'],
|
|
rangeMonthPlaceholder: ['Tosaigh mhí', 'Deireadh mhí'],
|
|
rangeWeekPlaceholder: ['Tosaigh an tseachtain', 'Deireadh na seachtaine'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
|
|
|
export default locale;
|