{% set scopes = scope.split() %}
{% if scopes %}
{{ _('%(client)s is requesting permission to access the following parts of your profile:', client=client.name) }}
{% for scope in scopes %}
{{ scope_desc(scope) }}
{% endfor %}
{% else %}
{{ _('%(client)s does not require any special permissions.', client=client.name) }}
{% endif %}