diff options
-rw-r--r-- | help.inc.php | 2 | ||||
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | interface.php | 2 | ||||
-rw-r--r-- | js/lfpe.js | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/help.inc.php b/help.inc.php index ab8b86b..71eb2e3 100644 --- a/help.inc.php +++ b/help.inc.php @@ -9,7 +9,7 @@ Alternatively, in the textual interface, you may just press return when you fini <li><strong>Adding/removing links:</strong> Select a source phrase by clicking on its box, then click on a target phrase (click selected source phrase again to cancel linking).</li> <li><strong>Edit text:</strong> Double click on text, click outside once to stop editing.</li> <li><strong>Adding target phrases:</strong> Click '+' button to add a new phrase.</li> - <li><strong>Removing target phrases:</strong> Drag phrase onto left-hand red box.</li> + <li><strong>Removing target phrases:</strong> Drag phrase onto left-hand red box. You can also shift-click on a phrase and press 'delete'. Selecting multiple phrases using shift-click is also possible.</li> <li><strong>Reset:</strong> Click 'Reset' button to start from scratch.</li> </ul> @@ -14,7 +14,7 @@ <strong>Please enter your session key:</strong> <input type="text" id="key" name="key" /> Session type: <select name="ui_type"> - <option value="t">textual</option> + <option value="t">text</option> <option value="g">graphical</option> </select> diff --git a/interface.php b/interface.php index 71d40fe..0215204 100644 --- a/interface.php +++ b/interface.php @@ -53,7 +53,7 @@ Note that the source word may be distorted.</span> <div> <button id="pause_button" type="button" onclick="pause()">Pause</button> <button id="next" type="button" onclick="Next();">Start/Continue</button> - <span id="status"><strong>Working, please wait for next segment</strong> <img src="static/ajax-loader-large.gif" width="20px" /></span> + <span id="status"><strong>Working, please wait for next translation</strong> <img src="static/ajax-loader-large.gif" width="20px" /></span> </div> <!-- /Buttons --> @@ -216,6 +216,7 @@ function Next() target_textarea.removeAttribute("disabled", "disabled"); pause_button.removeAttribute("disabled", "disabled"); button.removeAttribute("disabled", "disabled"); + not_working(); return; } } |