Commit 235049b9 authored by Valentin Deville's avatar Valentin Deville Committed by Franco Fichtner

Fix bug in some languages with quotes

parent baa813eb
......@@ -388,7 +388,7 @@ $( document ).ready(function() {
BootstrapDialog.show({
type:BootstrapDialog.TYPE_DANGER,
title: "<?= gettext("Certificate");?>",
message: '<?=gettext("Do you really want to remove this certificate association?") .'\n'. gettext("(Certificate will not be deleted)");?>',
message: "<?=gettext("Do you really want to remove this certificate association?") .'\n'. gettext("(Certificate will not be deleted)");?>",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
......@@ -412,7 +412,7 @@ $( document ).ready(function() {
BootstrapDialog.show({
type:BootstrapDialog.TYPE_DANGER,
title: "<?= gettext("User");?>",
message: '<?=html_safe(gettext("Do you really want to delete this user?"));?>' + '<br/>('+username+")",
message: "<?=html_safe(gettext('Do you really want to delete this user?'));?>" + "<br/>("+username+")",
buttons: [{
label: "<?= gettext("No");?>",
action: function(dialogRef) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment