From 2ae85df651502ebf165a286c21d9c909eecb46fa Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 10 Aug 2019 21:55:52 +0200 Subject: [PATCH] Bug 23447: Fix capitalization and other minor edits on patron batch edit template Just some small fixes: - Category => Patron category (more specific for translation) - Attribute => Patron attribute - Opac Note => OPAC note - Add missing colons (:) after some of the labels To test: - Find an existing cardnumber - Go to Tools > Patron batch modification - Use cardnumber in input field and continue - Verify strings show as noted above - Apply patch - Repeat and verify strings have changed, everything still works Signed-off-by: Owen Leonard --- .../intranet-tmpl/prog/en/modules/tools/modborrowers.tt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt index 01fba7512e7..539faa98b9d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt @@ -140,7 +140,7 @@ Surname First name Library - Category + Patron category City State ZIP/Postal code @@ -148,7 +148,7 @@ Registration date Expiry date Circulation note - Opac Note + OPAC note [% FOREACH attrh IN attributes_header %] [% attrh.attribute | html %] [% END %] @@ -208,15 +208,15 @@ [% CASE 'branchcode' %] Library: [% CASE 'categorycode' %] - Category + Patron category: [% CASE 'city' %] - City + City: [% CASE 'state' %] - State + State: [% CASE 'zipcode' %] - ZIP/Postal code + ZIP/Postal code: [% CASE 'country' %] - Country + Country: [% CASE 'sort1' %] Sort 1: [% CASE 'sort2' %] @@ -259,7 +259,7 @@ [% END %] [% IF ( patron_attributes_codes ) %]
  • -