diff --git a/InvenTree/InvenTree/forms.py b/InvenTree/InvenTree/forms.py index c5cd7fad58..084de06472 100644 --- a/InvenTree/InvenTree/forms.py +++ b/InvenTree/InvenTree/forms.py @@ -224,11 +224,11 @@ class CustomSignupForm(SignupForm): # check for two mail fields if InvenTreeSetting.get_setting('LOGIN_SIGNUP_MAIL_TWICE'): self.fields["email2"] = forms.EmailField( - label=_("E-mail (again)"), + label=_("Email (again)"), widget=forms.TextInput( attrs={ "type": "email", - "placeholder": _("E-mail address confirmation"), + "placeholder": _("Email address confirmation"), } ), ) diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index d4f26af739..fbe143de5a 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -822,7 +822,7 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'validator': bool, }, 'LOGIN_MAIL_REQUIRED': { - 'name': _('E-Mail required'), + 'name': _('Email required'), 'description': _('Require user to supply mail on signup'), 'default': False, 'validator': bool, diff --git a/InvenTree/templates/InvenTree/settings/user.html b/InvenTree/templates/InvenTree/settings/user.html index 569b218b43..d6cbf998a7 100644 --- a/InvenTree/templates/InvenTree/settings/user.html +++ b/InvenTree/templates/InvenTree/settings/user.html @@ -39,12 +39,12 @@
{% trans 'The following e-mail addresses are associated with your account:' %}
+{% trans 'The following email addresses are associated with your account:' %}
{% endif %}{% blocktrans with confirmation.email_address.email as email %}Please confirm that {{ email }} is an e-mail address for user {{ user_display }}.{% endblocktrans %}
+{% blocktrans with confirmation.email_address.email as email %}Please confirm that {{ email }} is an email address for user {{ user_display }}.{% endblocktrans %}