-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Translate!</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://downthemall.org/favicon.ico">
</head>
<body>
<header>
<h1 id="title">Translate!</h1>
<h2 id="byline"></h2>
<span id="status"></span>
<select id="locales">
<option value="---" id="nolocale">Load from repo</option>
</select>
<button id="reset">Reset</button>
<button id="load">Load<input type="file" id="load-file" style="display: none;" accept=".json"></button>
<button id="save">Download</button>
</header>
<article>
</article>
<template id="item">
<section class="item">
<span class="item-status"></span>
<span>Name:</span>
<label class="item-name"></label>
<span class="item-description-desc">Description:</span>
<label class="item-description"></label>
<span></span>
<input type="text" readonly tabindex="-1" class="item-base">
<span>Translation:</span>
<input type="text" class="item-translated" spellcheck="true">
<pre class="item-errors"></pre>
</section>
</template>
<script defer src="localforage.min.js"></script>
<script defer type="module" src="script.js"></script>
</body>
</html>