From 08c0fbc2a0f3e47862fc686920c5a00eec89ace5 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" --- .../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 657a2a5cbd..85ef39ade7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -13,7 +13,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.30.2