Translate English

This commit is contained in:
MasterAcnolo
2025-11-19 16:48:07 +01:00
parent 69bbcee885
commit ef784dd19c
11 changed files with 64 additions and 44 deletions

View File

@@ -5,7 +5,7 @@ const button = form.querySelector("button");
form.addEventListener("submit", async (e) => {
e.preventDefault();
button.disabled = true; // Empêche les clics multiples
statusDiv.textContent = "Téléchargement en cours...";
statusDiv.textContent = "Download in progress...";
const formData = new FormData(form);
const params = new URLSearchParams(formData);
@@ -26,7 +26,7 @@ form.addEventListener("submit", async (e) => {
statusDiv.textContent = text;
} catch {
statusDiv.textContent = "❌ Une erreur sest produite.";
statusDiv.textContent = "❌ An Error has Occured.";
} finally {
button.disabled = false;