From 88a58bb3c17d007558ed83bdedb2de5e9f9825ac Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 14 Feb 2020 14:02:09 +0000 Subject: [PATCH] Bug 19718: (follow-up) Make messages translatable --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt index 30c63ed0d5..d637f705d8 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -162,8 +162,13 @@
[% IF bibitemloo.forced_hold_level %]
- You already have at least one [% bibitemloo.forced_hold_level %] level hold on this title. - All further holds must be [% bibitemloo.forced_hold_level %] level. + [% IF bibitemloo.forced_hold_level == 'item' %] + You already have at least one item level hold on this title. + All further holds must be item level. + [% ELSE %] + You already have at least one record level hold on this title. + All further holds must be record level. + [% END %]
[% END %]

-- 2.11.0