Translate message at end of countdown

This commit is contained in:
Remi Rampin 2021-01-25 12:52:21 -05:00
parent 67e0ea63dd
commit 619235ae96
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("clock").innerHTML = "The wedding will start ASAP!";
document.getElementById("clock").innerHTML = "Le mariage commence maintenant !";
}
}, 1000);
</script>