mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-29 06:14:15 +08:00
20 lines
647 B
HTML
Vendored
20 lines
647 B
HTML
Vendored
{% load i18n %}
|
|
{% load weblate %}
|
|
{% if similar %}
|
|
<table>
|
|
<thead>
|
|
<tr><th>{% trans "Project" %}</th><th>{% trans "Source" %}</th><th>{% trans "Translation" %}</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in similar %}
|
|
<tr>
|
|
<td>{{ item.translation.subproject }}</td>
|
|
<td class="translatetext"><a href="{{ item.get_absolute_url }}">{{ item.source|fmttranslation }}</a></td>
|
|
<td class="translatetext"><a href="{{ item.get_absolute_url }}">{{ item.target|fmttranslation:item.translation.language }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<p>{% trans "No similar strings found." %}</p>
|
|
{% endif %}
|