File size: 3,164 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { TranslationStrings } from '../types';

const collab: TranslationStrings = {
  'collab.tabs.chat': 'Chat',
  'collab.tabs.notes': 'Notes',
  'collab.tabs.polls': 'Polls',
  'collab.whatsNext.title': "What's Next",
  'collab.whatsNext.today': 'Today',
  'collab.whatsNext.tomorrow': 'Tomorrow',
  'collab.whatsNext.empty': 'No upcoming activities',
  'collab.whatsNext.until': 'to',
  'collab.whatsNext.emptyHint': 'Activities with times will appear here',
  'collab.chat.send': 'Send',
  'collab.chat.placeholder': 'Type a message...',
  'collab.chat.empty': 'Start the conversation',
  'collab.chat.emptyHint': 'Messages are shared with all trip members',
  'collab.chat.emptyDesc':
    'Share ideas, plans, and updates with your travel group',
  'collab.chat.today': 'Today',
  'collab.chat.yesterday': 'Yesterday',
  'collab.chat.deletedMessage': 'deleted a message',
  'collab.chat.reply': 'Reply',
  'collab.chat.loadMore': 'Load older messages',
  'collab.chat.justNow': 'just now',
  'collab.chat.minutesAgo': '{n}m ago',
  'collab.chat.hoursAgo': '{n}h ago',
  'collab.notes.title': 'Notes',
  'collab.notes.new': 'New Note',
  'collab.notes.empty': 'No notes yet',
  'collab.notes.emptyHint': 'Start capturing ideas and plans',
  'collab.notes.all': 'All',
  'collab.notes.titlePlaceholder': 'Note title',
  'collab.notes.contentPlaceholder': 'Write something...',
  'collab.notes.categoryPlaceholder': 'Category',
  'collab.notes.newCategory': 'New category...',
  'collab.notes.category': 'Category',
  'collab.notes.noCategory': 'No category',
  'collab.notes.color': 'Color',
  'collab.notes.save': 'Save',
  'collab.notes.cancel': 'Cancel',
  'collab.notes.edit': 'Edit',
  'collab.notes.delete': 'Delete',
  'collab.notes.confirmDeleteTitle': 'Delete note?',
  'collab.notes.confirmDeleteBody': 'This note will be permanently deleted.',
  'collab.notes.pin': 'Pin',
  'collab.notes.unpin': 'Unpin',
  'collab.notes.daysAgo': '{n}d ago',
  'collab.notes.categorySettings': 'Manage Categories',
  'collab.notes.create': 'Create',
  'collab.notes.website': 'Website',
  'collab.notes.websitePlaceholder': 'https://...',
  'collab.notes.attachFiles': 'Attach files',
  'collab.notes.noCategoriesYet': 'No categories yet',
  'collab.notes.emptyDesc': 'Create a note to get started',
  'collab.polls.title': 'Polls',
  'collab.polls.new': 'New Poll',
  'collab.polls.empty': 'No polls yet',
  'collab.polls.emptyHint': 'Ask the group and vote together',
  'collab.polls.question': 'Question',
  'collab.polls.questionPlaceholder': 'What should we do?',
  'collab.polls.addOption': '+ Add option',
  'collab.polls.optionPlaceholder': 'Option {n}',
  'collab.polls.create': 'Create Poll',
  'collab.polls.close': 'Close',
  'collab.polls.closed': 'Closed',
  'collab.polls.votes': '{n} votes',
  'collab.polls.vote': '{n} vote',
  'collab.polls.multipleChoice': 'Multiple choice',
  'collab.polls.multiChoice': 'Multiple choice',
  'collab.polls.deadline': 'Deadline',
  'collab.polls.option': 'Option',
  'collab.polls.options': 'Options',
  'collab.polls.delete': 'Delete',
  'collab.polls.closedSection': 'Closed',
};
export default collab;