﻿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
20544	User don't translate verbose name to pt_BR	leonardocostadepaula@…	nobody	"The class User() from Auth don't have the verbose_name at the Meta class with _('user').

I don't know why, but that definition on abstract class is looser.

I need to put this code to work with pt_BR:

class User(AbstractUser):
    """"""
    Users within the Django authentication system are represented by this
    model.

    Username, password and email are required. Other fields are optional.
    """"""
    class Meta:
        swappable = 'AUTH_USER_MODEL'
        verbose_name = _('user')   # That is my new line to work!

"	Bug	closed	Python 2	1.5	Normal	duplicate	translate, user		Unreviewed	0	0	0	0	1	0
