From 020f0bfea78477db58dd387ba5491c9d700d8e01 Mon Sep 17 00:00:00 2001 From: ScreenTinker Date: Tue, 9 Jun 2026 10:50:51 -0500 Subject: [PATCH] ui(content): advertise multi-file upload in the drop-zone text (#39) The upload input already has 'multiple' and the click handler shares handleFiles() with drag-drop, so picking multiple files (shift/ctrl-click) already works - it just wasn't discoverable ('click to upload' read as single-file). Reword to 'click to select one or more'. --- frontend/js/i18n/en.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/i18n/en.js b/frontend/js/i18n/en.js index efadc6e..724aaff 100644 --- a/frontend/js/i18n/en.js +++ b/frontend/js/i18n/en.js @@ -134,7 +134,7 @@ export default { 'content.title': 'Content Library', 'content.subtitle': 'Upload and manage your media files', 'content.help_tip': 'Upload videos and images here. Select multiple files for bulk upload. Use Remote URL to stream from external sources. Click a thumbnail to preview.', - 'content.drop': 'Drop files here or click to upload', + 'content.drop': 'Drop files here, or click to select one or more', 'content.upload_hint': 'Supports MP4, WebM, AVI, MKV, JPEG, PNG, GIF, WebP', 'content.upload_progress': 'Uploading...', 'content.upload_progress_named': 'Uploading {name}...',