Update translation

This commit is contained in:
forgejo-actions[bot] 2025-04-03 22:28:14 +00:00
parent fda22f8b1f
commit b1328e7227
4 changed files with 7 additions and 7 deletions

View file

@ -1 +1 @@
Thu Apr 3 22:26:46 UTC 2025
Thu Apr 3 22:28:14 UTC 2025

View file

@ -1 +1 @@
b42d2b42b74c3d007d813df1db734185ba2cc7b4
00916278f9a3f8044e6b7dd3aeac037260f43553

View file

@ -115,22 +115,22 @@
var email = document.getElementById("email").value;
if(!agreetoterms) {
alert("Registration requires agreement of Code of Conduct");
alert("Vous devez être d'accord avec notre code de conduite"),
return false;
}
if(!email) {
alert("Email cannot be empty");
alert("Le courriel ne peut pas être vide");
return false;
}
if(mathspamtrap != "9") {
alert("Wrong math answer");
alert("Pas la bonne réponse mathématique");
return false;
}
if(await checkDuplicate(email) === true) {
alert("This email address has already requested an account");
alert("Ce courriel à déja fait une demande de compte");
return false;
}
@ -156,7 +156,7 @@
.then(response => response.json())
.then(result => {
console.log('Success:', result);
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io");
alert("Votre demande a été soumis. Un membre d'un groupe de travail va traiter votre demande sous peu. Si vous ne recevez pas de nouvelle d'ici sept jours, contactez-vous via support@ilot.io");
})
.catch(error => {
console.error('Error:', error)