From 7db0e897982821402579c8a9879ac7f8af233dd8 Mon Sep 17 00:00:00 2001 From: James Brunton Date: Fri, 15 Aug 2025 15:30:17 +0100 Subject: [PATCH] Fix translation issues --- frontend/public/locales/en-GB/translation.json | 2 ++ frontend/public/locales/en-US/translation.json | 2 ++ frontend/src/tools/RemovePassword.tsx | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/public/locales/en-GB/translation.json b/frontend/public/locales/en-GB/translation.json index 3573d1a25..d72f32436 100644 --- a/frontend/public/locales/en-GB/translation.json +++ b/frontend/public/locales/en-GB/translation.json @@ -1881,6 +1881,7 @@ "desc": "Remove password protection from your PDF document.", "tags": "secure,Decrypt,security,unpassword,delete password", "password": { + "stepTitle": "Remove Password", "label": "Current Password", "placeholder": "Enter current password", "completed": "Password configured" @@ -1892,6 +1893,7 @@ "tooltip": { "description": "Removing password protection requires the password that was used to encrypt the PDF. This will decrypt the document, making it accessible without a password." }, + "submit": "Remove Password", "results": { "title": "Decrypted PDFs" } diff --git a/frontend/public/locales/en-US/translation.json b/frontend/public/locales/en-US/translation.json index 7956d842b..64b19443a 100644 --- a/frontend/public/locales/en-US/translation.json +++ b/frontend/public/locales/en-US/translation.json @@ -1745,6 +1745,7 @@ "desc": "Remove password protection from your PDF document.", "tags": "secure,Decrypt,security,unpassword,delete password", "password": { + "stepTitle": "Remove Password", "label": "Current Password", "placeholder": "Enter current password", "completed": "Password configured" @@ -1756,6 +1757,7 @@ "tooltip": { "description": "Removing password protection requires the password that was used to encrypt the PDF. This will decrypt the document, making it accessible without a password." }, + "submit": "Remove Password", "results": { "title": "Decrypted PDFs" } diff --git a/frontend/src/tools/RemovePassword.tsx b/frontend/src/tools/RemovePassword.tsx index cbe6e2585..42f22ba9c 100644 --- a/frontend/src/tools/RemovePassword.tsx +++ b/frontend/src/tools/RemovePassword.tsx @@ -66,7 +66,7 @@ const RemovePassword = ({ onPreviewFile, onComplete, onError }: BaseToolProps) = }, steps: [ { - title: t("removePassword.password.stepTitle", "Password"), + title: t("removePassword.password.stepTitle", "Remove Password"), isCollapsed: passwordCollapsed, onCollapsedClick: hasResults ? handleSettingsReset : undefined, tooltip: removePasswordTips,