Fix file upload limits and UI performance issues
- Remove artificial 18MB file size restrictions across all layers - Increase limits to industry standard: 5GB for file operations, 1GB for JSON - Eliminate duplicate resize handlers causing UI instability - Fix Terminal connection blank screen by removing 300ms delay - Optimize clipboard state flow for copy/paste functionality - Complete i18n implementation removing hardcoded strings - Apply Linus principle: eliminate complexity, fix data structure issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -191,6 +191,7 @@
|
||||
},
|
||||
"common": {
|
||||
"close": "Close",
|
||||
"minimize": "Minimize",
|
||||
"online": "Online",
|
||||
"offline": "Offline",
|
||||
"maintenance": "Maintenance",
|
||||
@@ -661,7 +662,7 @@
|
||||
"deleteItem": "Delete Item",
|
||||
"currentPath": "Current Path",
|
||||
"uploadFileTitle": "Upload File",
|
||||
"maxFileSize": "Max: 100MB (JSON) / 200MB (Binary)",
|
||||
"maxFileSize": "Max: 1GB (JSON) / 5GB (Binary) - Large files supported",
|
||||
"removeFile": "Remove File",
|
||||
"clickToSelectFile": "Click to select a file",
|
||||
"chooseFile": "Choose File",
|
||||
@@ -819,7 +820,46 @@
|
||||
"pinFile": "Pin file",
|
||||
"addToShortcuts": "Add to shortcuts",
|
||||
"selectLocationToSave": "Select location to save",
|
||||
"downloadToDefaultLocation": "Download to default location"
|
||||
"downloadToDefaultLocation": "Download to default location",
|
||||
"pasteFailed": "Paste failed",
|
||||
"noUndoableActions": "No undoable actions",
|
||||
"undoCopySuccess": "Undid copy operation: Deleted {{count}} copied files",
|
||||
"undoCopyFailedDelete": "Undo failed: Could not delete any copied files",
|
||||
"undoCopyFailedNoInfo": "Undo failed: Could not find copied file information",
|
||||
"undoMoveSuccess": "Undid move operation: Moved {{count}} files back to original location",
|
||||
"undoMoveFailedMove": "Undo failed: Could not move any files back",
|
||||
"undoMoveFailedNoInfo": "Undo failed: Could not find moved file information",
|
||||
"undoDeleteNotSupported": "Delete operation cannot be undone: Files have been permanently deleted from server",
|
||||
"undoTypeNotSupported": "Unsupported undo operation type",
|
||||
"undoOperationFailed": "Undo operation failed",
|
||||
"unknownError": "Unknown error",
|
||||
"enterPath": "Enter path...",
|
||||
"editPath": "Edit path",
|
||||
"confirm": "Confirm",
|
||||
"cancel": "Cancel",
|
||||
"folderName": "Folder name",
|
||||
"find": "Find...",
|
||||
"replaceWith": "Replace with...",
|
||||
"startTyping": "Start typing...",
|
||||
"fileSavedSuccessfully": "File saved successfully",
|
||||
"autoSaveFailed": "Auto-save failed",
|
||||
"fileAutoSaved": "File auto-saved",
|
||||
"fileDownloadedSuccessfully": "File downloaded successfully",
|
||||
"moveFileFailed": "Failed to move {{name}}",
|
||||
"moveOperationFailed": "Move operation failed",
|
||||
"canOnlyCompareFiles": "Can only compare two files",
|
||||
"comparingFiles": "Comparing files: {{file1}} and {{file2}}",
|
||||
"dragFailed": "Drag operation failed",
|
||||
"filePinnedSuccessfully": "File \"{{name}}\" pinned successfully",
|
||||
"pinFileFailed": "Failed to pin file",
|
||||
"fileUnpinnedSuccessfully": "File \"{{name}}\" unpinned successfully",
|
||||
"unpinFileFailed": "Failed to unpin file",
|
||||
"shortcutAddedSuccessfully": "Folder shortcut \"{{name}}\" added successfully",
|
||||
"addShortcutFailed": "Failed to add shortcut",
|
||||
"operationCompletedSuccessfully": "{{operation}} {{count}} items successfully",
|
||||
"operationCompleted": "{{operation}} {{count}} items",
|
||||
"downloadFileSuccess": "File {{name}} downloaded successfully",
|
||||
"downloadFileFailed": "Download failed"
|
||||
},
|
||||
"tunnels": {
|
||||
"title": "SSH Tunnels",
|
||||
|
||||
Reference in New Issue
Block a user