diff --git a/tetawebapp/static/scripts/tetawebapp.js b/tetawebapp/static/scripts/tetawebapp.js index 6176345..8390650 100644 --- a/tetawebapp/static/scripts/tetawebapp.js +++ b/tetawebapp/static/scripts/tetawebapp.js @@ -67,12 +67,12 @@ function get_html_from_ajax(obj, url) { // HTML content is then put as innerHTML to obj var xhttp = new XMLHttpRequest(); xhttp.onerror = function(){ - obj.innerHTML = "Erreur lors de la récuperation du contenu (1)"; + obj.innerHTML = "Error while getting content (1)"; }; xhttp.onload = function(){ if (xhttp.status != 200) { - obj.innerHTML = "Erreur lors de la récuperation du contenu (2)"; + obj.innerHTML = "Error while getting content (2)"; } };