1 | <!doctype html>
|
---|
2 | <html lang="en">
|
---|
3 |
|
---|
4 | <head>
|
---|
5 | <title>SimplyTranslate</title>
|
---|
6 | <link rel="shortcut icon" href="/static/favicon.ico">
|
---|
7 | <meta name="description" content="Experience simple and private Google translations">
|
---|
8 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
---|
9 | <meta charset="UTF-8">
|
---|
10 | <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'">
|
---|
11 | <meta name="referrer" content="no-referrer">
|
---|
12 | <link rel="stylesheet" href="/static/style.css">
|
---|
13 | </head>
|
---|
14 |
|
---|
15 | <body>
|
---|
16 | <header class="center">
|
---|
17 | <h1>SimplyTranslate</h1>
|
---|
18 | </header>
|
---|
19 |
|
---|
20 | <form action="/?engine={{.Engine}}" method="POST" id="translation-form">
|
---|
21 |
|
---|
22 | <div class="center">
|
---|
23 | Translation Engine
|
---|
24 | {{$i := 0}}
|
---|
25 | {{ range $k, $v := .enginesNames }}
|
---|
26 | <a {{ if eq $k $.Engine }}style="text-decoration:underline" {{end}} href="/?engine={{ $k }}">{{ $v }}</a>
|
---|
27 | {{$i = (inc $i)}}
|
---|
28 | {{if eq $i (len $.enginesNames)}}{{else}}|{{end}}
|
---|
29 | {{end}}
|
---|
30 | </div>
|
---|
31 | <br>
|
---|
32 |
|
---|
33 | <div class="wrap languages">
|
---|
34 | <div class="language">
|
---|
35 | <select name="from" aria-label="Source language">
|
---|
36 | {{range $code, $name := .SourceLanguages}}
|
---|
37 | <option value="{{ $code }}" {{if eq $code $.From}}selected{{end}}>{{ $name }}</option>
|
---|
38 | {{end}}
|
---|
39 | </select>
|
---|
40 | </div>
|
---|
41 |
|
---|
42 | <div class="switch_languages">
|
---|
43 | <button id="switchbutton" aria-label="Switch languages"
|
---|
44 | formaction="/switchlanguages/?engine={{ .Engine }}" type="submit"><-></button>
|
---|
45 | </div>
|
---|
46 |
|
---|
47 | <div class="language">
|
---|
48 | <select name="to" aria-label="Target language">
|
---|
49 | {{range $code, $name := .TargetLanguages}}
|
---|
50 | <option value="{{ $code }}" {{if eq $code $.To}}selected{{end}}>{{ $name }}</option>
|
---|
51 | {{end}}
|
---|
52 | </select>
|
---|
53 | </div>
|
---|
54 | </div>
|
---|
55 |
|
---|
56 | <div class="wrap">
|
---|
57 | <div class="item-wrapper">
|
---|
58 | <textarea autofocus class="item" id="input" name="text" dir="auto"
|
---|
59 | placeholder="Enter Text Here">{{ .OriginalText }}</textarea>
|
---|
60 | {{if .TtsFrom}}
|
---|
61 | <audio controls>
|
---|
62 | <source type="audio/mpeg" src="{{ .TtsFrom }}">
|
---|
63 | </audio>
|
---|
64 | {{end}}
|
---|
65 | </div>
|
---|
66 |
|
---|
67 | <div class="item-wrapper">
|
---|
68 | <textarea id="output" class="translation item" dir="auto" placeholder="Translation"
|
---|
69 | readonly>{{.TranslatedText}}</textarea>
|
---|
70 | {{if .TtsTo}}
|
---|
71 | <audio controls>
|
---|
72 | <source type="audio/mpeg" src="{{ .TtsTo }}">
|
---|
73 | </audio>
|
---|
74 | {{end}}
|
---|
75 | </div>
|
---|
76 | </div>
|
---|
77 |
|
---|
78 | <br>
|
---|
79 |
|
---|
80 | <div class="center">
|
---|
81 | <button type="submit">Translate with {{ .Engine }}!</button>
|
---|
82 | </div>
|
---|
83 |
|
---|
84 | </form>
|
---|
85 | <script src="/static/script.js"></script>
|
---|
86 | </body>
|
---|
87 |
|
---|
88 | </html>
|
---|