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,