Opened 12 years ago

Last modified 12 years ago

#18047 closed Bug

Reset password mail subject not internacionalizing as it should — at Version 2

Reported by: thiagocavila@… Owned by: nobody
Component: Internationalization Version: 1.4
Severity: Normal Keywords: django.contrib.auth.views
Cc: Triage Stage: Fixed on a branch
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description (last modified by Claude Paroz)

When I call for:

	url(r'^login/forgot/$', 'django.contrib.auth.views.password_reset', name='auth_forgot'),
	url(r'^login/forgot/done/$', 'django.contrib.auth.views.password_reset_done'),

Using default template and the generic views with no parameters.

It sends me and email with the body translated and the subject always in English.

Change History (2)

comment:1 by anonymous, 12 years ago

I forgot to say, I am using settings:
USE_I18N = True

And language: 'pt-br'

comment:2 by Claude Paroz, 12 years ago

Component: UncategorizedInternationalization
Description: modified (diff)
Type: UncategorizedBug

I was not able to reproduce your problem. Can you tell us the exact subject text that is produced? Can you check if your project does not provide its own /registration/password_reset_subject.txt

Note: See TracTickets for help on using tickets.
Back to Top