remove mentions of JSON

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

View File

@ -6035,7 +6035,7 @@ alpha = "This alpha viewer is still evolving—certain fonts, colours, transpare
title = "No document loaded"
subtitle = "Load a PDF or JSON file to begin editing text content."
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"
dropzoneWithFiles = "Select a file from the Files tab, or drag and drop a PDF here, or click to browse"
[pdfTextEditor.welcomeBanner]
title = "Welcome to PDF Text Editor (Early Access)"

View File

@ -1452,7 +1452,7 @@ const selectionToolbarPosition = useMemo(() => {
</Text>
<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.dropzoneWithFiles', 'Select a file from the Files tab, or drag and drop a PDF here, or click to browse')
: t('pdfTextEditor.empty.dropzone', 'Drag and drop a PDF here, or click to browse')}
</Text>
</Stack>