-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 2.47 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Process gettext .po, .pot and .mo files online" />
<meta name="author" content="Michele Locati" />
<title>Online gettext tools</title>
<link rel="stylesheet" href="assets/app.css" />
</head>
<body class="busy">
<nav id="nav" class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="https://github.com/mlocati/jsgettext" class="navbar-brand">Online gettext</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="#" id="paste-po" data-toggle="tooltip" data-placement="bottom" data-html="true" title="Paste the contents of a <kbd>.po</kbd> or <kbd>.pot</kbd> file."><i class="fa fa-clipboard" aria-hidden="true"></i> Paste</a></li>
<li><a href="#" id="upload-file" data-toggle="tooltip" data-placement="bottom" data-html="true" title="Load <kbd>.po</kbd>, <kbd>.pot</kbd> and <kbd>.mo</kbd> files.<br />Drag-and-drop is also supported."><i class="fa fa-upload" aria-hidden="true"></i> Load</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><i class="fa fa-cogs" aria-hidden="true"></i> Operators <span class="caret"></span></a>
<ul class="dropdown-menu" id="operators">
</ul>
</li>
</ul>
</div>
</div>
</nav>
<a id="github-link" href="https://github.com/mlocati/jsgettext" class="hidden-xs">
Fork me on GitHub
</a>
<div id="main" class="container-fluid">
</div>
<div id="loader"></div>
<script src="assets/app.js"></script>
</body>
</html>