mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
9aec72c395
* 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
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import Pagination from 'rc-pagination/lib/locale/hu_HU';
|
|
import Calendar from '../calendar/locale/hu_HU';
|
|
import DatePicker from '../date-picker/locale/hu_HU';
|
|
import type { Locale } from '.';
|
|
import TimePicker from '../time-picker/locale/hu_HU';
|
|
|
|
const localeValues: Locale = {
|
|
locale: 'hu',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Table: {
|
|
filterTitle: 'Szűrők',
|
|
filterConfirm: 'Alkalmazás',
|
|
filterReset: 'Visszaállítás',
|
|
selectAll: 'Jelenlegi oldal kiválasztása',
|
|
selectInvert: 'Jelenlegi oldal inverze',
|
|
sortTitle: 'Rendezés',
|
|
},
|
|
Modal: {
|
|
okText: 'Alkalmazás',
|
|
cancelText: 'Visszavonás',
|
|
justOkText: 'Alkalmazás',
|
|
},
|
|
Popconfirm: {
|
|
okText: 'Alkalmazás',
|
|
cancelText: 'Visszavonás',
|
|
},
|
|
Transfer: {
|
|
titles: ['', ''],
|
|
searchPlaceholder: 'Keresés',
|
|
itemUnit: 'elem',
|
|
itemsUnit: 'elemek',
|
|
},
|
|
Upload: {
|
|
uploading: 'Feltöltés...',
|
|
removeFile: 'Fájl eltávolítása',
|
|
uploadError: 'Feltöltési hiba',
|
|
previewFile: 'Fájl előnézet',
|
|
downloadFile: 'Fájl letöltése',
|
|
},
|
|
Empty: {
|
|
description: 'Nincs adat',
|
|
},
|
|
};
|
|
|
|
export default localeValues;
|