<li><ahref="#search">{% trans "Search" %}</a></li>
<li><ahref="#download">{% trans "Download" %}</a></li>
{% if perms.trans.upload_translation %}
<li><ahref="#upload">{% trans "Upload" %}</a></li>
{% endif %}
<li><ahref="#files">{% trans "Files" %}</a></li>
<li><ahref="#changes">{% trans "Recent changes" %}</a></li>
{% if review_form %}
<li><ahref="#review">{% trans "Review" %}</a></li>
...
...
@@ -54,14 +51,15 @@
</form>
</div>
<divid="download">
<divid="files">
<h3>{% trans "Download" %}</h3>
{% with object.get_download_url as download_url %}
<p>{% blocktrans %}You can <ahref="{{ download_url }}">download</a> file for offline translation.{% endblocktrans %}</p>
{% endwith %}
</div>
{% if perms.trans.upload_translation %}
<divid="upload">
<h3>{% trans "Upload" %}</h3>
{% if perms.trans.overwrite_translation %}
<p>{% trans "Uploaded file will be merged with current translation. In case you want to overwrite already translated strings, don't forget to enable it." %}</p>
{% else %}
...
...
@@ -75,8 +73,8 @@
</table>
<p><inputtype="submit"value="{% trans "Upload"%}"/></p>