Bug 10186: Fix a typo in subscription-add.tt : 2/years should be 2/year
authorMathieu Saby <mathieu.saby@univ-rennes2.fr>
Sat, 4 May 2013 09:07:55 +0000 (11:07 +0200)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 20 May 2013 14:55:14 +0000 (07:55 -0700)
In subscription-add.tt dropdown list for periodiciy, the description for 9 value should be "2/year" (2 issues each year)
At present, if the option value is selected, it is "2/years".
This patch supresses the "s" after "year".

To test :
- in a subscription, change periodicity to "2/year"
- save the subscription
- reopen it and check the value is labelled "2/year"

Signed-off-by: David Cook <dcook@prosentient.com.au>
Trivial change. Works as described.
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt

index 2f1dc7f..fb38113 100644 (file)
@@ -1216,7 +1216,7 @@ $(document).ready(function() {
                 [% END %]
 
                 [% IF ( periodicity9 ) %]
-                    <option value="9" selected="selected">2/years</option>
+                    <option value="9" selected="selected">2/year</option>
                 [% ELSE %]
                     <option value="9">2/year</option>
                 [% END %]