File size: 1,224 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import CalendarLocale from 'rc-picker/lib/locale/ja_JP';
import TimePickerLocale from '../../time-picker/locale/ja_JP';
import type { PickerLocale } from '../generatePicker';
// Merge into a locale object
const locale: PickerLocale = {
lang: {
placeholder: 'ζ₯δ»γιΈζ',
yearPlaceholder: 'εΉ΄γιΈζ',
quarterPlaceholder: 'εεζγιΈζ',
monthPlaceholder: 'ζγιΈζ',
weekPlaceholder: 'ι±γιΈζ',
rangePlaceholder: ['ιε§ζ₯δ»', 'η΅δΊζ₯δ»'],
rangeYearPlaceholder: ['ιε§εΉ΄', 'η΅δΊεΉ΄'],
rangeMonthPlaceholder: ['ιε§ζ', 'η΅δΊζ'],
rangeQuarterPlaceholder: ['ιε§εεζ', 'η΅δΊεεζ'],
rangeWeekPlaceholder: ['ιε§ι±', 'η΅δΊι±'],
shortWeekDays: ['ζ₯', 'ζ', 'η«', 'ζ°΄', 'ζ¨', 'ι', 'ε'],
shortMonths: [
'1ζ',
'2ζ',
'3ζ',
'4ζ',
'5ζ',
'6ζ',
'7ζ',
'8ζ',
'9ζ',
'10ζ',
'11ζ',
'12ζ',
],
...CalendarLocale,
},
timePickerLocale: {
...TimePickerLocale,
},
};
// All settings at:
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
export default locale;
|