emails: Fix "contact us" line in plain-text versions of emails.

This is a continuation of #24260 where we have redrafted the "contact us"
line in various emails, but the plain-text versions of those emails remains
untouched. We want to also update those versions and ensure that they match
with our emails.

Fixes: #25198.
This commit is contained in:
Joelute 2023-04-20 14:11:50 -04:00 committed by Tim Abbott
parent 93062b3ec4
commit ee71255296
4 changed files with 22 additions and 3 deletions

View File

@ -11,4 +11,8 @@
{% endif %}
<{{ activate_url }}>
{% trans %}Contact us any time at {{ support_email }} if you run into trouble,have any feedback, or just want to chat!{% endtrans %}
{% if corporate_enabled %}
{% trans %}Do you have questions or feedback to share? Contact us at {{ support_email }} — we'd love to help!{% endtrans %}
{% else %}
{% trans %}If you have any questions, please contact this Zulip server's administrators at {{ support_email }}.{% endtrans %}
{% endif %}

View File

@ -30,3 +30,10 @@
{% if is_realm_admin %}
{% trans %} We also have a guide for Setting up your organization ({{ getting_organization_started_link }}).{% endtrans %}
{% endif %}
{% if corporate_enabled %}
{% trans %}Questions? Contact us at {{ support_email }} — we'd love to help!{% endtrans %}
{% else %}
{% trans %}If you have any questions, please contact this Zulip server's administrators at {{ support_email }}.{% endtrans %}
{% endif %}

View File

@ -5,4 +5,8 @@
{{ _("To get started, click the link below.") }}
<{{ activate_url }}>
{% trans %}Contact us any time at {{ support_email }} if you run into trouble,have any feedback, or just want to chat!{% endtrans %}
{% if corporate_enabled %}
{% trans %}Do you have questions or feedback to share? Contact us at {{ support_email }} — we'd love to help!{% endtrans %}
{% else %}
{% trans %}If you have any questions, please contact this Zulip server's administrators at {{ support_email }}.{% endtrans %}
{% endif %}

View File

@ -10,4 +10,8 @@
{% trans %}If the request was in error, you can take no action and this link will expire in 24 hours.{% endtrans %}
{% trans %}Contact us any time at {{ support_email }} if you run into trouble, have any feedback, or just want to chat!{% endtrans %}
{% if corporate_enabled %}
{% trans %}Do you have questions or feedback to share? Contact us at {{ support_email }} — we'd love to help!{% endtrans %}
{% else %}
{% trans %}If you have any questions, please contact this Zulip server's administrators at {{ support_email }}.{% endtrans %}
{% endif %}