Subversion Repositories navi

Rev

Rev 186 | Rev 270 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

{% extends "base.html" %}

{% block title %}Translator{% end %}

{% block body %}
<!--
#    This file is part of Tsim Apiak.
#  
#    Tsim Apiak is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public Licence as published by
#    the Free Software Foundation, either version 3 of the Licence, or
#    (at your option) any later version.
#  
#    In addition to this, you must also comply with clause 4 of the
#    Apache Licence, version 2.0, concerning attribution. Where there
#    is a contradiction between the two licences, the GPL          
#    takes preference.
#  
#    Tsim Apiak is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#  
#    You should have received a copy of the GNU General Public License
#    along with Tsim Apiak.  If not, see <http://www.gnu.org/licenses/>.  
-->

<b>Na'vi sentence:</b><br />
<form action="/translate" method="post">
<input id="word" name="word" type="text" value="{{last}}" style="width: 100%;" />
<select name="lang" id="lang">
    <option value="eng" selected="selected">English</option>
    <option value="hu">Hungarian - Magyar</option>
    <option value="de">German - Deutsch</option>
    <option value="est">Estonian - Eesti</option>
    <option value="ptbr">Brazilian Portuguese - Português do Brasil</option>
    <option value="sv">Swedish - Svenska</option>
</select>
<input name="btn" type="submit" value="Translate!" />
</form>
{% if out %}
<table border="1">
<tr>
    <th>Words</th>
    <th>Translated</th>
    <th>Parts</th>
    <th>Data</th>
</tr>
{% for wor in out %}
<tr>
    <td rowspan="4">{{ wor["word"]["navi"] }}</td>
    <td rowspan="4">{{ wor["translated"] }}</td>
    <td>Infixes:</td>
    <td>{{ u", ".join(wor["inf"]) }}</td>
</tr>
<tr>
    <td>Prefixes:</td>
    <td>{{ u"; ".join(u", ".join(x) for x in wor["pref"]) }}</td>
</tr>
<tr>
    <td>Postfixes:</td>
    <td>{{ u"; ".join(u", ".join(x) for x in wor["post"]) }}</td>
</tr>
<tr>
    <td>Lenited:</td>
    <td>{{ str(wor["len"]) }}</td>
</tr>
{% end %}
</table>
{% end %}
<p>This program uses Eana Eltu for the list of words and infix positions (but nothing else), created by Tuiq and Taronyu. Thanks also go to the rest of the Learn Na'vi community!</p>
<script type="text/javascript">
document.getElementById("word").focus();
</script>
{% if lang != "eng" %}
<script type="text/javascript">
if("{{ lang }}" == "hu"){
    document.getElementById("lang").selectedIndex = 1
}
if("{{ lang }}" == "de"){
    document.getElementById("lang").selectedIndex = 2
}
if("{{ lang }}" == "est"){
    document.getElementById("lang").selectedIndex = 3
}
if("{{ lang }}" == "ptbr"){
    document.getElementById("lang").selectedIndex = 4
}
if("{{ lang }}" == "sv"){
    document.getElementById("lang").selectedIndex = 5
}
</script>
{% end %}
{% end %}