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 <oleonard@myacpl.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 59cffea5d0)
Signed-off-by: Jacob O'Mara <jacob.omara@ptfs-europe.com>
This commit is contained in:
Katrin Fischer 2023-02-05 03:18:05 +01:00 committed by Jacob O'Mara
parent 39612327ce
commit 1cbecfb143

View file

@ -150,7 +150,7 @@
[% IF !whole.stage || whole.stage == 'form' %]
<h1 id="ill-issue-title">Issue requested item to [% INCLUDE 'patron-title.inc' patron = request.patron %]</h1>
[% IF !request.biblio_id || request.biblio_id.length == 0 %]
<div class="alert">This item cannot be issued as it has no biblio record associated with it</div>
<div class="alert">This item cannot be checked out out as there is no bibliographic record associated with it</div>
[% END %]
[% IF whole.value.errors.itemcount %]
<div class="alert">The bibliographic record for this request has multiple items, it should only have one. Please fix this then try again.</div>
@ -246,7 +246,7 @@
[% END %]
[% END %]
[% IF whole.value.errors.branchcode %]
<span class="required">You must choose a branch</span>
<span class="required">You must choose a library</span>
[% END %]
</li>
<li class="ill_checkout_due_date">
@ -619,7 +619,7 @@
<li class="borrowernumber">
<span class="label borrowernumber">Patron:</span>
[% borrowerlink = "/cgi-bin/koha/members/moremember.pl" _ "?borrowernumber=" _ request.patron.borrowernumber %]
<a href="[% borrowerlink | url %]" title="View borrower details">
<a href="[% borrowerlink | url %]" title="View patron details">
[% request.patron.firstname _ " " _ request.patron.surname _ " [" _ request.patron.cardnumber _ "]" | html %]
</a>
</li>
@ -673,7 +673,7 @@
<p>[% request.notesstaff | html %]</p>
</li>
<li class="notesopac">
<span class="label notes_opac">Notes:</span>
<span class="label notes_opac">OPAC notes:</span>
<p>[% request.notesopac | html %]</p>
</li>
</ol>
@ -749,7 +749,7 @@
[% FOREACH comment IN request.illcomments %]
<div class="rows comment_[% comment.patron.categorycode | html %]">
<h5>Comment by:
<a href="[% borrowerlink | url %]" title="View borrower details">
<a href="[% borrowerlink | url %]" title="View patron details">
[% comment.patron.firstname _ " " _ comment.patron.surname _ " [" _ comment.patron.cardnumber _ "]" | html %]</a>
[% comment.timestamp | $KohaDates with_hours => 1 %]</h5>
<p>[% comment.comment | html %]</p>