From def3a687762cf2e5b3820ae8bc88a37ac35ecee4 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 5 Feb 2023 03:18:05 +0100 Subject: [PATCH] Bug 32290: Fix terminology on ILL requests page This makes some fixes for the terminology used in the ill-requests.pl page: This item cannot be issued as it has no biblio record associated with it > This item cannot be checked out out as there is no bibliographic record associated with it You must choose a branch > You must choose a library View borrower details > View patron details Test plan: * You can set up ILL using the instructions on https://wiki.koha-community.org/wiki/ILL_backends * All strings will be located on the ILL request management page or the ILL requests list * Or... you could verify looking at the patch itself Signed-off-by: Owen Leonard Signed-off-by: Martin Renvoize --- .../intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index 69a34add772..5e6c7fc0ddd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -150,7 +150,7 @@ [% IF !whole.stage || whole.stage == 'form' %]

Issue requested item to [% INCLUDE 'patron-title.inc' patron = request.patron %]

[% IF !request.biblio_id || request.biblio_id.length == 0 %] -
This item cannot be issued as it has no biblio record associated with it
+
This item cannot be checked out out as there is no bibliographic record associated with it
[% END %] [% IF whole.value.errors.itemcount %]
The bibliographic record for this request has multiple items, it should only have one. Please fix this then try again.
@@ -246,7 +246,7 @@ [% END %] [% END %] [% IF whole.value.errors.branchcode %] - You must choose a branch + You must choose a library [% END %]
  • @@ -619,7 +619,7 @@
  • Patron: [% borrowerlink = "/cgi-bin/koha/members/moremember.pl" _ "?borrowernumber=" _ request.patron.borrowernumber %] - + [% request.patron.firstname _ " " _ request.patron.surname _ " [" _ request.patron.cardnumber _ "]" | html %]
  • @@ -673,7 +673,7 @@

    [% request.notesstaff | html %]

  • - Notes: + OPAC notes:

    [% request.notesopac | html %]

  • @@ -749,7 +749,7 @@ [% FOREACH comment IN request.illcomments %]
    Comment by: - + [% comment.patron.firstname _ " " _ comment.patron.surname _ " [" _ comment.patron.cardnumber _ "]" | html %] [% comment.timestamp | $KohaDates with_hours => 1 %]

    [% comment.comment | html %]

    -- 2.39.1