diff -r 9dd535241841 -r 046668855732 app/soc/models/role.py --- a/app/soc/models/role.py Sat Jan 31 21:32:29 2009 +0000 +++ b/app/soc/models/role.py Sat Jan 31 22:23:23 2009 +0000 @@ -102,13 +102,13 @@ #: the Role would like it displayed (could be surname followed by #: given name in some cultures, for example). Display names can be #: any valid UTF-8 text. - name_on_certificates = db.StringProperty( - verbose_name=ugettext('Display Name')) - name_on_certificates.help_text = ugettext( - 'Optional field used as a display name, such as for awards ' - 'certificates. Should be the entire name in the format ' + name_on_documents = db.StringProperty( + verbose_name=ugettext('Name on documents')) + name_on_documents.help_text = ugettext( + 'Optional field used as a display name, such as for documents like ' + 'awards certificates. Should be the entire name in the format ' 'the person would like it displayed (could be family name followed ' - 'by given name in some cultures, for example). Display names can be ' + 'by given name in some cultures, for example). Name on documents can be ' 'any valid UTF-8 text.') #====================================================================