fix strings case registry

This commit is contained in:
ghost 2023-10-10 15:48:50 +03:00
parent 1f7d8d0810
commit ac49397a1a
2 changed files with 13 additions and 13 deletions

View file

@ -290,9 +290,9 @@
<div class="padding-b-8-px border-bottom-default"></div>
<div class="padding-y-16-px text-left">
{% if torrent.sensitive %}
{{ 'yes'|trans }}
{{ 'Yes' | trans }}
{% else %}
{{ 'no'|trans }}
{{ 'No' | trans }}
{% endif %}
</div>
</div>

View file

@ -39,9 +39,9 @@
<td class="padding-t-16-px">{{ 'Status'|trans }}</td>
<td class="padding-t-16-px">
{% if user.status %}
{{ 'active'|trans }}
{{ 'Aactive' | trans }}
{% else %}
{{ 'disabled'|trans }}
{{ 'Disabled' | trans }}
{% endif %}
</td>
</tr>
@ -49,9 +49,9 @@
<td>{{ 'Approved'|trans }}</td>
<td>
{% if user.approved %}
{{ 'yes'|trans }}
{{ 'Yes' | trans }}
{% else %}
{{ 'no'|trans }}
{{ 'No' | trans }}
{% endif %}
</td>
</tr>
@ -59,9 +59,9 @@
<td>{{ 'Moderator' | trans }}</td>
<td>
{% if user.moderator %}
{{ 'yes'|trans }}
{{ 'Yes' | trans }}
{% else %}
{{ 'no'|trans }}
{{ 'No' | trans }}
{% endif %}
</td>
</tr>