{% for term, translations in terms.items() %}
{{ term }}
{% for lang, translation in translations.items() %}
-
{% if (lang, term) in fuzzy %}{% endif %}
{% set lines = translation.split("\n") %}
{% for line in lines %}
{{ line }}
{% if not loop.last %}
{% endif %}
{% endfor %}
{% if (lang, term) in fuzzy %}{% endif %}
{% endfor %}
{% endfor %}