- {{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}
+ {{ 'entry.list.number_on_the_page'|trans({'%count%': entries.count}) }}
{% if entries.count > 0 %}
{% if list_mode == 0 %}view_list{% else %}view_module{% endif %}
{% endif %}
diff --git a/src/Wallabag/CoreBundle/Resources/views/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/Entry/entry.html.twig
index 59a3cf62e..9ed0e7b76 100644
--- a/src/Wallabag/CoreBundle/Resources/views/Entry/entry.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/Entry/entry.html.twig
@@ -269,7 +269,7 @@
{% if entry.annotations|length %}
comment
- {{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations|length) }}
+ {{ 'entry.view.annotations_on_the_entry'|trans({'%count%': entry.annotations|length}) }}
{% endif %}
{% if entry.originUrl is not empty %}
diff --git a/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig
index ce4101ec7..f951fcd65 100644
--- a/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/Tag/tags.html.twig
@@ -4,7 +4,7 @@
{% block content %}
- {{ 'tag.list.number_on_the_page'|transchoice(tags|length) }}
+ {{ 'tag.list.number_on_the_page'|trans({'%count%': tags|length}) }}