diff options
| author | Georg Bauer <gb@hugo.westfalen.de> | 2005-10-19 23:59:05 +0000 |
|---|---|---|
| committer | Georg Bauer <gb@hugo.westfalen.de> | 2005-10-19 23:59:05 +0000 |
| commit | f29aab544772134cf23660614e36cbfd4bb7815c (patch) | |
| tree | 7b986d50426b405e0351654f9a62152612e75f34 | |
| parent | 72dcdd4de14b3516bf082bebe5e6f36fd1a36b7c (diff) | |
i18n: fixed a bug that crept in with latest translation for new admin
git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@965 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/models/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/models/admin.py b/django/contrib/admin/models/admin.py index 0a2a60b3e9..b7f9bd03fc 100644 --- a/django/contrib/admin/models/admin.py +++ b/django/contrib/admin/models/admin.py @@ -5,7 +5,7 @@ from django.utils.translation import gettext_lazy as _ class LogEntry(meta.Model): action_time = meta.DateTimeField(_('action time'), auto_now=True) user = meta.ForeignKey(auth.User) - content_type = meta.ForeignKey(_('content type'), core.ContentType, blank=True, null=True) + content_type = meta.ForeignKey(core.ContentType, blank=True, null=True) object_id = meta.TextField(_('object id'), blank=True, null=True) object_repr = meta.CharField(_('object repr'), maxlength=200) action_flag = meta.PositiveSmallIntegerField(_('action flag')) |
