first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<p>{{ strings.title }}</p>
{% for lang_pair in lang_pairs %}
<p>{{ lang_pair.title }}</p>
<ul style="margin-top: -20px">
{% for element in lang_pair.elements %}
{% if element.type == 'post' %}
<li><a href="{{ element.original_link }}">{{ element.original_text }}</a>: <a href="{{ element.start_translating_link }}">{{ strings.start_translating_text }}</a></li>
{% else %}
<li>{{ strings.strings_text }}: <a href="{{ strings.strings_link }}">{{ strings.take }}</a></li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}
{% if strings.closing_sentence %}
<p>{{ strings.closing_sentence|raw }}</p>
{% endif %}