From 98a976616c4514f9dd63d09844b2d12d111d29e0 Mon Sep 17 00:00:00 2001 From: Doug Le Tough Date: Sun, 26 Nov 2017 03:03:06 +0100 Subject: [PATCH] "REmove french from tetawebapp.js" --- tetawebapp/static/scripts/tetawebapp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)"; } };