File size: 1,925 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import type { TranslationStrings } from '../types';

const notifications: TranslationStrings = {
  'notifications.title': 'Notifications',
  'notifications.markAllRead': 'Mark all read',
  'notifications.deleteAll': 'Delete all',
  'notifications.showAll': 'Show all notifications',
  'notifications.empty': 'No notifications',
  'notifications.emptyDescription': "You're all caught up!",
  'notifications.all': 'All',
  'notifications.unreadOnly': 'Unread',
  'notifications.markRead': 'Mark as read',
  'notifications.markUnread': 'Mark as unread',
  'notifications.delete': 'Delete',
  'notifications.system': 'System',
  'notifications.synologySessionCleared.title': 'Synology Photos disconnected',
  'notifications.synologySessionCleared.text':
    'Your server or account changed — go to Settings to test your connection again.',
  'notifications.versionAvailable.title': 'Update Available',
  'notifications.versionAvailable.text': 'TREK {version} is now available.',
  'notifications.versionAvailable.button': 'View Details',
  'notifications.test.title': 'Test notification from {actor}',
  'notifications.test.text': 'This is a simple test notification.',
  'notifications.test.booleanTitle': '{actor} asks for your approval',
  'notifications.test.booleanText':
    'This is a test boolean notification. Choose an action below.',
  'notifications.test.accept': 'Approve',
  'notifications.test.decline': 'Decline',
  'notifications.test.navigateTitle': 'Check something out',
  'notifications.test.navigateText': 'This is a test navigate notification.',
  'notifications.test.goThere': 'Go there',
  'notifications.test.adminTitle': 'Admin broadcast',
  'notifications.test.adminText':
    '{actor} sent a test notification to all admins.',
  'notifications.test.tripTitle': '{actor} posted in your trip',
  'notifications.test.tripText': 'Test notification for trip "{trip}".',
};
export default notifications;