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-b-8-px border-bottom-default"></div>
<div class="padding-y-16-px text-left"> <div class="padding-y-16-px text-left">
{% if torrent.sensitive %} {% if torrent.sensitive %}
{{ 'yes'|trans }} {{ 'Yes' | trans }}
{% else %} {% else %}
{{ 'no'|trans }} {{ 'No' | trans }}
{% endif %} {% endif %}
</div> </div>
</div> </div>

View file

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