mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-26 19:41:18 +08:00
20 lines
451 B
HTML
Vendored
20 lines
451 B
HTML
Vendored
{% load i18n %}
|
|
{% load weblate %}
|
|
{% if dictionary %}
|
|
<table>
|
|
<thead>
|
|
<tr><th>{% trans "Source" %}</th><th>{% trans "Translation" %}</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in dictionary %}
|
|
<tr>
|
|
<td class="translatetext">{{ item.source }}</td>
|
|
<td class="translatetext">{{ item.target }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<p>{% trans "No related strings found in dictionary." %}</p>
|
|
{% endif %}
|
|
|