diff --git a/frontend/public/locales/en-GB/translation.json b/frontend/public/locales/en-GB/translation.json index 7fa1036db..70aeefbf4 100644 --- a/frontend/public/locales/en-GB/translation.json +++ b/frontend/public/locales/en-GB/translation.json @@ -50,6 +50,7 @@ "title": "Files", "placeholder": "Select a PDF file in the main view to get started", "upload": "Upload", + "uploadFiles": "Upload Files", "addFiles": "Add files", "selectFromWorkbench": "Select files from the workbench or " }, @@ -2068,7 +2069,7 @@ "loading": "Loading...", "or": "or", "dropFileHere": "Drop file here or click to upload", - "dropFilesHere": "Drop files here or click to upload", + "dropFilesHere": "Drop files here or click the upload button", "pdfFilesOnly": "PDF files only", "supportedFileTypes": "Supported file types", "upload": "Upload", @@ -2381,4 +2382,4 @@ "processImagesDesc": "Converts multiple image files into a single PDF document, then applies OCR technology to extract searchable text from the images." } } -} +} \ No newline at end of file diff --git a/frontend/src/components/shared/LandingPage.tsx b/frontend/src/components/shared/LandingPage.tsx index 92078e850..688bc2c89 100644 --- a/frontend/src/components/shared/LandingPage.tsx +++ b/frontend/src/components/shared/LandingPage.tsx @@ -189,7 +189,7 @@ const LandingPage = () => { className="text-[var(--accent-interactive)]" style={{ fontSize: '.8rem' }} > - {t('fileUpload.dropFilesHere', 'Drop files here or click to upload')} + {t('fileUpload.dropFilesHere', 'Drop files here or click the upload button')} diff --git a/frontend/src/components/tools/shared/FileStatusIndicator.tsx b/frontend/src/components/tools/shared/FileStatusIndicator.tsx index 28b8bf428..9b375fc2f 100644 --- a/frontend/src/components/tools/shared/FileStatusIndicator.tsx +++ b/frontend/src/components/tools/shared/FileStatusIndicator.tsx @@ -100,7 +100,7 @@ const FileStatusIndicator = ({ style={{ cursor: 'pointer', display: 'inline-flex', alignItems: 'center', gap: '0.25rem' }} > - {t("files.upload", "Upload")} + {t("files.uploadFiles", "Upload Files")} );