Django

Code

Changeset 965

Show
Ignore:
Timestamp:
10/19/05 18:59:05 (3 years ago)
Author:
hugo
Message:

i18n: fixed a bug that crept in with latest translation for new admin

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/i18n/django/contrib/admin/models/admin.py

    r963 r965  
    66    action_time = meta.DateTimeField(_('action time'), auto_now=True) 
    77    user = meta.ForeignKey(auth.User) 
    8     content_type = meta.ForeignKey(_('content type'), core.ContentType, blank=True, null=True) 
     8    content_type = meta.ForeignKey(core.ContentType, blank=True, null=True) 
    99    object_id = meta.TextField(_('object id'), blank=True, null=True) 
    1010    object_repr = meta.CharField(_('object repr'), maxlength=200)