1
0
Fork 0

Updates templates for fav notifications

This commit is contained in:
Mouse Reeve 2022-07-04 21:32:53 -07:00
parent 971bed9942
commit f76d661e07
4 changed files with 64 additions and 12 deletions

View file

@ -34,11 +34,30 @@
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
liked your <a href="{{ related_path }}">status</a>
{% if other_user_count == 0 %}
{% blocktrans trimmed %}
<a href="{{ related_user_link }}">{{ related_user }}</a> liked your <a href="{{ related_path }}">status</a>
{% endblocktrans %}
{% elif other_user_count == 1 %}
{% blocktrans trimmed %}
<a href="{{ related_user_link }}">{{ related_user }}</a>
and
<a href="{{ second_user_link }}">{{ second_user }}</a>
liked your <a href="{{ related_path }}">status</a>
{% endblocktrans %}
{% else %}
{% blocktrans trimmed %}
<a href="{{ related_user_link }}">{{ related_user }}</a> and {{ other_user_count }} others liked your <a href="{{ related_path }}">status</a>
{% endblocktrans %}
{% endif %}
{% endblocktrans %}
{% endif %}
{% endwith %}