2023-06-24 18:40:57 +00:00
|
|
|
{{template "header" .}}
|
|
|
|
<main>
|
2023-09-10 11:57:22 +00:00
|
|
|
<!-- Need to do this custom selector thingy since <select> cant submit on click -->
|
|
|
|
<div class="custom-select">
|
2023-09-11 02:15:52 +00:00
|
|
|
{{range $key, $value := .enginesNames}} {{ if eq $.Engine $key }}Translate
|
|
|
|
with: <a href="#" class="selected-option">{{$value}}</a> {{end}} {{end}}
|
2023-09-10 11:57:22 +00:00
|
|
|
<ul class="options">
|
2023-09-11 02:15:52 +00:00
|
|
|
{{range $key, $value := .enginesNames}}
|
|
|
|
<a href="/?engine={{$key}}">
|
|
|
|
<li>{{$value}}</li>
|
2023-09-10 13:41:45 +00:00
|
|
|
</a>
|
2023-09-10 11:57:22 +00:00
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br /><br />
|
|
|
|
<form action="/" method="GET" id="translation-form">
|
|
|
|
<!-- This hidden input is so that the engine gets sent in the GET request even though its not declared here -->
|
|
|
|
<input name="engine" value="{{.Engine}}" type="hidden" />
|
|
|
|
|
|
|
|
<div class="wrap languages">
|
|
|
|
<div class="language">
|
2023-09-10 14:52:51 +00:00
|
|
|
<select name="from" aria-label="Source language" id="sourceLanguage">
|
2023-09-10 13:41:45 +00:00
|
|
|
{{range $key, $value := .SourceLanguages}} {{if $.From}}
|
2023-09-10 11:57:22 +00:00
|
|
|
<option value="{{ .Id }}" {{if eq $.From .Id}}selected{{end}}>
|
|
|
|
{{ .Name }}
|
|
|
|
</option>
|
2023-09-10 13:41:45 +00:00
|
|
|
{{else}}
|
|
|
|
<option value="{{ .Id }}" {{if eq .Id $.defaultLang}}selected{{end}}>
|
|
|
|
{{ .Name }}
|
|
|
|
</option>
|
|
|
|
{{end}} {{end}}
|
2023-09-10 11:57:22 +00:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="switch_languages">
|
|
|
|
<button
|
|
|
|
id="switchbutton"
|
|
|
|
aria-label="Switch languages"
|
|
|
|
formaction="/switchlanguages?engine={{ .Engine }}"
|
|
|
|
type="submit"
|
|
|
|
>
|
|
|
|
<->
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="language">
|
2023-09-10 14:52:51 +00:00
|
|
|
<select name="to" aria-label="Target language" id="targetLanguage">
|
2023-09-10 11:57:22 +00:00
|
|
|
{{range $key, $value := .TargetLanguages}}
|
|
|
|
<option value="{{ .Id }}" {{if eq $.To .Id}}selected{{end}}>
|
|
|
|
{{ .Name }}
|
|
|
|
</option>
|
|
|
|
{{end}}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="wrap">
|
|
|
|
<div class="item-wrapper">
|
|
|
|
<textarea
|
|
|
|
autofocus
|
|
|
|
class="item"
|
|
|
|
id="input"
|
|
|
|
name="text"
|
|
|
|
dir="auto"
|
|
|
|
placeholder="Enter Text Here"
|
|
|
|
>
|
|
|
|
{{ .OriginalText }}</textarea
|
|
|
|
>
|
|
|
|
{{if .TtsFrom}}
|
|
|
|
<audio controls>
|
|
|
|
<source type="audio/mpeg" src="{{ .TtsFrom }}" />
|
|
|
|
</audio>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="item-wrapper">
|
|
|
|
<textarea
|
|
|
|
id="output"
|
|
|
|
class="translation item"
|
|
|
|
dir="auto"
|
|
|
|
placeholder="Translation"
|
|
|
|
readonly
|
|
|
|
>
|
|
|
|
{{.Translation.OutputText}}</textarea
|
|
|
|
>
|
|
|
|
{{if .Translation.AutoDetect}}
|
|
|
|
<p>
|
|
|
|
Detected Language: {{.Translation.AutoDetect}}{{end}} {{if .TtsTo}}
|
|
|
|
<audio controls>
|
|
|
|
<source type="audio/mpeg" src="{{ .TtsTo }}" />
|
|
|
|
</audio>
|
|
|
|
{{end}}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="text-align: center">
|
|
|
|
<button type="submit">Translate with {{ .Engine }}!</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2023-09-10 13:41:45 +00:00
|
|
|
<script>
|
|
|
|
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
|
|
|
|
// this code submits the translation form when pressing Ctrl/Meta+Enter while focussed on the input text field
|
|
|
|
document
|
|
|
|
.getElementById("input")
|
|
|
|
.addEventListener("keydown", function (event) {
|
|
|
|
if (event.keyCode === 13 && (event.metaKey || event.ctrlKey)) {
|
|
|
|
document.getElementById("translation-form").submit();
|
|
|
|
}
|
|
|
|
});
|
2023-09-10 14:52:51 +00:00
|
|
|
var options = { searchable: true };
|
|
|
|
NiceSelect.bind(document.getElementById("targetLanguage"), options);
|
|
|
|
var options = { searchable: true };
|
|
|
|
NiceSelect.bind(document.getElementById("sourceLanguage"), options);
|
2023-09-10 13:41:45 +00:00
|
|
|
</script>
|
2023-06-24 18:40:57 +00:00
|
|
|
</main>
|
|
|
|
{{ template "footer" .}}
|