{% extends "misago/emails/base.html" %}
{% load i18n misago_absoluteurl %}
{% block content %}
{% blocktrans trimmed with user=user context "data download ready email" %}
{{ user }}, you are receiving this message because your data is ready for download.
{% endblocktrans %}
{% trans "Download data" context "data download ready email cta" %}
{% blocktrans trimmed count expires_in=expires_in context "data download ready email" %}
This link will remain active for {{ expires_in }} hour from the time this message has been sent.
{% plural %}
This link will remain active for {{ expires_in }} hours from the time this message has been sent.
{% endblocktrans %}
{% endblock content %}