Fix grammar in email change flow

This commit is contained in:
int-y1 2023-12-26 01:03:39 -05:00 committed by Roger Fu
parent 8accffd156
commit 7a3db32305
4 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ Please click the link to confirm this email change. The link will expire in {{ c
<br><br>
{% if site_admin_email %}
{% with link='<a href="mailto:%(email)s">%(email)s</a>'|safe|format(email=site_admin_email) %}
{{ _('If you have encounter any problems, feel free to shoot us an email at %(email)s.', email=link) }}
{{ _('If you have encountered any problems, feel free to shoot us an email at %(email)s.', email=link) }}
{% endwith %}
{% endif %}
</div></div>

View File

@ -11,5 +11,5 @@ Please go to this page to confirm this email change. The link will expire in {{
{{ protocol }}://{{ domain }}{{ url('email_change_activate', activation_key=activation_key) }}
{% if site_admin_email %}
{{ _('If you have encounter any problems, feel free to shoot us an email at %(email)s.', email=site_admin_email) }}
{{ _('If you have encountered any problems, feel free to shoot us an email at %(email)s.', email=site_admin_email) }}
{% endif %}

View File

@ -6,7 +6,7 @@
<br><br>
{{ user.get_username() }},
<br>
{% trans %}Someone (hopefully you!) has requested to change the email address associated with your user account at {{ site_name }} to {{ new_email }}. {% endtrans %}
{% trans %}Someone (hopefully you!) has requested to change the email address associated with your user account at {{ site_name }} to {{ new_email }}.{% endtrans %}
<br><br>
{{ _('If this was you, no further action is required.') }}

View File

@ -1,5 +1,5 @@
{{ user.get_username() }},
{% trans %}Someone (hopefully you!) has requested to change the email address associated with your user account at {{ site_name }} to {{ new_email }}. {% endtrans %}
{% trans %}Someone (hopefully you!) has requested to change the email address associated with your user account at {{ site_name }} to {{ new_email }}.{% endtrans %}
{{ _('If this was you, no further action is required.') }}
{% if site_admin_email %}