SetPasswordForm help_text always uses LANGUAGE_CODE as locale
The SetPasswordForm
uses help_text=password_validation.password_validators_help_text_html()
, however it will only translate to the LANGUAGE_CODE
setting and not to the users language.
I am not very familiar with django internals, but a workaround of help_text=lazy(password_validation.password_validators_help_text_html)
seemed to work for me.
Triage Stage: |
Unreviewed → Accepted
|
Triage Stage: |
Accepted → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
SetPasswordForm