Django

Code

Changeset 5996

Show
Ignore:
Timestamp:
08/24/07 06:39:20 (1 year ago)
Author:
russellm
Message:

newforms-admin: Fixed #5231 -- Corrected some entries in the admindocs views to point to new and changed datatypes. Thansk, Matthias Pronk <django@masida.nl>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/newforms-admin/AUTHORS

    r5984 r5996  
    228228    Daniel Poelzleithner <http://poelzi.org/> 
    229229    polpak@yahoo.com 
     230    Matthias Pronk <django@masida.nl> 
    230231    Johann Queuniet <johann.queuniet@adh.naellia.eu> 
    231232    J. Rademaker 
  • django/branches/newforms-admin/django/contrib/admindocs/views.py

    r5628 r5996  
    292292    'AutoField'                 : _('Integer'), 
    293293    'BooleanField'              : _('Boolean (Either True or False)'), 
    294     'CharField'                 : _('String (up to %(maxlength)s)'), 
     294    'CharField'                 : _('String (up to %(max_length)s)'), 
    295295    'CommaSeparatedIntegerField': _('Comma-separated integers'), 
    296296    'DateField'                 : _('Date (without time)'), 
    297297    'DateTimeField'             : _('Date (with time)'), 
     298    'DecimalField'              : _('Decimal number'), 
    298299    'EmailField'                : _('E-mail address'), 
    299300    'FileField'                 : _('File path'), 
    300301    'FilePathField'             : _('File path'), 
    301     'FloatField'                : _('Decimal number'), 
     302    'FloatField'                : _('Floating point number'), 
    302303    'ForeignKey'                : _('Integer'), 
    303304    'ImageField'                : _('File path'), 
     
    310311    'PositiveIntegerField'      : _('Integer'), 
    311312    'PositiveSmallIntegerField' : _('Integer'), 
    312     'SlugField'                 : _('String (up to %(maxlength)s)'), 
     313    'SlugField'                 : _('String (up to %(max_length)s)'), 
    313314    'SmallIntegerField'         : _('Integer'), 
    314315    'TextField'                 : _('Text'),