Opened 12 years ago

Closed 12 years ago

#18047 closed Bug (fixed)

Reset password mail subject not internacionalizing as it should

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 (3)

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

comment:3 by thiagocavila@…, 12 years ago

Resolution: fixed
Status: newclosed
Triage Stage: UnreviewedFixed on a branch

I'm very sorry. I tried to detail how to reproduce the problem, then I updated Django to 1.4 final (I was using RC2). The problem was solved. Sorry for the inconvenience!

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