a
This commit is contained in:
@@ -187,6 +187,7 @@ function baseSwal(options) {
|
||||
* ALERTE SIMPLE
|
||||
* Affiche une information bilingue.
|
||||
*/
|
||||
/* mis en commentaire le temps que cela fonctionne 04/01/2026
|
||||
function alert_ebene(p_msg, p_msg_eng) {
|
||||
const codeLangue = $("#codeLangue").val();
|
||||
const message = (codeLangue === "en_US") ? p_msg_eng : p_msg;
|
||||
@@ -197,6 +198,21 @@ function alert_ebene(p_msg, p_msg_eng) {
|
||||
confirmButtonText: codeLangue === "en_US" ? 'OK' : 'D\'accord'
|
||||
});
|
||||
}
|
||||
*/
|
||||
function alert_ebene(p_msg, p_msg_eng)
|
||||
{
|
||||
codeLangue = $("#codeLangue").val();
|
||||
|
||||
if(codeLangue=="en_US")
|
||||
{
|
||||
alert(p_msg_eng);
|
||||
}
|
||||
else
|
||||
{
|
||||
alert(p_msg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* CONFIRMATION
|
||||
|
||||
Reference in New Issue
Block a user