-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.12 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>QGIS Translation Checker</title>
<link rel="stylesheet" href="./checker.css">
<script src="./lib/kuromoji.js/kuromoji.js"></script>
<script src="./checker.js"></script>
<script src="./check_rules.js"></script>
</head>
<body>
<div id="main">
<h1 id="title">QGIS Translation Checker</h1>
<div id="result"></div>
<div id="footer"><a href="https://github.com/minorua">GitHub</a></div>
</div>
<div id="panel">
<div><span class="method">- Open a local .ts file:</span> <button id="open_button">Open & Check</button></div>
<br>
<div>
<div class="method">- Fetch a .ts file from GitHub:</div>
<table>
<tr>
<td>
<div><label for="lang">Language</label></div>
<div>
<select id="lang" name="lang" size="15"></select>
</div>
</td>
<td>
<div><label for="branch">Branch</label></div>
<div>
<select id="branch" name="branch" size="15">
<option>release-3_40</option>
<option>release-3_38</option>
<option>release-3_34</option>
</select>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div id="fetch_button_line"><button id="fetch_button">Fetch & Check</button></div>
</td>
</tr>
</table>
</div>
</div>
<div id="progress">
<div id="status"></div>
<progress value="0"></progress>
</div>
</body>
</html>