xmpp.chapril.org-conversejs/html/translate.html
2012-02-28 15:54:04 +01:00

34 lines
955 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% include "translation_info.html" %}
<h2>{% trans "Translate" %}</h2>
<p>{% blocktrans with unit.position as position %}Showing string {{ position }} out of {{ total }}.{% endblocktrans %}</p>
<form action="{{ unit.translation.get_translate_url }}" method="post">
{% csrf_token %}
<input type="hidden" name="type" value="{{ type }}" />
<input type="hidden" name="oldpos" value="{{ unit.position }}" />
<table class="translator">
<tr><th>{% trans "Source" %}</th><th>{% trans "Translation" %}<th></tr>
{% if unit.is_plural %}
{% else %}
<tr><td>{{ unit.source }}</td><td colspan="2">{{ form.target }}</td></tr>
{% endif %}
<tr><td>{{ unit.location }}</td></tr>
<tr><td></td><td>
<input type="submit" value="{% trans "Save" %}" />
<a href="{{ unit.translation.get_translate_url }}?type={{ type }}&amp;oldpos={{ unit.position }}">{% trans "Skip" %}</a>
</table>
</form>
{% endblock %}