Spaces:
Sleeping
Sleeping
File size: 1,099 Bytes
48f8f0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import type { TranslationStrings } from '../types';
const inspector: TranslationStrings = {
'inspector.opened': 'Ανοιχτό',
'inspector.closed': 'Κλειστό',
'inspector.openingHours': 'Ώρες Λειτουργίας',
'inspector.showHours': 'Εμφάνιση ωρών λειτουργίας',
'inspector.files': 'Αρχεία',
'inspector.filesCount': '{count} αρχεία',
'inspector.remove': 'Αφαίρεση',
'inspector.removeFromDay': 'Αφαίρεση από την Ημέρα',
'inspector.addToDay': 'Προσθήκη στην Ημέρα',
'inspector.confirmedRes': 'Επιβεβαιωμένη Κράτηση',
'inspector.pendingRes': 'Εκκρεμής Κράτηση',
'inspector.google': 'Άνοιγμα στο Google Maps',
'inspector.website': 'Άνοιγμα Ιστοσελίδας',
'inspector.addRes': 'Κράτηση',
'inspector.editRes': 'Επεξεργασία Κράτησης',
'inspector.participants': 'Συμμετέχοντες',
'inspector.trackStats': 'Στατιστικά Διαδρομής',
};
export default inspector;
|