{% blocktrans with account.username as username %}Thank you. Your
account is now activated. Your username is
<b>{{ username }}</b>.{% endblocktrans %}
</p>
<p>
{% url 'weblate.accounts.views.profile' as profile_url %}
{% blocktrans %}You might want to <ahref="{{ profile_url }}">adjust your profile</a> now.{% endblocktrans %}
</p>
{% else %}
<h2>{% trans "Your account could not be activated" %}</h2>
<p>
{% blocktrans count expiration_days as days %}This may be because it is already active or because you waited over {{ days }} day to activate it.{% plural %} This may be because it is already active or because you waited over {{ days }} days to activate it.{% endblocktrans %}
{% url 'registration.views.register' as reg_url %}
{% blocktrans count expiration_days as days %}
Your account could not be activated.
This may be because it is already active or because you waited over
{{ days }} day to activate it.
If this is not the case, please contact the website administrator.
Otherwise, you may <ahref="{{ reg_url }}">register again</a>.
{% plural %}
Your account could not be activated.
This may be because it is already active or because you waited over
{{ days }} days to activate it.
If this is not the case, please contact the website administrator.
Otherwise, you may <ahref="{{ reg_url }}">register again</a>.
{% endblocktrans %}
{% blocktrans %}If this is not the case, please <ahref="/contact/">contact</a> the website administrator. Otherwise, you may <ahref="{{ reg_url }}">register again</a>.{% endblocktrans %}
<p>{% blocktrans %}Sorry, but registrations on this site are disabled. You can <ahref="/contact/">contact us</a> for more details.{% endblocktrans %}</p>