mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-03-31 17:15:38 +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-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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue