mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import Pagination from 'rc-pagination/lib/locale/el_GR';
|
||
import Calendar from '../calendar/locale/el_GR';
|
||
import DatePicker from '../date-picker/locale/el_GR';
|
||
import type { Locale } from '../locale-provider';
|
||
import TimePicker from '../time-picker/locale/el_GR';
|
||
|
||
const localeValues: Locale = {
|
||
locale: 'el',
|
||
Pagination,
|
||
DatePicker,
|
||
TimePicker,
|
||
Calendar,
|
||
Table: {
|
||
filterTitle: 'Μενού φίλτρων',
|
||
filterConfirm: 'ΟΚ',
|
||
filterReset: 'Επαναφορά',
|
||
selectAll: 'Επιλογή τρέχουσας σελίδας',
|
||
selectInvert: 'Αντιστροφή τρέχουσας σελίδας',
|
||
},
|
||
Modal: {
|
||
okText: 'ΟΚ',
|
||
cancelText: 'Άκυρο',
|
||
justOkText: 'ΟΚ',
|
||
},
|
||
Popconfirm: {
|
||
okText: 'ΟΚ',
|
||
cancelText: 'Άκυρο',
|
||
},
|
||
Transfer: {
|
||
searchPlaceholder: 'Αναζήτηση',
|
||
itemUnit: 'αντικείμενο',
|
||
itemsUnit: 'αντικείμενα',
|
||
},
|
||
Upload: {
|
||
uploading: 'Μεταφόρτωση...',
|
||
removeFile: 'Αφαίρεση αρχείου',
|
||
uploadError: 'Σφάλμα μεταφόρτωσης',
|
||
previewFile: 'Προεπισκόπηση αρχείου',
|
||
downloadFile: 'Λήψη αρχείου',
|
||
},
|
||
Empty: {
|
||
description: 'Δεν υπάρχουν δεδομένα',
|
||
},
|
||
};
|
||
|
||
export default localeValues;
|