From d485ff32b0949f1e39bb5325a4dbb49db89ec582 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 28 Nov 2023 15:54:38 +0000 Subject: [PATCH] Bug 35422: Fix translation of suggestions title tag This patch corrects a missed instance of a string in the title tag which should have been wrapped in the translation function [% t() %] To test, apply the patch and go to Suggestions. - Click "New purchase suggestion" - The title of the page should be correct: "Add suggestion" - Confirm that translation is improved: - Update and reinstall active translations (for instance fr-FR): perl misc/translator/translate update fr-FR - Check the corresponding po file, in this case fr-FR-messages.po - There should be an entry for the string "Add suggestion" Signed-off-by: David Nind Signed-off-by: Marcel de Rooy Signed-off-by: Katrin Fischer --- .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt index 19007aefde..da321ebb7b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -14,7 +14,7 @@ [% IF ( suggestionid ) %] [% tx("Edit suggestion #{suggestion_number}", { suggestion_number = suggestionid }) | html %] › [% ELSE %] - Add suggestion › + [% t("Add suggestion") | html %] › [% END %] [% ELSIF ( op == 'show' ) %] [% tx("Show suggestion #{suggestion_number}", { suggestion_number = suggestionid }) | html %] › -- 2.20.1