summaryrefslogtreecommitdiff
path: root/interface.php
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-10-29 17:44:41 +0100
committerPatrick Simianer <p@simianer.de>2015-10-29 17:44:41 +0100
commit74b538946237ae7e8f9461f6c5a2e84d1cc56cd2 (patch)
tree2cb2b1e0928c8e10e0434bb37cd483c71f1a6b14 /interface.php
parentf6ccef8efbd1ac1700e0282dea4d43676bd7160b (diff)
wording etc
Diffstat (limited to 'interface.php')
-rw-r--r--interface.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/interface.php b/interface.php
index 1f20a9b..c0348bf 100644
--- a/interface.php
+++ b/interface.php
@@ -3,9 +3,9 @@
<meta charset="utf-8" />
<title>Post-editing application (Session: #<?php echo $_GET["key"]; ?>)</title>
<link rel="stylesheet" type="text/css" href="static/main.css" />
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" charset="utf-8"></script>
<script src="js/common.js" charset="utf-8"></script>
<script src="js/lfpe.js" charset="utf-8"></script>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" charset="utf-8"></script>
<script src="https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.2/raphael-min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://raw.githubusercontent.com/marmelab/Raphael.InlineTextEditing/fd578f0eddd4172e6d9b3fde4cb67576cf546dc1/raphael.inline_text_editing.js" charset="utf-8"></script>
<script src="js/derivation_editor/derivation-editor.js" charset="utf-8"></script>
@@ -29,17 +29,20 @@
<table>
<tr>
<td align="right">Source:</td>
- <td><textarea id="raw_source_textarea" name="source" cols="80" rows="1" disabled></textarea></td>
+ <!--<td><textarea id="raw_source_textarea" name="source" cols="80" rows="1" disabled></textarea></td>-->
+ <td id="raw_source_textarea"></td>
</tr>
<tr>
<td align="right">Target:</td>
- <td><textarea id="target_textarea" name="target" cols="80" rows="1" onkeypress="catch_return(event)"></textarea></td>
+ <td><textarea id="target_textarea" name="target" cols="80" rows="1" onkeypress="catch_return(event);" disabled></textarea></td>
</tr>
</table>
</div>
<div id="oov_form">
<p class="small" style="margin-bottom:0"><strong>Unknown words:</strong><br />
- Please enter a translation for each source word.</p>
+ Please enter a translation for each source word, then click 'Next' or press return.<br />
+<span class="small">Note that the source word may be distorted.</span>
+</p>
<div id="oov_fields"></div>
</div>
<!-- /Source and target textboxes -->