-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (51 loc) · 2.05 KB
/
Copy pathindex.html
File metadata and controls
61 lines (51 loc) · 2.05 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Translate</title>
</head>
<body>
<div id="container">
<div id="header">
</div>
<ui id="main_container">
<ui id="textarea">
<h2>辞書変換ツール(IME/Google日本語↔Mac辞書(plist))</h2>
<ul>
<li>エクスポートした辞書データを全て貼り付けてください</li>
<li>
<、>、\t(タブ文字)が含まれている文字は変換できません</li>
</ul>
</div>
<div id="form_container">
<form method="post" action="" name="translate_form">
<div class="text_area" id="before_form">
<h3>変換元</h3>
<textarea class="textform" rows="20"></textarea>
</div>
<div id="select_container">
<input type="radio" name="translate_select" value="IME2MAC">IME/Google日本語→Mac辞書(plist)
<input type="radio" name="translate_select" value="MAC2IME">IME/Google日本語←Mac辞書(plist)
</div>
<div id="button_container">
<input type="button" name="submit" value="translate" onclick="Translate()" />
</div>
<div id="file_container">
<input type="file" id="selfile" />
</div>
<div class="text_area" id="after_form">
<h3>変換後</h3>
<textarea class="textform" rows="20" onfocus="this.select();" readonly></textarea>
</div>
<div id="export_container">
<a id="export" href="#" download="#" onclick="Export()">ダウンロード</a>
</div>
</form>
</div>
</div>
</body>
<script type="text/javascript" src="translate.js"></script>
</html>