forked from rmraya/TMXEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintenance.html
74 lines (67 loc) · 2.12 KB
/
maintenance.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Maintenance Dashboard</title>
<link id="theme" rel="stylesheet" type="text/css" href="../css/light.css">
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>
<body onload="new Maintenance();">
<table class="fill_width">
<tr>
<td class="middle">
<input id="tags" type="checkbox" checked>
</td>
<td class="middle fill_width">
<label for="tags">Remove All Tags</label>
</td>
</tr>
<tr>
<td class="middle">
<input id="duplicates" type="checkbox" checked>
</td>
<td class="middle fill_width">
<label for="duplicates">Remove Duplicates</label>
</td>
</tr>
<tr>
<td class="middle">
<input id="untranslated" type="checkbox" checked>
</td>
<td class="middle fill_width">
<label for="untranslated">Remove Untranslated</label>
</td>
</tr>
<tr>
<td class="middle">
<input id="spaces" type="checkbox" checked>
</td>
<td class="middle fill_width">
<label for="spaces">Remove Initial/Trailing Spaces</label>
</td>
</tr>
<tr>
<td class="middle">
<input id="consolidate" type="checkbox" checked>
</td>
<td class="middle fill_width">
<label for="consolidate">Consolidate Units</label>
</td>
</tr>
</table>
<table class="fill_width">
<tr>
<td class="middle noWrap">
<label for="sourceLanguage">Source Language</label>
</td>
<td class="middle fill_width">
<select id="sourceLanguage" class="table_select">
</select>
</td>
</tr>
</table>
<div class="buttonArea">
<button id="execute">Perform Maintenance</button>
</div>
<script src="../js/maintenance.js"></script>
</body>
</html>