From 96fb32235090735b1ec50f866254a859c556e49f Mon Sep 17 00:00:00 2001
From: David Nind <david@davidnind.com>
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 <david@davidnind.com>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
---
 .../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 @@
 <title>[% FILTER collapse %]
     [% IF op =='add_form' %]
        [% IF credit_type.code %]
-           [% tx("Modify credit type {credit_type}", {credit_type = credit_type.code }) | html %] &rsaquo;
+           [% tx("Modify credit type '{credit_type}'", {credit_type = credit_type.code }) | html %] &rsaquo;
        [% ELSE %]
            [% t("New credit type") | html %] &rsaquo;
        [% 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.30.2