mirror of https://github.com/zulip/zulip.git
11 lines
625 B
Plaintext
11 lines
625 B
Plaintext
{% set localized_date = event_date|localize %}
|
|
{% if acting_user and initiated_deactivation %}
|
|
{% trans %}You have deactivated your Zulip organization, {{ realm_name }}, on {{ localized_date }}.{% endtrans %}
|
|
{% elif acting_user %}
|
|
{% trans %}Your Zulip organization, {{ realm_name }}, was deactivated by {{ deactivating_owner }} on {{ localized_date }}.{% endtrans %}
|
|
{% else %}
|
|
{% trans %}Your Zulip organization, {{ realm_name }}, was deactivated on {{ localized_date }}.{% endtrans %}
|
|
{% endif %}
|
|
|
|
{% trans%}If you have any questions or concerns, please reply to this email as soon as possible.{% endtrans %}
|