mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-13 18:40:49 +01:00
categories theme: i18n some strings
This commit is contained in:
parent
e2b1034f09
commit
b31487b53d
@ -15,16 +15,16 @@
|
|||||||
|
|
||||||
<div class="ban">
|
<div class="ban">
|
||||||
{% if news|count == 0 %}
|
{% if news|count == 0 %}
|
||||||
<p style="text-align:center" class="unimportant">(No news to show.)</p>
|
<p style="text-align:center" class="unimportant">{% trans %}(No news to show.){% endtrans %}</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% for entry in news %}
|
{% for entry in news %}
|
||||||
<h2 id="{{ entry.id }}">
|
<h2 id="{{ entry.id }}">
|
||||||
{% if entry.subject %}
|
{% if entry.subject %}
|
||||||
{{ entry.subject }}
|
{{ entry.subject }}
|
||||||
{% else %}
|
{% else %}
|
||||||
<em>no subject</em>
|
<em>{% trans %}no subject{% endtrans %}</em>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="unimportant"> — by {{ entry.name }} at {{ entry.time|date(config.post_date) }}</span>
|
<span class="unimportant"> — {% trans %}by{% endtrans %} {{ entry.name }} {% trans %}at{% endtrans %} {{ entry.time|date(config.post_date) }}</span>
|
||||||
</h2>
|
</h2>
|
||||||
<p>{{ entry.body }}</p>
|
<p>{{ entry.body }}</p>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user