16 lines
253 B
HTML
16 lines
253 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "translation_info.html" %}
|
|
|
|
<h2>{% trans "Translate" %}</h2>
|
|
|
|
<p>{% blocktrans %}Showing string {{ unit.position }} out of {{ total }}.{% endblocktrans %}</p>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|