mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-04-03 02:25:33 +00:00
fix strings case registry
This commit is contained in:
parent
1f7d8d0810
commit
ac49397a1a
2 changed files with 13 additions and 13 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue