{% blocktrans trimmed with password_length=request.press.password_length %}
Your password should be {{ password_length }} characters long.
{% endblocktrans %}
{% if request.press.password_upper %}
{% blocktrans trimmed %}
Your password should contain at least one upper case letter.
{% endblocktrans %}
{% endif %}
{% if request.press.password_number %}
{% blocktrans trimmed %}
Your password should contain at least one number.
{% endblocktrans %}
{% endif %}