From 816942f64dc943c474b5d53d84e66bfdd96a4a94 Mon Sep 17 00:00:00 2001 From: David Nind Date: Tue, 3 Oct 2023 00:00:13 +0000 Subject: [PATCH] Bug 34390: (follow-up) Add single quotes around credit type For consistency with other bugs - adds single quotes around the credit type code. Signed-off-by: David Nind Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- .../intranet-tmpl/prog/en/modules/admin/credit_types.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/credit_types.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/credit_types.tt index f4e957394c..7849c066e7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/credit_types.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/credit_types.tt @@ -8,7 +8,7 @@ [% FILTER collapse %] [% IF op =='add_form' %] [% IF credit_type.code %] - [% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %] › + [% tx("Modify credit type '{credit_type}'", {credit_type = credit_type.code }) | html %] › [% ELSE %] [% t("New credit type") | html %] › [% END %] @@ -39,7 +39,7 @@ [% END %] [% WRAPPER breadcrumb_item bc_active= 1 %] [% IF credit_type.code %] - [% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %] + [% tx("Modify credit type '{credit_type}'", {credit_type = credit_type.code }) | html %] [% ELSE %] <span>New credit type</span> [% END %] @@ -77,7 +77,7 @@ [% IF op == 'add_form' %] [% IF credit_type %] - <h1>[% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %]</h1> + <h1>[% tx("Modify credit type '{credit_type}'", {credit_type = credit_type.code }) | html %]</h1> [% ELSE %] <h1>New credit type</h1> [% END %] -- 2.39.5