summaryrefslogtreecommitdiff
path: root/index.php
blob: 7439c918d181c865ccdfa59ebbdabe116af99589 (plain)
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
<html>
<head>
  <meta charset="utf-8" />
  <title>Post-editing application</title>
  <script src="lfpe.js"></script>
  <link rel="stylesheet" type="text/css" href="lfpe.css" />
</head>

<body onload="Next()">

<div id="wrapper">

<div>
  <textarea id="src" name="source" cols="1" rows="1" readonly></textarea>
</div>

<div>
  <textarea id="trgt" name="target" cols="1" rows="1" onkeypress="submit(event)"></textarea>
</div>

<p>
  <button id="next" type="button" onclick="Next()">Next</button>
</p>

</div>

<p id="translating_status">
  <strong>translating</strong> <img src="img/ajax-loader-large.gif" width="20px" />
</p>

<p id="desc">
Press the 'Next' to submit your post-edit and request the next segment to translate
(or just press enter when the textarea is in focus).
</p>


</body>
</html>