{% extends "mail/base.html" %} {% load i18n %}{% load translations %} {% block content %} {% if 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 %}

{% elif final_removal %}

{% trans "Your billing plan has expired and all its projects have been removed." %}

{% else %}

{% trans "Your billing plan has expired, if you want to continue using the service, please renew it." %}

{% endif %}

{% trans "This billing plan covers following projects:" %}

{% 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 perform 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 will not be approved, all projects within this billing plan will be removed on {{ date }}.{% endblocktrans %}

{% endif %} {% endif %} {% if payment_enabled %}
{% if billing.plan.price %} {% trans "New payment" %} {% else %} {% trans "Request approval for Libre hosting" %} {% endif %}
{% endif %} {% endif %} {% endblock %}