diff --git a/nsupdate/accounts/templates/registration/activate.html b/nsupdate/accounts/templates/registration/activate.html index af3efb0..c7cb554 100644 --- a/nsupdate/accounts/templates/registration/activate.html +++ b/nsupdate/accounts/templates/registration/activate.html @@ -2,13 +2,14 @@ {% load i18n %}{% load bootstrap %} {% url 'auth_login' as auth_login_url %} {% block title %}{% if account %}{% trans "Activation complete" %}{% else %}{% trans "Activation problem" %}{% endif %}{% endblock %} + {% block content %} {% if account %} -{% blocktrans %} -Thanks {{ account }}, activation complete! -You may now login using the username and password you set at registration. -{% endblocktrans %} +
{% trans 'You may now login using the username and password you set at registration.' %}
+ {% else %} -{% blocktrans %}Oops -- it seems that your activation key is invalid. Please check the url again.{% endblocktrans %} +{% trans 'it seems that your activation key is invalid. Please check the url again.' %}
{% endif %} {% endblock %} diff --git a/nsupdate/accounts/templates/registration/activation_complete.html b/nsupdate/accounts/templates/registration/activation_complete.html index 6bcdf4c..2107453 100644 --- a/nsupdate/accounts/templates/registration/activation_complete.html +++ b/nsupdate/accounts/templates/registration/activation_complete.html @@ -1,9 +1,9 @@ {% extends "registration/registration_base.html" %} {% load i18n %}{% load bootstrap %} -{% block title %}Activation complete{% endblock %} +{% block title %}{% trans 'Activation complete' %}{% endblock %} + {% block content %} -You may now login using the username and password you set at registration.
+{% trans 'You may now login using the username and password you set at registration.' %}
+ {% endblock %} - - diff --git a/nsupdate/accounts/templates/registration/registration_complete.html b/nsupdate/accounts/templates/registration/registration_complete.html index 4cf3b7e..b6047cb 100644 --- a/nsupdate/accounts/templates/registration/registration_complete.html +++ b/nsupdate/accounts/templates/registration/registration_complete.html @@ -1,8 +1,8 @@ {% extends "registration/registration_base.html" %} {% load i18n %}{% load bootstrap %} -{% block title %}{% trans "Activation email sent" %}{% endblock %} -{% block content %} -{% blocktrans %}An activation email has been sent. -Please check your email and click on the link to activate your account.{% endblocktrans %} -{% endblock %} +{% block title %}{% trans 'Activation email sent' %}{% endblock %} +{% block content %} +{% trans 'Please check your email and click on the link to activate your account.' %}
+{% endblock %} diff --git a/nsupdate/accounts/templates/registration/registration_form.html b/nsupdate/accounts/templates/registration/registration_form.html index ce70035..830249b 100644 --- a/nsupdate/accounts/templates/registration/registration_form.html +++ b/nsupdate/accounts/templates/registration/registration_form.html @@ -1,10 +1,10 @@ {% extends "registration/registration_base.html" %} {% load i18n %}{% load bootstrap %} -{% load bootstrap %} {% block title %}{% trans "Register for an account" %}{% endblock %} + {% block content %}{% trans "You can easily test the service and see what you get." %} @@ -34,7 +34,7 @@ finishing your initial evaluation.{% endblocktrans %}
{% blocktrans %}
@@ -43,15 +43,17 @@
E-Mail address: must be a working one, we'll send you an activation E-Mail there.
Password: please use a sane one, we trust you.{% endblocktrans %}