-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (56 loc) · 2.75 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
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<title>Android String Translator</title>
</head>
<body>
<div class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
<span class="fs-4">Android String Translator</span>
</a>
</header>
</div>
<div class="container">
<!-- <div class="row">
<label for="en-file-selector" class="col-sm-7 col-md-5 col-lg-4 col-xl-3 col-form-lebel">Select your English <code>strings.xml</code> file</label>
<div class="col-sm-5 col-md-7 col-lg-8 col-xl-9">
<input class="form-control form-control-sm" id="en-file-selector" type="file" accept=".xml">
</div>
</div> -->
<label class="visually-hidden" for="en-file-selector">Select your English <code>strings.xml</code> file</label>
<input class="visually-hidden" id="en-file-selector" type="file" accept=".xml">
<div class="row mb-3">
<div class="col text-center">
<button type="button" class="btn btn-dark" id="en-file-selector-button">Select your English <code>strings.xml</code> file</button>
</div>
</div>
<table class="table">
<thead>
<tr>
<!-- <th class="table-primary">code</th> -->
<th class="text-center">English</th>
<th class="text-center">Bangla</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
<tfoot>
<tr>
<!-- <td></td> -->
<td class="text-center"><button id="en-download-button" type="button" class="btn btn-dark">Download English XML File</button></td>
<td class="text-center"><button id="bn-download-button" type="button" class="btn btn-dark">Download Bangla XML File</button></td>
</tr>
</tfoot>
</table>
</div>
<script src="index.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
</body>
</html>