From edb053cdcaa5af83cdecd7c59618ec0fd656475a Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 20 Jun 2022 13:20:58 +0000 Subject: [PATCH] Bug 30994: Typo: item was on loan. couldn't be returned. This patch updates some language in the inventory template to make it readable and consistent: Punctuation fixed, capitalization made more consistent, language corrections ("check in" instead of "return"). To test you can try to apply the patch and trigger the various errors in the inventory interface, but it's probably enough to visually confirm the changes in the patch. --- .../intranet-tmpl/prog/en/modules/tools/inventory.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt index 2096880d23..4f952b5452 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -57,10 +57,10 @@ [% FOREACH error IN errorloop %]
[% error.barcode | html %] - [% IF (error.ERR_BARCODE) %]: barcode not found[% END %] - [% IF (error.ERR_WTHDRAWN) %]: item withdrawn[% END %] - [% IF (error.ERR_ONLOAN_RET) %]: item was on loan. It was returned before marked as seen[% END %] - [% IF (error.ERR_ONLOAN_NOT_RET) %]: item was on loan. couldn't be returned.[% END %] + [% IF (error.ERR_BARCODE) %]: Barcode not found.[% END %] + [% IF (error.ERR_WTHDRAWN) %]: Item withdrawn.[% END %] + [% IF (error.ERR_ONLOAN_RET) %]: Item was on loan. It was checked in before being marked as seen.[% END %] + [% IF (error.ERR_ONLOAN_NOT_RET) %]: Item was on loan and could not be checked in.[% END %]
[% END %] [% UNLESS op %] -- 2.30.2