diff --git a/frontend/public/locales/en-GB/translation.json b/frontend/public/locales/en-GB/translation.json index e4fcb2884..8603c3049 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", "noFiles": "No files uploaded. ", "selectFromWorkbench": "Select files from the workbench or " @@ -2375,4 +2376,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 14322076e..997dad774 100644 --- a/frontend/src/components/shared/LandingPage.tsx +++ b/frontend/src/components/shared/LandingPage.tsx @@ -191,7 +191,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 ca56b3c22..3848e277e 100644 --- a/frontend/src/components/tools/shared/FileStatusIndicator.tsx +++ b/frontend/src/components/tools/shared/FileStatusIndicator.tsx @@ -101,7 +101,7 @@ const FileStatusIndicator = ({ style={{ cursor: 'pointer', display: 'inline-flex', alignItems: 'center', gap: '0.25rem' }} > - {t("files.upload", "Upload")} + {t("files.uploadFiles", "Upload Files")} );