mirror of https://github.com/zulip/zulip.git
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:
parent
93062b3ec4
commit
ee71255296
|
@ -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 %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue