{% extends "_base.html" %} {% load static %} {% load i18n %} {% block content %}
{% trans 'Here you can get an overview of the current translation status of your page content.' %}
{% trans "This overview show the approximate number of words of outdated and missing translations." %}
{% trans 'Language' %} | {% trans 'Outdated (Words)' %} | {% trans 'Missing (Words)' %} | {% trans 'Total (per language)'%} | ||
---|---|---|---|---|---|
{{ language }} |
{{ counter.OUTDATED }} |
{{ counter.MISSING }} |
{{ counter.OUTDATED|add:counter.MISSING }} |
||
{% trans 'No Language available.' %} | |||||
{% trans "Total" %} |
{{ total_outdated_words }} |
{{ total_missing_words }} |
{{ total_outdated_words|add:total_missing_words }} |