2024-05-22 11:28:12 +05:30
{{ template "header" . }}
2023-06-25 00:10:57 +05:30
< main >
2023-09-10 17:27:22 +05:30
<!-- Need to do this custom selector thingy since <select> cant submit on click -->
< div class = "custom-select" >
2024-05-22 11:28:12 +05:30
{{ range $key, $value := .enginesNames }} {{ if eq $.Engine $key }}Translate
with: < a href = "#" class = "selected-option" > {{$value}}< / a > {{ end }} {{ end }}
2023-09-10 17:27:22 +05:30
< ul class = "options" >
2024-05-22 11:28:12 +05:30
{{ range $key, $value := .enginesNames }}
2023-09-11 07:45:52 +05:30
< a href = "/?engine={{$key}}" >
< li > {{$value}}< / li >
2023-09-10 19:11:45 +05:30
< / a >
2024-05-22 11:28:12 +05:30
{{ end }}
2023-09-10 17:27:22 +05:30
< / ul >
< / div >
2024-05-22 11:28:12 +05:30
< br / >
< br / >
< form action = "/" method = "post" id = "translation-form" >
2023-10-05 18:59:22 +05:30
<!-- This hidden input is so that the engine gets sent in the request even though its not declared here -->
2023-09-10 17:27:22 +05:30
< input name = "engine" value = "{{.Engine}}" type = "hidden" / >
2023-11-29 20:58:26 +05:30
< div class = "wrap languages center-area" >
2023-09-10 17:27:22 +05:30
< div class = "language" >
2023-09-10 20:22:51 +05:30
< select name = "from" aria-label = "Source language" id = "sourceLanguage" >
2024-05-22 11:28:12 +05:30
{{ range $key, $value := .SourceLanguages }} {{ if $.From }}
< option value = "{{ .Id }}" { { if eq $ . From . Id } } selected { { end } } >
2023-09-10 17:27:22 +05:30
{{ .Name }}
< / option >
2024-05-22 11:28:12 +05:30
{{ else }}
< option value = "{{ .Id }}" { { if eq . Id $ . defaultLang } } selected { { end } } >
2023-09-10 19:11:45 +05:30
{{ .Name }}
< / option >
2024-05-22 11:28:12 +05:30
{{ end }} {{ end }}
2023-09-10 17:27:22 +05:30
< / select >
< / div >
< div class = "switch_languages" >
2024-05-22 11:28:12 +05:30
< button id = "switchbutton"
aria-label="Switch languages"
formaction="/switchlanguages?engine={{ .Engine }}"
type="submit">
2023-09-20 16:04:20 +05:30
<!-- https://icon - sets.iconify.design/ci/arrow - left - right/ -->
2024-05-22 11:28:12 +05:30
< svg xmlns = "http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24">
< path fill = "none" stroke = "currentColor" stroke-linecap = "round" stroke-linejoin = "round" stroke-width = "2" d = "m16 13l3 3m0 0l-3 3m3-3H5m3-5L5 8m0 0l3-3M5 8h14" / >
2023-09-20 16:04:20 +05:30
< / svg >
2023-09-10 17:27:22 +05:30
< / button >
< / div >
< div class = "language" >
2023-09-10 20:22:51 +05:30
< select name = "to" aria-label = "Target language" id = "targetLanguage" >
2024-05-22 11:28:12 +05:30
{{ range $key, $value := .TargetLanguages }} {{ if $.To }}
< option value = "{{ .Id }}" { { if eq $ . To . Id } } selected { { end } } >
2023-09-10 17:27:22 +05:30
{{ .Name }}
< / option >
2024-05-22 11:28:12 +05:30
{{ else }}
< option value = "{{ .Id }}" { { if eq . Id $ . defaultLangTarget } } selected { { end } } >
2023-10-20 15:49:51 +05:30
{{ .Name }}
< / option >
2024-05-22 11:28:12 +05:30
{{ end }} {{ end }}
2023-09-10 17:27:22 +05:30
< / select >
< / div >
< / div >
2023-11-29 20:58:26 +05:30
< div class = "center-area2 item-wrapper" >
Source Text:
2023-09-20 16:04:20 +05:30
< textarea autofocus class = "item" id = "input" name = "text" dir = "auto" placeholder = "Enter Text Here" >
{{ .OriginalText }}< / textarea >
2024-05-22 11:28:12 +05:30
{{ if .Translation.SourceTransliteration }}
< br >
Transliteration: {{ newlinetobr .Translation.SourceTransliteration }}{{ end }}
{{ if .TtsFrom }}
2023-11-29 20:58:26 +05:30
< br >
2023-09-20 16:04:20 +05:30
< audio controls >
< source type = "audio/mpeg" src = "{{ .TtsFrom }}" / >
< / audio >
2024-05-22 11:28:12 +05:30
{{ end }}
2023-11-29 20:58:26 +05:30
< br >
2023-09-20 16:04:20 +05:30
< / div >
{{ if .TranslateAll }}
2024-05-22 11:28:12 +05:30
{{ range $key, $value := .TranslateAll }}
2023-10-13 18:30:41 +05:30
< div class = "item-wrapper center-area2" >
2023-09-20 16:04:20 +05:30
Engine: {{.Engine}}
2023-10-13 12:33:57 +05:30
< textarea class = "translation item" dir = "auto" placeholder = "Translation" id = "output" readonly >
2023-09-20 16:04:20 +05:30
{{.OutputText}}< / textarea >
2024-05-22 11:28:12 +05:30
{{ if .AutoDetect }}
< br >
Detected Language: {{.AutoDetect}}{{ end }}
{{ if .TargetTransliteration }}
< br >
Transliteration: {{ newlinetobr .TargetTransliteration }}{{ end }}
{{ if $.TtsTo }}
2023-11-29 20:58:26 +05:30
< br >
2023-09-20 16:04:20 +05:30
< audio controls >
< source type = "audio/mpeg" src = "{{ $.TtsTo }}" / >
< / audio >
2024-05-22 11:28:12 +05:30
{{ end }}
2023-11-29 20:58:26 +05:30
< br >
2023-09-10 17:27:22 +05:30
< / div >
2024-05-22 11:28:12 +05:30
{{ end }}
{{ else }} {{ if .TranslationExists }}
2023-10-13 18:30:41 +05:30
< div class = "item-wrapper center-area2" >
2023-10-13 12:33:57 +05:30
< textarea class = "translation item" dir = "auto" placeholder = "Translation" id = "output" readonly >
2023-09-20 16:04:20 +05:30
{{.Translation.OutputText}}< / textarea >
2024-05-22 11:28:12 +05:30
{{ if .Translation.AutoDetect }}
< br >
Detected Language: {{.Translation.AutoDetect}}{{ end }}
{{ if .Translation.TargetTransliteration }}
< br >
Transliteration: {{ newlinetobr .Translation.TargetTransliteration }}{{ end }}
{{ if .TtsTo }}
2023-11-29 20:58:26 +05:30
< br >
2023-09-20 16:04:20 +05:30
< audio controls >
< source type = "audio/mpeg" src = "{{ .TtsTo }}" / >
< / audio >
2024-05-22 11:28:12 +05:30
{{ end }}
2023-11-29 20:58:26 +05:30
< br >
2024-05-22 11:28:12 +05:30
{{ end }}
{{ end }}
< div style = "display:flex;
justify-content:space-around;
align-items:center">
{{ if .TranslationExists }}
< button class = "wrap" type = "button" onclick = "copyToClipboard()" > Copy the translation< / button >
{{ end }}
{{ if and .Engine .From .To .OriginalText }}
< p >
< a id = "url"
class="button"
onclick="copyLinkToClipboard(event)"
href="/?engine={{.Engine}}& from={{.From}}& to={{.To}}& text={{.OriginalText}}">Copy translation link< / a >
< / p >
{{ end }}
{{ if .TranslationExists }}
< button class = "wrap" type = "submit" > Translate!< / button >
{{ else }}
< button class = "wrap"
style="margin-left:auto;
position:relative;
left:-10%;
margin-top: 1%"
type="submit">Translate!< / button >
{{ end }}
2023-11-29 20:58:26 +05:30
< / div >
2024-05-22 11:28:12 +05:30
< / div >
2024-05-22 17:36:52 +05:30
{{ if eq .Engine "yandex" }}
{{ template "yandex_extras" . }}
{{ end }}
2024-05-23 12:45:47 +05:30
{{ if eq .Engine "reverso" }}
{{ template "reverso_extras" . }}
{{ end }}
2023-09-10 17:27:22 +05:30
< / form >
2023-09-10 19:11:45 +05:30
< 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-20 16:04:20 +05:30
// This code makes the select language menu searchable if js is enabled
2023-09-10 20:22:51 +05:30
var options = { searchable: true };
NiceSelect.bind(document.getElementById("targetLanguage"), options);
NiceSelect.bind(document.getElementById("sourceLanguage"), options);
2023-10-13 12:33:57 +05:30
// This function allows to copy the translated text to the clipboard
function copyToClipboard() {
var copyText = document.getElementById("output");
copyText.select();
copyText.setSelectionRange(0, 99999); // This is for mobile devices.
document.execCommand("copy");
}
2024-04-04 11:11:35 +05:30
function copyLinkToClipboard(event) {
// Get the text of the link based on the id.
var copyText = document.getElementById("url");
var text = copyText.href;
// Create an input element, set the value to the link, append it to the body, select the text, copy it to the clipboard, then remove the input element.
// This is the only way to copy text to the clipboard in a browser, you could consider this a hack but yeah... it works.
var input = document.createElement("input");
input.value = text;
document.body.appendChild(input);
input.select();
document.execCommand("copy");
document.body.removeChild(input);
event.preventDefault();
// If failed to copy to clipboard, alert the user
if (!document.execCommand("copy")) {
alert("Failed to copy the link to the clipboard");
}
// Otherwise, let the user know it successfully copied with a small css animation by switching to green bg then back to the original color.
else {
copyText.style.backgroundColor = "#4CAF50";
// Change the text to "Copied!" for a second"
copyText.innerText = "Copied!";
setTimeout(function () {
copyText.style.backgroundColor = "#f57c00";
// Change the text back to "Copy translation link" after a second
copyText.innerText = "Copy translation link";
}, 1000);
}
}
2023-09-10 19:11:45 +05:30
< / script >
2023-06-25 00:10:57 +05:30
< / main >
2024-05-22 11:28:12 +05:30
{{ template "footer" . }}