From 4b7246cf7ed0d77e16bc0721e7028118d26e8a21 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 7 Apr 2017 10:13:00 +0200 Subject: [PATCH] Bug 18349: [QA Follow-up] Add four missing error messages Content-Type: text/plain; charset=utf-8 The error codes come from CanBookBeIssued. The warnings speak for themselves. Note that the GNA message is similar to the one used in opac-user.tt (gonenoaddress is translated to the patron as contact information not up-to-date). Signed-off-by: Marcel de Rooy --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt index 0ec7679..a2ed9c4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -57,9 +57,11 @@ [% ELSIF ( circ_error_WTHDRAWN ) %] This item has been withdrawn from the collection. [% ELSIF ( circ_error_RESTRICTED ) %] + This item is restricted. [% ELSIF ( circ_error_RESERVED ) %] This item is on hold for another patron. [% ELSIF ( circ_error_ITEMNOTSAMEBRANCH ) %] + This item belongs to another branch. [% ELSIF ( circ_error_EXPIRED ) %] Your account has expired. [% ELSIF ( circ_error_DEBARRED ) %] @@ -67,7 +69,9 @@ [% ELSIF ( circ_error_CARD_LOST ) %] This card has been declared lost. [% ELSIF ( circ_error_GNA ) %] + Your contact information seems to be incomplete. [% ELSIF ( circ_error_INVALID_DATE ) %] + Due date is not valid. [% END %] Please see a member of the library staff.

-- 2.1.4