{% extends "mail/base.html" %} {% load i18n %} {% load translations %} {% block content %} {% if final_removal %}
{% trans "Your billing plan has expired and all its projects have been removed." %}
{% elif billing.is_trial %}{% trans "Your trial period is going to expire in less than a week." %} {% if billing.plan.price %} {% trans "If you like Weblate and you want to continue using it, please purchase the subscription. If not, tell us what you are missing." %} {% else %} {% trans "If you like Weblate and you want to continue using it, just request an approval of your libre plan." %} {% endif %}
{% else %}{% trans "Your billing plan has expired. Please renew it to continue using the service." %}
{% endif %} {% with projects=billing.projects.all %} {% if projects %}{% trans "This billing plan covers the following projects:" %}
{% trans "There are no projects attached to this billing plan. (There might be projects in other billing plans of yours.)" %}
{% endif %} {% endwith %} {% if final_removal %}{% trans "All projects covered by this billing plan have been removed." %}
{% else %} {% if billing.removal %} {% if billing.plan.price %}{% blocktrans with date=billing.removal|date:"SHORT_DATE_FORMAT" %}If you don't issue the payment, all projects within this billing plan will be removed on {{ date }}.{% endblocktrans %}
{% else %}{% blocktrans with date=billing.removal|date:"SHORT_DATE_FORMAT" %}If your Libre hosting is not approved for it, all projects within this billing plan will be removed on {{ date }}.{% endblocktrans %}
{% endif %} {% endif %} {% if payment_enabled %} {% endif %} {% endif %} {% endblock %}