Fix French words in alerts [#9]

This commit is contained in:
Raphaël Jakse 2020-05-23 20:25:19 +02:00
parent 3bc6978545
commit 3403f2c78c
1 changed files with 2 additions and 2 deletions

View File

@ -87,10 +87,10 @@
divAlertConfirm = document.createElement("div");
divAlertConfirm.className = _("alert-confirm");
divAlertConfirm.appendChild(document.createElement("button"));
divAlertConfirm.lastChild.textContent = _("Oui");
divAlertConfirm.lastChild.textContent = _("Yes");
divAlertConfirm.lastChild.onclick = confirmYes;
divAlertConfirm.appendChild(document.createElement("button"));
divAlertConfirm.lastChild.textContent = _("Non");
divAlertConfirm.lastChild.textContent = _("No");
divAlertConfirm.lastChild.onclick = confirmNo;
divAlertButton = document.createElement("div");