Bug 6574 - js error in en-GB and en-NZ translations due to improper quoting
To replicate: * install en-NZ translation (or en-GB) * activate the new language, and select it for use * pretend you are going to issue a book to a member (search for a member from "check out" in header) * without the patch, the toolbar will be incorrect. The toolbar will also be incorrect on moremember.pl. To test: * apply the patch * re-generate the en-NZ or en-GB translation * activate the new language, or select it for use * pretend you are going to issue a book to a member (search for a member from "check out" in header) * with the patch, the toolbar will appear to be correct. It will also be correct on moremember.pl. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
This commit is contained in:
parent
b4e255e4d7
commit
f13de4bdb6
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ function update_child() {
|
|||
}[% ELSE %][% END %]
|
||||
|
||||
function confirm_reregistration() {
|
||||
var is_confirmed = window.confirm(_('Are you sure you want to renew this patron\'s registration?'));
|
||||
var is_confirmed = window.confirm(_("Are you sure you want to renew this patron's registration?"));
|
||||
if (is_confirmed) {
|
||||
window.location = '/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&cardnumber=[% cardnumber %]&destination=[% destination %]&reregistration=y';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue