diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-01-05 14:39:28 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-01-05 14:39:28 +0100 |
commit | 04acc55bcb558257f9102d38dda6a3cf9e30d54c (patch) | |
tree | 85b0e6b21bead8bb11b670e7332a1ed2e4765773 /src/web/templates | |
parent | Updated the link to add a feed in the /management page. (diff) | |
download | newspipe-04acc55bcb558257f9102d38dda6a3cf9e30d54c.tar.gz newspipe-04acc55bcb558257f9102d38dda6a3cf9e30d54c.tar.bz2 newspipe-04acc55bcb558257f9102d38dda6a3cf9e30d54c.zip |
Updated translations.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/layout.html | 4 |
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> |