# HG changeset patch # User Lennard de Rijk # Date 1233161454 0 # Node ID 7e10c0654dfb90c187b9aa02934cc8ac568eee5b # Parent 16e412c9b442b0aca5329a70c209c3c9cad27a1e Changed the verbose name for agrees_to_tos to I agree to the Terms of Service. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r 16e412c9b442 -r 7e10c0654dfb app/soc/models/role.py --- a/app/soc/models/role.py Wed Jan 28 16:48:41 2009 +0000 +++ b/app/soc/models/role.py Wed Jan 28 16:50:54 2009 +0000 @@ -279,7 +279,7 @@ #: Service. (Not a required field because some Roles may not have special #: Terms of Service.) agrees_to_tos = db.BooleanProperty( - verbose_name=ugettext('Agrees to ToS')) + verbose_name=ugettext('I agree to the Terms of Service')) agrees_to_tos.help_text = ugettext( 'Indicates that the user agrees to the Terms of Service for this Role.') diff -r 16e412c9b442 -r 7e10c0654dfb app/soc/models/user.py --- a/app/soc/models/user.py Wed Jan 28 16:48:41 2009 +0000 +++ b/app/soc/models/user.py Wed Jan 28 16:50:54 2009 +0000 @@ -95,7 +95,7 @@ #: (Not a required field because the Terms of Service might not be present #: when the first User profile is created when bootstrapping the site.) agrees_to_tos = db.BooleanProperty( - verbose_name=ugettext('Agrees to ToS')) + verbose_name=ugettext('I agree to the Terms Of Service')) agrees_to_tos.help_text = ugettext( 'Indicates that the user agrees to the site-wide Terms of Service.')