Browse Source

Change "new replies" to "new comments"

With username mentions implemented, calling comment notifications
"replies" isn't very accurate any more.
merge-requests/22/head
Deimos 6 years ago
parent
commit
b729bf1d98
  1. 4
      tildes/tildes/templates/macros/user.jinja2

4
tildes/tildes/templates/macros/user.jinja2

@ -16,9 +16,9 @@
{% if request.user.num_unread_notifications > 0 %} {% if request.user.num_unread_notifications > 0 %}
<a class="logged-in-user-alert" href="/notifications/unread"> <a class="logged-in-user-alert" href="/notifications/unread">
{% trans num_notifications=request.user.num_unread_notifications %} {% trans num_notifications=request.user.num_unread_notifications %}
{{ num_notifications }} new reply
{{ num_notifications }} new comment
{% pluralize %} {% pluralize %}
{{ num_notifications }} new replies
{{ num_notifications }} new comments
{% endtrans %} {% endtrans %}
</a> </a>
{% endif %} {% endif %}

Loading…
Cancel
Save