File size: 2,827 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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;