85 lines
2.9 KiB
HTML
85 lines
2.9 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load weblate %}
|
|
|
|
{% block breadcums %}
|
|
<li><a href="{{ unit.translation.subproject.project.get_absolute_url }}">{{ unit.translation.subproject.project }}</a></li>
|
|
<li><a href="{{ unit.translation.subproject.get_absolute_url }}">{{ unit.translation.subproject.name }}</a></li>
|
|
<li><a href="{{ unit.translation.get_absolute_url }}">{{ unit.translation.language.name }}</a></li>
|
|
<li><a href="{{ unit.translation.get_translate_url }}">{% trans "translate" %}</a></li>
|
|
{% endblock %}
|
|
|
|
{% 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 class="source">{% trans "Source" %}</th>
|
|
<td class="translatetext">{{ unit.source|fmttranslation }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{% if unit.is_plural %}{% trans "Translations" %}{% else %}{% trans "Translation" %}{% endif %}</th>
|
|
<td class="translator">
|
|
{{ form.checksum }}
|
|
{{ form.target }}
|
|
<br />
|
|
{{ form.fuzzy }}<label for="id_fuzzy">{% trans "Fuzzy" %}</label>
|
|
</td></tr>
|
|
{% with unit.suggestions as suggestions %}
|
|
{% if suggestions %}
|
|
<tr>
|
|
<th>{% trans "Suggestions" %}</th>
|
|
<td class="suggestions">
|
|
<table>
|
|
{% for suggestion in suggestions %}
|
|
<tr><td class="translatetext">{{ suggestion.target|fmttranslation }}</td></tr>
|
|
<tr><td>
|
|
{% blocktrans with suggestion.user.get_full_name as user %}Suggested by {{ user }}{% endblocktrans %}
|
|
<div class="suggestionactions">
|
|
<a href="{{ suggestion.get_translate_url }}?type={{ type }}&oldpos={{ oldpos }}&accept={{ suggestion.id }}" class="sug-accept">Accept</a>
|
|
<a href="{{ suggestion.get_translate_url }}?type={{ type }}&oldpos={{ oldpos }}&delete={{ suggestion.id }}" class="sug-delete">Delete</a>
|
|
</div>
|
|
</td>
|
|
{% endfor %}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endwith %}
|
|
<tr>
|
|
<th>{% trans "Used in" %}</th>
|
|
<td>{{ unit.get_location_links }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{% trans "Flags" %}</th>
|
|
<td>{{ unit.flags }}</td>
|
|
</tr>
|
|
<tr><td class="right">
|
|
<a class="button" href="{{ unit.translation.get_translate_url }}?type={{ type }}&oldpos={{ unit.position }}&dir=back">{% trans "Previous" %}</a>
|
|
<a class="button" href="{{ unit.translation.get_translate_url }}?type={{ type }}&oldpos={{ unit.position }}">{% trans "Next" %}</a>
|
|
</td><td>
|
|
{% if user.is_authenticated %}
|
|
<input class="button" type="submit" value="{% trans "Save" %}" name="save" />
|
|
{% else %}
|
|
{% blocktrans %}<a href="/accounts/login/">Login</a> for saving translations.{% endblocktrans %}
|
|
{% endif %}
|
|
<input class="button" type="submit" value="{% trans "Suggest" %}" name="suggest" />
|
|
</td></tr>
|
|
|
|
</table>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|