﻿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
15172	Admin do not translate models.	aledr	nobody	"According to Django's docs the above code should show a translated model name in admin but it stills showing its name only in english.

{{{
# -*- coding: utf-8 -*-
from django.db import models
from django.utils.translation import ugettext_lazy as _

# Create your models here.
class Activity(models.Model):
    """"""This model describes the customer activities.""""""

    name = models.CharField(_(u'Activity'), max_length=100)
    description = models.CharField(_(u'Description'), max_length=100)

    class Meta:
        verbose_name = _(u'Activity')
        verbose_name_plural = _(u'Activities')

    def __unicode__(self):
        return unicode(self.name)
}}}"		closed	Internationalization	1.2		worksforme			Unreviewed	0	0	0	0	0	0
