From 8a27458d4c294e8960d21430b77e5633963a55d2 Mon Sep 17 00:00:00 2001 From: EthanHealy01 Date: Tue, 28 Oct 2025 20:08:59 +0000 Subject: [PATCH] translation files --- frontend/public/locales/en-GB/translation.json | 9 +++++++++ frontend/public/locales/en-US/translation.json | 9 +++++++++ frontend/src/components/tools/compare/types.ts | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/frontend/public/locales/en-GB/translation.json b/frontend/public/locales/en-GB/translation.json index 98dd7c10e..a35ba10ee 100644 --- a/frontend/public/locales/en-GB/translation.json +++ b/frontend/public/locales/en-GB/translation.json @@ -2202,6 +2202,15 @@ "processing": "Analysing differences...", "complete": "Comparison ready" }, + "longJob": { + "title": "Large comparison in progress", + "body": "These PDFs together exceed 2,000 pages. Processing can take several minutes." + }, + "slowOperation": { + "title": "Still working…", + "body": "This comparison is taking longer than usual. You can let it continue or cancel it.", + "cancel": "Cancel comparison" + }, "pageCount": "{{count}} pages", "lastModified": "Last modified", "newLine": "new-line", diff --git a/frontend/public/locales/en-US/translation.json b/frontend/public/locales/en-US/translation.json index 0f4f42872..93dab8a0f 100644 --- a/frontend/public/locales/en-US/translation.json +++ b/frontend/public/locales/en-US/translation.json @@ -1341,6 +1341,15 @@ "processing": "Analyzing differences...", "complete": "Comparison ready" }, + "longJob": { + "title": "Large comparison in progress", + "body": "These PDFs together exceed 2,000 pages. Processing can take several minutes." + }, + "slowOperation": { + "title": "Still working…", + "body": "This comparison is taking longer than usual. You can let it continue or cancel it.", + "cancel": "Cancel comparison" + }, "error": { "selectRequired": "Select a base and comparison document.", "filesMissing": "Unable to locate the selected files. Please re-select them.", diff --git a/frontend/src/components/tools/compare/types.ts b/frontend/src/components/tools/compare/types.ts index 7b85ebb77..684f13200 100644 --- a/frontend/src/components/tools/compare/types.ts +++ b/frontend/src/components/tools/compare/types.ts @@ -5,7 +5,7 @@ export interface PagePreview { width: number; height: number; rotation: number; - url: string; + url: string | null; } export interface WordHighlightEntry {