Changeset 6508 for main/waeup.sirp/trunk


Ignore:
Timestamp:
5 Jul 2011, 12:10:09 (13 years ago)
Author:
Henrik Bettermann
Message:

Write Username and Loginname in two words.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/interfaces.py

    r6481 r6508  
    4141
    4242class RoleSource(BasicSourceFactory):
     43    """A source for global roles.
     44    """
    4345    def getValues(self):
    4446        # late import: in interfaces we should not import local modules
     
    193195    name = schema.TextLine(
    194196        title = u'User ID',
    195         description = u'Loginname',
     197        description = u'Login name',
    196198        required = True,)
    197199    title = schema.TextLine(
    198         title = u'Username',
     200        title = u'User name',
    199201        description = u'Real name',
    200202        required = False,)
     
    206208        required = True,)
    207209    roles = schema.List(
    208         title = u'Roles',
     210        title = u'Global roles',
    209211        value_type = schema.Choice(source=RoleSource()))
    210212
Note: See TracChangeset for help on using the changeset viewer.