change language for following / followers (#296)

pull/297/head
Cosmin Stejerean 2022-12-27 16:03:14 -08:00 zatwierdzone przez GitHub
rodzic aa2ace9b68
commit a949c99d48
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -6,11 +6,11 @@
{% block content %}
<div class="view-options">
{% if inbound %}
<a href=".">Your Follows ({{ num_outbound }})</a>
<a href="." class="selected">Follows You ({{ num_inbound }})</a>
<a href=".">Following ({{ num_outbound }})</a>
<a href="." class="selected">Followers ({{ num_inbound }})</a>
{% else %}
<a href=".?inbound=true" class="selected">Your Follows ({{ num_outbound }})</a>
<a href=".?inbound=true">Follows You ({{ num_inbound }})</a>
<a href=".?inbound=true" class="selected">Following ({{ num_outbound }})</a>
<a href=".?inbound=true">Followers ({{ num_inbound }})</a>
{% endif %}
</div>
@ -44,7 +44,7 @@
</div>
</a>
{% empty %}
<p class="option empty">You have no follows.</p>
<p class="option empty">You {% if inbound %}have no followers{% else %}are not following anyone{% endif %}.</p>
{% endfor %}
</section>