{% trans "This component is set up incorrectly." %}
{% trans "Following enforced checks are not used anywhere:" %}
{% for check in component.get_unused_enforcements %}
{% if check.notsupported %}
{% blocktrans with check=check.name %}{{ check }} quality check is enforced, but it is not available.{% endblocktrans %}
{% else %}
{% blocktrans with check=check.name flag=check.enable_string %}{{ check }} quality check is enforced, but not turned on using {{ flag }}.{% endblocktrans %}