diff --git a/src/Bundle/ChillMainBundle/Resources/views/PermissionsGroup/show.html.twig b/src/Bundle/ChillMainBundle/Resources/views/PermissionsGroup/show.html.twig
index 1271d2d60..140c6b9aa 100644
--- a/src/Bundle/ChillMainBundle/Resources/views/PermissionsGroup/show.html.twig
+++ b/src/Bundle/ChillMainBundle/Resources/views/PermissionsGroup/show.html.twig
@@ -31,10 +31,16 @@
{% for role_scope in role_scopes %}
- {{ role_scope.role|trans }}
+ {{ role_scope.role|trans|replace({'(⚑)': ''}) }}
{% if expanded_roles[role_scope.role]|length > 1 %}
- {{ 'Which implies'|trans }} : {% for role in expanded_roles[role_scope.role] %}{{ role|trans }}{% if not loop.last %}, {% endif %}{% endfor %}
+ {{ 'Which implies'|trans }} :
+ {% for role in expanded_roles[role_scope.role] %}
+ {% if role != role_scope.role %}
+ {{ role|trans|replace({'(⚑)': ''}) }}
+ {% if not loop.last %}, {% endif %}
+ {% endif %}
+ {% endfor %}
{% endif %}
|
diff --git a/src/Bundle/ChillMainBundle/translations/messages.fr.yml b/src/Bundle/ChillMainBundle/translations/messages.fr.yml
index 99ba90310..53619952c 100644
--- a/src/Bundle/ChillMainBundle/translations/messages.fr.yml
+++ b/src/Bundle/ChillMainBundle/translations/messages.fr.yml
@@ -425,6 +425,7 @@ No entities: Aucun élément
CHILL_FOO_SEE: Voir un élément
CHILL_FOO_EDIT: Modifier un élément
+chill_export: Exports (statistiques)
#Show templates
Date: Date