a
This commit is contained in:
parent
e7884ca20c
commit
9a8a8050c5
|
|
@ -225,7 +225,7 @@
|
|||
$demande = $assure->checkdemandereconnaissancefaciale_id();
|
||||
|
||||
if(!$demande) {
|
||||
$message = $codeLangue == 'en_US' ? "No requests found!" : "Aucune demande trouvée!";
|
||||
$message = t('no_request_found', $lang, $translations);
|
||||
afficherMessage("<strong>$message</strong>", "Erreur");
|
||||
}
|
||||
|
||||
|
|
@ -270,18 +270,17 @@
|
|||
// changer le status
|
||||
$assure->maj_demandereconnaissancefaciale("3"); // Expirée
|
||||
|
||||
// $message = $codeLangue == 'en_US' ? "Request expired since $dateExpirationEng !" : "Demande expirée depuis $dateExpirationFr !";
|
||||
$message = t(
|
||||
'request_expired',
|
||||
$lang,
|
||||
$translations
|
||||
). ($lang == 'en_US' ? $dateExpirationEng : $dateExpirationFr) . "kanze";
|
||||
). ($lang == 'en_US' ? $dateExpirationEng : $dateExpirationFr);
|
||||
|
||||
afficherMessage("<strong>$message</strong>", "Erreur");
|
||||
}
|
||||
|
||||
if($codeEtat=="1") {
|
||||
$message = $codeLangue == 'en_US' ? "Verification already completed!" : "Vérification déjà effectuée!";
|
||||
$message = t('verification_done', $lang, $translations);
|
||||
afficherMessage("<strong>$message</strong>", "Information");
|
||||
}
|
||||
|
||||
|
|
@ -298,7 +297,7 @@
|
|||
// changer le status
|
||||
$assure->maj_demandereconnaissancefaciale("5"); // Trop de tentatives
|
||||
|
||||
$message = $codeLangue == 'en_US' ? "Too many attempts!" : "Trop de tentatives!";
|
||||
$message = t('too_many_attempts', $lang, $translations);
|
||||
afficherMessage("<strong>$message</strong>", "Erreur");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user