# HG changeset patch # User Todd Larsen # Date 1227313390 0 # Node ID e14e9cf23097f46709789ad8bcb19561cdf4ef38 # Parent e30462354e26fdae357da84c1fcfb25ebb936657 Add User.public_name help text, per discussions on melange-soc-dev. Patch by: Todd Larsen diff -r e30462354e26 -r e14e9cf23097 app/soc/models/user.py --- a/app/soc/models/user.py Fri Nov 21 23:45:37 2008 +0000 +++ b/app/soc/models/user.py Sat Nov 22 00:23:10 2008 +0000 @@ -79,9 +79,17 @@ #: alias. Public names can be any valid UTF-8 text. public_name = db.StringProperty(required=True, verbose_name=ugettext_lazy('Public name')) + public_name.help_text = ugettext_lazy( + 'Human-readable name (UTF-8) that will be displayed publicly on the' + ' site. While you can use your real name, like "First Last", please' + ' keep in mind that this "public name" will be used as your alias' + ' throughout the site, displayed to all users, for comments, document' + ' ownership, and the like. Please do not use your real name if you' + ' are a minor (not an adult) where you live.') #: field storing whether User is a Developer with site-wide access. is_developer = db.BooleanProperty( verbose_name=ugettext_lazy('Is Developer')) is_developer.help_text = ugettext_lazy( 'Field used to indicate user with site-wide "Developer" access.') +