mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
371d1421c6
* parent 18cd401678
author Primlx <primulax@live.com> 1628778277 +0400
committer primulax <primulax@live.com> 1631181358 +0400
Add files via upload
add georgian translation
Create ka_GE.tsx
Create ka_GE
Rename ka_GE to ka_GE.tsx
Create ka_GE.tsx
Update ka_GE.tsx
Update ka_GE.tsx
Create ka_GE.tsx
update rc-picker version
Create ka_GE.tsx
Create ka_GE
Rename ka_GE to ka_GE.tsx
Update ka_GE.tsx
Update ka_GE.tsx
Create ka_GE.tsx
update rc-picker version
* Update package.json
Co-authored-by: Amumu <yoyo837@hotmail.com>
* test case
* add language option in markdown
* test
* Update components/calendar/locale/ka_GE.tsx
Co-authored-by: Amumu <yoyo837@hotmail.com>
* Update components/calendar/locale/ka_GE.tsx
Co-authored-by: Amumu <yoyo837@hotmail.com>
Co-authored-by: Amumu <yoyo837@hotmail.com>
24 lines
1.0 KiB
TypeScript
24 lines
1.0 KiB
TypeScript
import CalendarLocale from 'rc-picker/lib/locale/ka_GE';
|
|
import TimePickerLocale from '../../time-picker/locale/ka_GE';
|
|
import { PickerLocale } from '../generatePicker';
|
|
|
|
const locale: PickerLocale = {
|
|
lang: {
|
|
placeholder: 'აირჩიეთ თარიღი',
|
|
yearPlaceholder: 'აირჩიეთ წელი',
|
|
quarterPlaceholder: 'აირჩიეთ მეოთხედი',
|
|
monthPlaceholder: 'აირჩიეთ თვე',
|
|
weekPlaceholder: 'აირჩიეთ კვირა',
|
|
rangePlaceholder: ['საწყისი თარიღი', 'საბოლოო თარიღი'],
|
|
rangeYearPlaceholder: ['საწყისი წელი', 'საბოლოო წელი'],
|
|
rangeMonthPlaceholder: ['საწყისი თვე', 'საბოლოო თვე'],
|
|
rangeWeekPlaceholder: ['საწყისი კვირა', 'საბოლოო კვირა'],
|
|
...CalendarLocale,
|
|
},
|
|
timePickerLocale: {
|
|
...TimePickerLocale,
|
|
},
|
|
};
|
|
|
|
export default locale;
|