You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
3 years ago
|
import type { Locale } from '../interface';
|
||
|
|
||
|
const locale: Locale = {
|
||
|
locale: 'el_GR',
|
||
7 years ago
|
today: 'Σήμερα',
|
||
|
now: 'Τώρα',
|
||
|
backToToday: 'Πίσω στη σημερινή μέρα',
|
||
|
ok: 'Ok',
|
||
|
clear: 'Καθαρισμός',
|
||
|
month: 'Μήνας',
|
||
|
year: 'Έτος',
|
||
|
timeSelect: 'Επιλογή ώρας',
|
||
|
dateSelect: 'Επιλογή ημερομηνίας',
|
||
|
monthSelect: 'Επιλογή μήνα',
|
||
|
yearSelect: 'Επιλογή έτους',
|
||
|
decadeSelect: 'Επιλογή δεκαετίας',
|
||
|
yearFormat: 'YYYY',
|
||
|
dateFormat: 'D/M/YYYY',
|
||
|
dayFormat: 'D',
|
||
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
||
|
monthBeforeYear: true,
|
||
|
previousMonth: 'Προηγούμενος μήνας (PageUp)',
|
||
|
nextMonth: 'Επόμενος μήνας (PageDown)',
|
||
|
previousYear: 'Προηγούμενο έτος (Control + αριστερά)',
|
||
|
nextYear: 'Επόμενο έτος (Control + δεξιά)',
|
||
|
previousDecade: 'Προηγούμενη δεκαετία',
|
||
|
nextDecade: 'Επόμενη δεκαετία',
|
||
|
previousCentury: 'Προηγούμενος αιώνας',
|
||
|
nextCentury: 'Επόμενος αιώνας',
|
||
6 years ago
|
};
|
||
3 years ago
|
|
||
|
export default locale;
|