File size: 2,831 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import type { TranslationStrings } from '../types';

const perm: TranslationStrings = {
  'perm.title': 'Permission Settings',
  'perm.subtitle': 'Control who can perform actions across the application',
  'perm.saved': 'Permission settings saved',
  'perm.resetDefaults': 'Reset to defaults',
  'perm.customized': 'customized',
  'perm.level.admin': 'Admin only',
  'perm.level.tripOwner': 'Trip owner',
  'perm.level.tripMember': 'Trip members',
  'perm.level.everybody': 'Everyone',
  'perm.cat.trip': 'Trip Management',
  'perm.cat.members': 'Member Management',
  'perm.cat.files': 'Files',
  'perm.cat.content': 'Content & Schedule',
  'perm.cat.extras': 'Budget, Packing & Collaboration',
  'perm.action.trip_create': 'Create trips',
  'perm.action.trip_edit': 'Edit trip details',
  'perm.action.trip_delete': 'Delete trips',
  'perm.action.trip_archive': 'Archive / unarchive trips',
  'perm.action.trip_cover_upload': 'Upload cover image',
  'perm.action.member_manage': 'Add / remove members',
  'perm.action.file_upload': 'Upload files',
  'perm.action.file_edit': 'Edit file metadata',
  'perm.action.file_delete': 'Delete files',
  'perm.action.place_edit': 'Add / edit / delete places',
  'perm.action.day_edit': 'Edit days, notes & assignments',
  'perm.action.reservation_edit': 'Manage reservations',
  'perm.action.budget_edit': 'Manage budget',
  'perm.action.packing_edit': 'Manage packing lists',
  'perm.action.collab_edit': 'Collaboration (notes, polls, chat)',
  'perm.action.share_manage': 'Manage share links',
  'perm.actionHint.trip_create': 'Who can create new trips',
  'perm.actionHint.trip_edit':
    'Who can change trip name, dates, description and currency',
  'perm.actionHint.trip_delete': 'Who can permanently delete a trip',
  'perm.actionHint.trip_archive': 'Who can archive or unarchive a trip',
  'perm.actionHint.trip_cover_upload':
    'Who can upload or change the cover image',
  'perm.actionHint.member_manage': 'Who can invite or remove trip members',
  'perm.actionHint.file_upload': 'Who can upload files to a trip',
  'perm.actionHint.file_edit': 'Who can edit file descriptions and links',
  'perm.actionHint.file_delete':
    'Who can move files to trash or permanently delete them',
  'perm.actionHint.place_edit': 'Who can add, edit or delete places',
  'perm.actionHint.day_edit':
    'Who can edit days, day notes and place assignments',
  'perm.actionHint.reservation_edit':
    'Who can create, edit or delete reservations',
  'perm.actionHint.budget_edit': 'Who can create, edit or delete budget items',
  'perm.actionHint.packing_edit': 'Who can manage packing items and bags',
  'perm.actionHint.collab_edit':
    'Who can create notes, polls and send messages',
  'perm.actionHint.share_manage': 'Who can create or delete public share links',
};
export default perm;