Is there an easy way to change the validation message that occurs for something like auth_views.password_reset without going into django’s trunk?
A message such as “That e-mail address doesn’t have an associated user account. Are you sure you’ve registered?” I’d like to change to “There is no user account. Please click here to register.” What would be the easiest way to do this? Thank you.
This message, like all of the messages from Django core, are internationalized, so you can override the text of selected messages without modifying core files by creating a translation file with higher precedence (https://docs.djangoproject.com/en/dev/topics/i18n/deployment/#how-django-discovers-translations)
msgstrline (not themsgidline)The message should now be replaced with what you want.