diff options
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index 1db63c21..a2202431 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig | |||
@@ -3,12 +3,12 @@ | |||
3 | {% block title %} | 3 | {% block title %} |
4 | {% set currentRoute = app.request.attributes.get('_route') %} | 4 | {% set currentRoute = app.request.attributes.get('_route') %} |
5 | 5 | ||
6 | {% if currentRoute == 'unread' %} | 6 | {% if currentRoute == 'starred' %} |
7 | {% trans %}Unread{% endtrans %} | ||
8 | {% elseif currentRoute == 'starred' %} | ||
9 | {% trans %}Starred{% endtrans %} | 7 | {% trans %}Starred{% endtrans %} |
10 | {% elseif currentRoute == 'archive' %} | 8 | {% elseif currentRoute == 'archive' %} |
11 | {% trans %}Archive{% endtrans %} | 9 | {% trans %}Archive{% endtrans %} |
10 | {% else %} | ||
11 | {% trans %}Unread{% endtrans %} | ||
12 | {% endif %} | 12 | {% endif %} |
13 | 13 | ||
14 | {% endblock %} | 14 | {% endblock %} |