remove the word json

This commit is contained in:
EthanHealy01 2025-12-04 20:12:59 +00:00
parent 92a0f3df9d
commit 4e4223e22b
2 changed files with 2 additions and 2 deletions

View File

@ -6034,7 +6034,7 @@ alpha = "This alpha viewer is still evolving—certain fonts, colours, transpare
[pdfTextEditor.empty]
title = "No document loaded"
subtitle = "Load a PDF or JSON file to begin editing text content."
dropzone = "Drag and drop a PDF or JSON file here, or click to browse"
dropzone = "Drag and drop a PDF here, or click to browse"
dropzoneWithFiles = "Select a file from the Files tab, or drag and drop a PDF or JSON file here, or click to browse"
[pdfTextEditor.welcomeBanner]

View File

@ -1453,7 +1453,7 @@ const selectionToolbarPosition = useMemo(() => {
<Text size="sm" c="dimmed" ta="center" maw={420}>
{activeFiles.length > 0
? t('pdfTextEditor.empty.dropzoneWithFiles', 'Select a file from the Files tab, or drag and drop a PDF or JSON file here, or click to browse')
: t('pdfTextEditor.empty.dropzone', 'Drag and drop a PDF or JSON file here, or click to browse')}
: t('pdfTextEditor.empty.dropzone', 'Drag and drop a PDF here, or click to browse')}
</Text>
</Stack>
</Dropzone>