diff options
author | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2013-09-04 14:54:00 +0200 |
---|---|---|
committer | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2013-09-04 14:54:00 +0200 |
commit | 560fd63843323483fbd9c137793baed9871c6037 (patch) | |
tree | e777e86c81f0570ca55817647ac2a41fa81ceccc /mediagoblin/edit/forms.py | |
parent | 100625f6c2aca37ac4276e686277a1b6568bc893 (diff) | |
download | mediagoblin-560fd63843323483fbd9c137793baed9871c6037.tar.lz mediagoblin-560fd63843323483fbd9c137793baed9871c6037.tar.xz mediagoblin-560fd63843323483fbd9c137793baed9871c6037.zip |
Improve checkbox description
Do not Enable/Disable next to a checkbox. So what does an enabled checkbox do then?
Diffstat (limited to 'mediagoblin/edit/forms.py')
-rw-r--r-- | mediagoblin/edit/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index 3f1e2386..388940b4 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -64,7 +64,7 @@ class EditAccountForm(wtforms.Form): wants_comment_notification = wtforms.BooleanField( description=_("Email me when others comment on my media")) wants_notifications = wtforms.BooleanField( - description=_("Enable/Disable insite notifications")) + description=_("Enable insite notifications about events.")) license_preference = wtforms.SelectField( _('License preference'), [ |