This commit is contained in:
2026-01-05 21:06:07 +00:00
parent a09a0635d7
commit 8cd2d92c79
2 changed files with 16 additions and 1 deletions

View File

@@ -199,6 +199,8 @@ function alert_ebene(p_msg, p_msg_eng) {
});
}
*/
/*
function alert_ebene(p_msg, p_msg_eng)
{
codeLangue = $("#codeLangue").val();
@@ -212,6 +214,19 @@ function alert_ebene(p_msg, p_msg_eng)
alert(p_msg);
}
}
*/
function alert_ebene(msgFr, msgEn) {
const codeLangue = document.querySelector("#codeLangue")?.value || "fr_FR";
const message = (codeLangue === "en_US") ? msgEn : msgFr;
return Swal.fire({
text: message,
icon: 'info',
confirmButtonText: (codeLangue === "en_US") ? 'OK' : 'D\'accord'
});
}
/**