quick text changes

This commit is contained in:
EthanHealy01 2025-08-26 15:23:14 +01:00
parent 9b8091a630
commit 660a2e34ca
3 changed files with 4 additions and 3 deletions

View File

@ -50,6 +50,7 @@
"title": "Files", "title": "Files",
"placeholder": "Select a PDF file in the main view to get started", "placeholder": "Select a PDF file in the main view to get started",
"upload": "Upload", "upload": "Upload",
"uploadFiles": "Upload files",
"addFiles": "Add files", "addFiles": "Add files",
"noFiles": "No files uploaded. ", "noFiles": "No files uploaded. ",
"selectFromWorkbench": "Select files from the workbench or " "selectFromWorkbench": "Select files from the workbench or "

View File

@ -191,7 +191,7 @@ const LandingPage = () => {
className="text-[var(--accent-interactive)]" className="text-[var(--accent-interactive)]"
style={{ fontSize: '.8rem' }} style={{ fontSize: '.8rem' }}
> >
{t('fileUpload.dropFilesHere', 'Drop files here or click to upload')} {t('fileUpload.dropFilesHere', 'Drop files here or click the upload button')}
</span> </span>
</div> </div>
</Dropzone> </Dropzone>

View File

@ -101,7 +101,7 @@ const FileStatusIndicator = ({
style={{ cursor: 'pointer', display: 'inline-flex', alignItems: 'center', gap: '0.25rem' }} style={{ cursor: 'pointer', display: 'inline-flex', alignItems: 'center', gap: '0.25rem' }}
> >
<UploadIcon style={{ fontSize: '0.875rem' }} /> <UploadIcon style={{ fontSize: '0.875rem' }} />
{t("files.upload", "Upload")} {t("files.uploadFiles", "Upload Files")}
</Anchor> </Anchor>
</Text> </Text>
); );