diff --git a/bundle/Resources/translations/ezrepoforms_policies.en.xlf b/bundle/Resources/translations/ezrepoforms_policies.en.xlf index 6d8f7772a..5fd883171 100644 --- a/bundle/Resources/translations/ezrepoforms_policies.en.xlf +++ b/bundle/Resources/translations/ezrepoforms_policies.en.xlf @@ -1,6 +1,6 @@ - +
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message. @@ -21,6 +21,11 @@ Language key: policy.limitation.identifier.language + + Member Of + Member Of + key: policy.limitation.identifier.memberof + New Section New Section @@ -61,6 +66,11 @@ Owner of Parent key: policy.limitation.identifier.parentowner + + Role + Role + key: policy.limitation.identifier.role + Section Section diff --git a/bundle/Resources/views/limitation_values.html.twig b/bundle/Resources/views/limitation_values.html.twig index d85ddbe23..fceebe587 100644 --- a/bundle/Resources/views/limitation_values.html.twig +++ b/bundle/Resources/views/limitation_values.html.twig @@ -116,3 +116,15 @@ {{ values|join(', ') }} {% endapply %} {% endblock %} + +{% block ez_limitation_memberof_value %} +{% apply spaceless %} + {{ values|join(', ') }} +{% endapply %} +{% endblock %} + +{% block ez_limitation_role_value %} +{% apply spaceless %} + {{ values|join(', ') }} +{% endapply %} +{% endblock %}