From 4c7e8aac0dbc9fd3de555f818126651d1377f10d Mon Sep 17 00:00:00 2001 From: Claire Gravely Date: Fri, 3 Jun 2016 10:38:25 +0200 Subject: [PATCH] Bug 16642 - Fix capitalisation for upload patron image To fix capitalisation on the staff interface when patronimages is turned on. Test plan: 1. In staff interface. Turn on patronimages sys preference. 2. Go to a patron without an image and check that the "Upload patron image" box heading now has correct capitalisation. 3. Go to a patron with an image already uploaded and check the "Manage patron image" box heading has correct capitalisation. Signed-off-by: Sofia --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index b775673..80a80a9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -276,10 +276,10 @@ function validate1(date) {
[% IF ( picture ) %] - Manage Patron Image + Manage patron image
To update the image for [% title %] [% surname %], select a new image file and click 'Upload.'
Click the 'Delete' button to remove the current image. [% ELSE %] - Upload Patron Image + Upload patron image
[% title %] [% firstname %] [% surname %] does not currently have an image available. To import an image for [% title %] [% surname %], enter the name of an image file to upload. [% END %]
Only PNG, GIF, JPEG, XPM formats are supported. -- 1.7.10.4