@@ -, +, @@ strings and that they look correct --- .../intranet-tmpl/prog/en/modules/clubs/club-enrollments.tt | 3 ++- .../intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt | 9 +++++---- koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt | 9 +++++---- koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-enroll.tt | 5 ++--- .../intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt | 7 ++++--- 5 files changed, 18 insertions(+), 15 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/club-enrollments.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/club-enrollments.tt @@ -1,6 +1,7 @@ [% USE KohaDates %] [% USE Branches %] [% USE Koha %] +[% USE HtmlTags %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Patron clubs › Club enrollments @@ -17,7 +18,7 @@
-

Club enrollments for [% club.name %]

+

Club enrollments for [% club.name | $HtmlTags tag='i' %]

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt @@ -2,6 +2,7 @@ [% USE Branches %] [% USE AuthorisedValues %] [% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %] +[% USE HtmlTags %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Patron clubs › @@ -19,9 +20,9 @@ [% INCLUDE 'cat-search.inc' %] <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › <a href="clubs.pl">Patron clubs</a> › [% IF club %] - Modify club <i>[% club.name %]</i> + <span>Modify club [% club.name | $HtmlTags tag='i' %]</span> [% ELSE %] - Create a new <i>[% club_template.name %]</i> club + <span>Create a new [% club_template.name | $HtmlTags tag='i' %] club</span> [% END %] </div> @@ -37,9 +38,9 @@ <legend> [% IF club %] - Modify club <i>[% club.name %]</i> + <span>Modify club [% club.name | $HtmlTags tag='i' %]</span> [% ELSE %] - Create a new <i>[% club_template.name %]</i> club + <span>Create a new [% club_template.name | $HtmlTags tag='i' %] club</span> [% END %] </legend> --- a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt @@ -1,6 +1,7 @@ [% USE KohaDates %] [% USE Branches %] [% USE Koha %] +[% USE HtmlTags %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] <title>Koha › Tools › Patron clubs @@ -23,17 +24,17 @@ [% IF club_template %]
[% IF stored == 'updated' %] -

Club template [% club_template.name %] was updated.

+

Club template [% club_template.name | $HtmlTags tag='i' %] was updated.

[% ELSE %] -

Club template [% club_template.name %] was saved.

+

Club template [% club_template.name | $HtmlTags tag='i' %] was saved.

[% END %]
[% ELSIF club %]
[% IF stored == 'updated' %] -

Club [% club.name %] was updated.

+

Club [% club.name | $HtmlTags tag='i' %] was updated.

[% ELSE %] -

Club [% club.name %] was saved.

+

Club [% club.name | $HtmlTags tag='i' %] was saved.

[% END %]
[% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-enroll.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-enroll.tt @@ -1,9 +1,8 @@ [% USE AuthorisedValues %] [% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %] +[% USE HtmlTags %] -

- Enroll in [% club.name %] -

+

Enroll in [% club.name | $HtmlTags tag='i' %]

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt @@ -1,5 +1,6 @@ [% USE Branches %] [% USE AuthorisedValues %] +[% USE HtmlTags %] [% INCLUDE 'doc-head-open.inc' %] Koha › Tools › Patron clubs › [% IF club_template %] @@ -22,7 +23,7 @@ [% INCLUDE 'cat-search.inc' %] <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › <a href="clubs.pl">Patron clubs</a> › [% IF club_template %] - Modify club template <i>[% club_template.name %]</i> + Modify club template [% club_template.name | $HtmlTags tag='i' %] [% ELSE %] Create a new club template [% END %] @@ -37,9 +38,9 @@ <h2> [% IF club_template %] - Modify club template <i>[% club_template.name %]</i> + <span>Modify club template [% club_template.name | $HtmlTags tag='i' %]</span> [% ELSE %] - Create a new club template + <span>Create a new club template</span> [% END %] </h2> --