feat(i18n): add Greek translation (#1061)

This commit is contained in:
Dimitris Kafetzis
2026-05-27 17:31:03 +02:00
committed by GitHub
parent 126f2df21b
commit 831a4fd478
45 changed files with 2584 additions and 1 deletions
+35
View File
@@ -0,0 +1,35 @@
import type { TranslationStrings } from '../types';
const notifications: TranslationStrings = {
'notifications.title': 'Ειδοποιήσεις',
'notifications.markAllRead': 'Σήμανση όλων ως αναγνωσμένα',
'notifications.deleteAll': 'Διαγραφή όλων',
'notifications.showAll': 'Εμφάνιση όλων των ειδοποιήσεων',
'notifications.empty': 'Καμία ειδοποίηση',
'notifications.emptyDescription': 'Είστε ενημερωμένοι!',
'notifications.all': 'Όλες',
'notifications.unreadOnly': 'Μη αναγνωσμένες',
'notifications.markRead': 'Σήμανση ως αναγνωσμένη',
'notifications.markUnread': 'Σήμανση ως μη αναγνωσμένη',
'notifications.delete': 'Διαγραφή',
'notifications.system': 'Σύστημα',
'notifications.synologySessionCleared.title': 'Το Synology Photos αποσυνδέθηκε',
'notifications.synologySessionCleared.text': 'Ο διακομιστής ή ο λογαριασμός σας άλλαξε — μεταβείτε στις Ρυθμίσεις για να δοκιμάσετε ξανά τη σύνδεσή σας.',
'notifications.versionAvailable.title': 'Διαθέσιμη Ενημέρωση',
'notifications.versionAvailable.text': 'Το TREK {version} είναι τώρα διαθέσιμο.',
'notifications.versionAvailable.button': 'Προβολή Λεπτομερειών',
'notifications.test.title': 'Δοκιμαστική ειδοποίηση από {actor}',
'notifications.test.text': 'Αυτή είναι μια απλή δοκιμαστική ειδοποίηση.',
'notifications.test.booleanTitle': 'Ο {actor} ζητά την έγκρισή σας',
'notifications.test.booleanText': 'Αυτή είναι μια δοκιμαστική ειδοποίηση boolean. Επιλέξτε μια ενέργεια παρακάτω.',
'notifications.test.accept': 'Έγκριση',
'notifications.test.decline': 'Απόρριψη',
'notifications.test.navigateTitle': 'Ρίξτε μια ματιά',
'notifications.test.navigateText': 'Αυτή είναι μια δοκιμαστική ειδοποίηση πλοήγησης.',
'notifications.test.goThere': 'Μετάβαση εκεί',
'notifications.test.adminTitle': 'Εκπομπή διαχειριστή',
'notifications.test.adminText': 'Ο {actor} έστειλε μια δοκιμαστική ειδοποίηση σε όλους τους διαχειριστές.',
'notifications.test.tripTitle': 'Ο {actor} δημοσίευσε στο ταξίδι σας',
'notifications.test.tripText': 'Δοκιμαστική ειδοποίηση για το ταξίδι «{trip}».',
};
export default notifications;