{% extends "mail/base.html" %} {% load i18n translations %} {% block content %} {% if final_removal %}
{% translate "Your billing plan has expired and all its projects have been removed." %}
{% elif billing.is_trial %}{% translate "Your trial period is going to expire in less than a week." %} {% if billing.plan.price %} {% translate "If you like Weblate and you want to continue using it, please purchase the subscription. If not, tell us what you are missing." %} {% else %} {% translate "If you like Weblate and you want to continue using it, just request an approval of your libre plan." %} {% endif %}
{% else %}{% translate "Your billing plan has expired. Please renew it to continue using the service." %}
{% endif %} {% with projects=billing.projects.all %} {% if projects %}{% translate "This billing plan covers the following projects:" %}
{% translate "There are no projects attached to this billing plan. (There might be projects in other billing plans of yours.)" %}
{% endif %} {% endwith %} {% if final_removal %}{% translate "All projects covered by this billing plan have been removed." %}
{% else %} {% if billing.removal %} {% if billing.plan.price %}{% blocktranslate 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 }}.{% endblocktranslate %}
{% else %}{% blocktranslate 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 }}.{% endblocktranslate %}
{% endif %} {% endif %} {% if payment_enabled %} {% endif %} {% endif %} {% endblock content %}