aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/layout.html')
-rw-r--r--src/web/templates/layout.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index b18077e2..15cf3e97 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -68,8 +68,8 @@
<ul class="dropdown-menu">
<li><a href="{{ url_for("feeds.update", action="read") }}">{{ _('Mark all as read') }}</a></li>
<li><a href="{{ url_for("feeds.update", action="read", nb_days="1") }}">{{ _('Mark all as read older than yesterday') }}</a></li>
- <li><a href="{{ url_for("feeds.update", action="read", nb_days="5") }}">{{ _('Mark all as read older than 5 days') }}</a></li>
- <li><a href="{{ url_for("feeds.update", action="read", nb_days="10") }}">{{ _('Mark all as read older than 10 days') }}</a></li>
+ <li><a href="{{ url_for("feeds.update", action="read", nb_days="5") }}">{{ gettext('Mark all as read older than %(days)s days', days=5) }}</a></li>
+ <li><a href="{{ url_for("feeds.update", action="read", nb_days="10") }}">{{ gettext('Mark all as read older than %(days)s days', days=10) }}</a></li>
<li role="presentation" class="divider"></li>
<li><a href="{{ url_for("inactives") }}">{{ _('Inactive') }}</a></li>
<li><a href="{{ url_for("history") }}">{{ _('History') }}</a></li>
bgstack15