Bug 8942: Translation process breaks javascript
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / moremember.tt
index bbb5cab..39f3e55 100644 (file)
@@ -39,14 +39,14 @@ $(document).ready(function() {
     [% IF ( picture ) %]
     // new YAHOO.widget.Button("delpicture");   // FIXME: formatting mismatch between YUI and normal button
        $('#delpicture').click(function(){
-                return confirm(_('Are you sure you want to delete this patron image? This cannot be undone.'));
+                return confirm(_("Are you sure you want to delete this patron image? This cannot be undone."));
        });
        $('#manage-patron-image').find("input[value*=Upload]").click(function(){
         if($("#uploadfile").val() == ""){
             alert(_("Please choose a file to upload"));
             return false;
         }
-        return confirm(_('Are you sure you want to replace the current patron image? This cannot be undone.'));
+        return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone."));
        });[% END %]
        $("#renew_all"      ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
        $("#CheckAllitems"  ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });