{% extends "base.html" %} {% block content %} ← Back to the dashboard

Preview — {{ title }}

Cost estimate — no API calls, no quota spent. {% if override %}Override: re-translating all keys, not just missing ones.{% endif %}

{{ est.master_keys|num }}
Master keys
{{ est.total_missing_keys|num }}
{{ "Keys to translate" if override else "Missing keys total" }}
{{ est.total_chars|num }}
Characters
{% if est.fits_free_tier %}
Fits the free tier
{{ est.total_chars|num }} of 500,000 characters/month.
{% else %}
!
Exceeds the free tier
{{ est.total_chars|num }} characters — the free tier covers 500,000/month.
{% endif %}
{% for lang, d in est.per_language.items() %} {% endfor %}
Language{{ "Keys" if override else "Missing keys" }}Characters
{{ lang }} {{ d.missing_keys|num }} {{ d.chars|num }}
{% if override %}{% endif %}
{% endblock %}