From b729bf1d98a63cdf31afe0205b27dc8f259f3b07 Mon Sep 17 00:00:00 2001 From: Deimos Date: Mon, 6 Aug 2018 13:35:02 -0600 Subject: [PATCH] Change "new replies" to "new comments" With username mentions implemented, calling comment notifications "replies" isn't very accurate any more. --- tildes/tildes/templates/macros/user.jinja2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tildes/tildes/templates/macros/user.jinja2 b/tildes/tildes/templates/macros/user.jinja2 index 847cca5..e5a153a 100644 --- a/tildes/tildes/templates/macros/user.jinja2 +++ b/tildes/tildes/templates/macros/user.jinja2 @@ -16,9 +16,9 @@ {% if request.user.num_unread_notifications > 0 %} {% trans num_notifications=request.user.num_unread_notifications %} - {{ num_notifications }} new reply + {{ num_notifications }} new comment {% pluralize %} - {{ num_notifications }} new replies + {{ num_notifications }} new comments {% endtrans %} {% endif %}