﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34218	Password mismatch on UserCreationForm not translated to the Slovenian language	Nejc Ilenic	nobody	"When using the `UserCreationForm` together with `LANGUAGE_CODE = 'sl'` the `password_mismatch` error is not translated.

Reproducer:
{{{
#!div style=""font-size: 80%""
Code highlighting:
  {{{#!python
from django.contrib.auth.forms import UserCreationForm
from django.utils import translation

form = UserCreationForm()
form.is_valid()

with translation.override('fr'):
    translation.gettext(form.error_messages['password_mismatch'])
# prints 'Les deux mots de passe ne correspondent pas.'

with translation.override('sl'):
    translation.gettext(form.error_messages['password_mismatch'])
# prints 'The two password fields didn’t match.'
  }}}
}}}
"	Bug	closed	Internationalization	4.1	Normal	invalid	translations		Unreviewed	0	0	0	0	0	0
