-
Notifications
You must be signed in to change notification settings - Fork 0
/
converter.html
98 lines (80 loc) · 2.55 KB
/
converter.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>Converter</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
textarea
{
resize: none;
width: 100%;
height: 200px;
}
.main div{
padding: 4px;
width:90%;
}
@media only screen and (min-width: 768px) {
.main div{ width: 33%; }
}
</style>
</head>
<body onload="init()">
<div class=main>
<div>
<span>Конвертировать текст, набранный по-русски, но с немецкой раскладкой клавиатуры, в русский (и
наоборот):</span>
</div>
<div>
<textarea autofocus id="original"></textarea>
</div>
<div>
<input type="button" value="Конвертировать в русский>" onclick="convertDeRu()">
<input type="button" value="Конвертировать в немецкий>" onclick="convertRuDe()">
</div>
<div>
<textarea id="result"></textarea>
</div>
<div>
<input type="button" value="Копировать" onclick="copy()">
</div>
</div>
</body>
<script>
function init() {
de = "°!\"§$%&/()=?`QWERTZUIOPÜ*'ASDFGHJKLÖÄYXCVBNM;:_^ß´qwertzuiopü+#asdfghjklöäyxcvbnm,.-";
ru = "Ё!\"№;%:?*()_+ЙЦУКЕНГШЩЗХЪ/ФЫВАПРОЛДЖЭЯЧСМИТЬБЮ,ё-=йцукенгшщзхъ\\фывапролджэячсмитьбю.";
dictionaryDeRu = new Object();
dictionaryRuDe = new Object();
for (var i = 0; i < de.length; i++) {
dictionaryDeRu[de[i]] = ru[i];
dictionaryRuDe[ru[i]] = de[i];
}
}
function convertDeRu() {
convert(dictionaryDeRu);
}
function convertRuDe() {
convert(dictionaryRuDe);
}
function convert(locale) {
var data = document.getElementById("original").value;
var result = "";
var rep;
for (var i = 0; i < data.length; i++) {
rep = locale[data[i]];
if (rep == null) {
rep = data[i];
}
result += rep;
}
document.getElementById("result").value = result;
}
function copy() {
document.getElementById("result").select();
document.execCommand("copy");
getSelection().removeAllRanges();
}
</script>
</html>