zulip/templates/zerver/emails/find_team.txt

37 lines
1.4 KiB
Plaintext

{% if account_found %}
{{ _("Thanks for your request!") }}
{% if corporate_enabled %}
{% trans %}Your email address {{ email }} has accounts with the following Zulip Cloud organizations:{% endtrans %}
{% else %}
{% trans %}Your email address {{ email }} has accounts with the following Zulip organizations hosted by {{ external_host }}:{% endtrans %}
{% endif %}
{% for realm in realms %}
* {{ realm.name }}: {{ realm.url }}
{% endfor %}
{% trans %}If you have trouble logging in, you can reset your password.{% endtrans %}
{{ help_reset_password_link }}
{% else %}
{% if corporate_enabled %}
{{ _("You have requested a list of Zulip accounts for this email address.") }} {{ _("Unfortunately, no Zulip Cloud accounts were found.") }}
{% trans %}You can check for accounts with another email ({{ find_accounts_link }}), or try another way to find your account ({{ help_logging_in_link }}).{% endtrans %}
{{ _("If you do not recognize this request, you can safely ignore this email.") }}
{% else %}
{{ _("You have requested a list of Zulip accounts for this email address.") }} {% trans%}Unfortunately, no accounts were found in Zulip organizations hosted by {{external_host}}.{% endtrans %}
{% trans %}You can check for accounts with another email ({{ find_accounts_link }}), or try another way to find your account ({{ help_logging_in_link }}).{% endtrans %}
{{ _("If you do not recognize this request, you can safely ignore this email.") }}
{% endif %}
{% endif %}