From 0caec6ab9efbd4d95458f973f17feb4fe8587c7f Mon Sep 17 00:00:00 2001 From: Phablulo Date: Wed, 29 Dec 2021 13:59:56 -0300 Subject: [PATCH] [COMPONENT][ACTOR CIRCLE] fixing template text --- components/Tag/templates/actor_tag_feed.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Tag/templates/actor_tag_feed.html.twig b/components/Tag/templates/actor_tag_feed.html.twig index 599f339f09..9e60e1af34 100644 --- a/components/Tag/templates/actor_tag_feed.html.twig +++ b/components/Tag/templates/actor_tag_feed.html.twig @@ -8,10 +8,10 @@ {% block body %} {% if tag_name is defined and tag_name is not null %} {% if tag_name is instanceof('string') %} -

{% trans %}Notes with tag: %tag_name%{% endtrans %}

+

{% trans %}Actors with tag: %tag_name%{% endtrans %}

{% else %} {% set tags = tag_name|join(',') %} {# TODO Not ideal, hard to translate #} -

{% trans %}Notes with tags: %tags%{% endtrans %}

+

{% trans %}Actors with tags: %tags%{% endtrans %}

{% endif %} {% endif %}