{% extends "_base.html" %} {% load static %} {% load i18n %} {% block content %}

{% trans 'Translation Report' %}

{% trans 'Here you can get an overview of the current translation status of your page content.' %}

{% trans 'Overview of the current translation status' %}

{% trans "Outdated Translations" %}

{% trans "This overview show the approximate number of words of all outdated translations." %}

{% for language, word_count in outdated_word_count.items %} {% empty %} {% endfor %}
{% trans 'Language' %} {% trans 'Words' %}

{{ language.translated_name }}

{{ word_count }}

{% trans 'No Language available.' %}

{% trans "Total" %}

{{ total_outdated_words }}

{{ coverage_data|json_script:"translation_coverage_data" }} {% endblock %}