{% extends "base.html" %} {% load i18n %} {% load translations %} {% load humanize %} {% block breadcrumbs %}
  • {% trans "Checks" %}
  • {% endblock %} {% block content %}
    {% for check in checks %} {% endfor %}
    {% trans "Check" %} {% trans "Total" %} {% trans "Dismissed" %} {% trans "Active" %} {% trans "Translated" %}
    {% check_name check.name %} {{ check.check_count |intcomma}} {{ check.dismissed_check_count |intcomma}} {{ check.active_check_count |intcomma}} {{ check.translated_check_count |intcomma}}

    {% trans "Information" %}

    {% trans "Customizable quality checks will help you improve the quality of translations." %}

    {% trans "The checks can help you identify problematic translations or source strings which are hard to translate." %}

    {% endblock %}