Bug 11935: fix capitalization: OPAC prog theme, checkouts tab
authorOwen Leonard <oleonard@myacpl.org>
Fri, 14 Mar 2014 15:10:19 +0000 (11:10 -0400)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 13 Jun 2014 12:55:47 +0000 (08:55 -0400)
opac-user.tt in the prog theme contains 'Renew Selected' and 'Renew
All'. These are incorrectly capitalized. This patch corrects.

To test you must have OpacRenewalAllowed enabled. Apply the patch,
switch to the prog theme, and log in to the OPAC as a patron who has
checkouts.

At the bottom of the table of checkouts you should see the renew buttons
with correct capitalization.

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
String change, all good.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
(cherry picked from commit 657cd3c4c0a784e2d8e202b94d538c9229fb463a)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
(cherry picked from commit 8dc1661d598aee9681f29794bf60dd2e4205d22d)

koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt

index 2b8d482..23fe3e5 100644 (file)
@@ -206,7 +206,7 @@ $.tablesorter.addParser({
         [% END %]</tbody>
         </table>
        [% IF ( canrenew && !userdebarred && OpacRenewalAllowed ) %]
-        <input type="submit" value="Renew Selected" />
+        <input type="submit" value="Renew selected" />
         [% END %]
         </form>
         [% IF ( canrenew && !userdebarred && OpacRenewalAllowed ) %]
@@ -216,7 +216,7 @@ $.tablesorter.addParser({
             [% FOREACH ISSUE IN ISSUES %]
             <input type="hidden" name="item" value="[% ISSUE.itemnumber %]" />
             [% END %]
-            <input type="submit" value="Renew All" />
+            <input type="submit" value="Renew all" />
         </form>
         [% END %]
     [% ELSE %]