diff --git a/app/static/js/app.js b/app/static/js/app.js index 6605f8e..4e25f57 100644 --- a/app/static/js/app.js +++ b/app/static/js/app.js @@ -25,6 +25,8 @@ document.addEventListener('DOMContentLoaded', function(){ translatedText: "", output: "", charactersLimit: -1, + + detectedLangText: "", copyTextLabel: "Copy text", @@ -189,6 +191,8 @@ document.addEventListener('DOMContentLoaded', function(){ if (this.timeout) clearTimeout(this.timeout); this.timeout = null; + this.detectedLangText = ""; + if (this.inputText === ""){ this.translatedText = ""; this.output = ""; @@ -223,6 +227,9 @@ document.addEventListener('DOMContentLoaded', function(){ self.translatedText = res.translatedText; self.loadingTranslation = false; self.output = JSON.stringify(res, null, 4); + if(self.sourceLang == "auto" && res.detectedLanguage.length > 0){ + self.detectedLangText = res.detectedLanguage.language+" ("+res.detectedLanguage.confidence+"%)"; + } } else{ throw new Error(res.error || "Unknown error"); } diff --git a/app/templates/index.html b/app/templates/index.html index 912997b..454c49f 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -142,6 +142,7 @@
Translate from + [[ detectedLangText ]]