diff --git a/accounts/forms.py b/accounts/forms.py index a98767b..2e04118 100644 --- a/accounts/forms.py +++ b/accounts/forms.py @@ -7,7 +7,7 @@ from django.conf import settings class UserAddForm(forms.Form): name = forms.CharField(label="Name", - error_messages={'required': _('No User name has been entered')}, + error_messages={'required': _('No username has been entered')}, max_length=20) password = forms.CharField(required=not settings.ALLOW_EMPTY_PASSWORD, error_messages={'required': _('No password has been entered')},) diff --git a/accounts/templates/accounts-list.html b/accounts/templates/accounts-list.html index b9c3487..9c77911 100644 --- a/accounts/templates/accounts-list.html +++ b/accounts/templates/accounts-list.html @@ -22,7 +22,7 @@
{% trans "Click on Boot button to start this instance." %}
+{% trans "Click on Power On button to start this instance." %}