Localization Coverage

{% if data and data.coverage %} {% for locale, row in data.coverage.items() %} {% set pct = row.coverage_pct|default(0) %} {% set status = 'Good' if pct >= 95 else ('Warn' if pct >= 80 else 'Poor') %} {% set band_class = 'ok' if pct >= 95 else ('warn' if pct >= 80 else 'bad') %} {% endfor %}
Locale Coverage Missing Orphan Status
{{ locale }}
{{ '%.2f'|format(pct) }}%
{{ row.missing_keys|default(0) }} {{ row.orphan_keys|default(0) }} {{ status }}
{% if data.validation_warnings and data.validation_warnings|length > 0 %}
Validation Warnings ({{ data.validation_warnings|length }})
{% endif %} {% else %}

No localization data found.

{% endif %}