Spaces:
Sleeping
Sleeping
| 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; | |