Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const files: TranslationStrings = { | |
| 'files.title': 'Files', | |
| 'files.pageTitle': 'Files & Documents', | |
| 'files.subtitle': '{count} files for {trip}', | |
| 'files.download': 'Download', | |
| 'files.openError': 'Could not open file', | |
| 'files.downloadPdf': 'Download PDF', | |
| 'files.count': '{count} files', | |
| 'files.countSingular': '1 file', | |
| 'files.uploaded': '{count} uploaded', | |
| 'files.uploadError': 'Upload failed', | |
| 'files.dropzone': 'Drop files here', | |
| 'files.dropzoneHint': 'or click to browse', | |
| 'files.allowedTypes': | |
| 'Images, PDF, DOC, DOCX, XLS, XLSX, TXT, CSV · Max 50 MB', | |
| 'files.uploading': 'Uploading...', | |
| 'files.filterAll': 'All', | |
| 'files.filterPdf': 'PDFs', | |
| 'files.filterImages': 'Images', | |
| 'files.filterDocs': 'Documents', | |
| 'files.filterCollab': 'Collab Notes', | |
| 'files.sourceCollab': 'From Collab Notes', | |
| 'files.empty': 'No files yet', | |
| 'files.emptyHint': 'Upload files to attach them to your trip', | |
| 'files.openTab': 'Open in new tab', | |
| 'files.confirm.delete': 'Are you sure you want to delete this file?', | |
| 'files.toast.deleted': 'File deleted', | |
| 'files.toast.deleteError': 'Failed to delete file', | |
| 'files.sourcePlan': 'Day Plan', | |
| 'files.sourceBooking': 'Booking', | |
| 'files.sourceTransport': 'Transport', | |
| 'files.attach': 'Attach', | |
| 'files.pasteHint': 'You can also paste images from clipboard (Ctrl+V)', | |
| 'files.trash': 'Trash', | |
| 'files.trashEmpty': 'Trash is empty', | |
| 'files.emptyTrash': 'Empty Trash', | |
| 'files.restore': 'Restore', | |
| 'files.star': 'Star', | |
| 'files.unstar': 'Unstar', | |
| 'files.assign': 'Assign', | |
| 'files.assignTitle': 'Assign File', | |
| 'files.assignPlace': 'Place', | |
| 'files.assignBooking': 'Booking', | |
| 'files.assignTransport': 'Transport', | |
| 'files.unassigned': 'Unassigned', | |
| 'files.unlink': 'Remove link', | |
| 'files.toast.trashed': 'Moved to trash', | |
| 'files.toast.restored': 'File restored', | |
| 'files.toast.trashEmptied': 'Trash emptied', | |
| 'files.toast.assigned': 'File assigned', | |
| 'files.toast.assignError': 'Assignment failed', | |
| 'files.toast.restoreError': 'Restore failed', | |
| 'files.confirm.permanentDelete': | |
| 'Permanently delete this file? This cannot be undone.', | |
| 'files.confirm.emptyTrash': | |
| 'Permanently delete all trashed files? This cannot be undone.', | |
| 'files.noteLabel': 'Note', | |
| 'files.notePlaceholder': 'Add a note...', | |
| }; | |
| export default files; | |