Merge pull request #323 from AnTheMaker/patch-1

Show detected Language (#314)
This commit is contained in:
Piero Toffanin 2022-10-01 10:40:12 -04:00 committed by GitHub
commit 7c37681afc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -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");
}

View file

@ -142,6 +142,7 @@
<div class="row mb-0">
<div class="col s6 language-select">
<span>Translate from</span>
<span><i>[[ detectedLangText ]]</i></span>
<select class="browser-default" v-model="sourceLang" ref="sourceLangDropdown" @change="handleInput">
<template v-for="option in langs">
<option :value="option.code">[[ option.name ]]</option>