From 85742d4e1aecee63d7b946f31505160f6896aff8 Mon Sep 17 00:00:00 2001 From: James Brunton Date: Tue, 16 Sep 2025 14:47:34 +0100 Subject: [PATCH] Change submit message to Apply Rotation --- frontend/public/locales/en-GB/translation.json | 2 +- frontend/src/tools/Rotate.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/public/locales/en-GB/translation.json b/frontend/public/locales/en-GB/translation.json index da708ac41..613d9a9c2 100644 --- a/frontend/public/locales/en-GB/translation.json +++ b/frontend/public/locales/en-GB/translation.json @@ -757,7 +757,7 @@ "rotate": { "tags": "server side", "title": "Rotate PDF", - "submit": "Rotate", + "submit": "Apply Rotation", "error": { "failed": "An error occurred while rotating the PDF." }, diff --git a/frontend/src/tools/Rotate.tsx b/frontend/src/tools/Rotate.tsx index e68ec0ba7..0b45d8d54 100644 --- a/frontend/src/tools/Rotate.tsx +++ b/frontend/src/tools/Rotate.tsx @@ -38,7 +38,7 @@ const Rotate = (props: BaseToolProps) => { }, ], executeButton: { - text: t("rotate.submit", "Rotate"), + text: t("rotate.submit", "Apply Rotation"), isVisible: !base.hasResults, loadingText: t("loading"), onClick: base.handleExecute,