[IMP] auth_signup: improve label in settings

bzr revid: rco@openerp.com-20121003083831-1tcla6w18cyazb1j
This commit is contained in:
Raphael Collet 2012-10-03 10:38:31 +02:00
parent 295e96d528
commit 224520c2ca
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class base_config_settings(osv.TransientModel):
_inherit = 'base.config.settings'
_columns = {
'auth_signup_uninvited': fields.boolean('Allow public users to sign up', help="If unchecked only invited users may sign up"),
'auth_signup_uninvited': fields.boolean('Allow external users to sign up', help="If unchecked, only invited users may sign up"),
'auth_signup_template_user_id': fields.many2one('res.users', 'Template user for new users created through signup'),
}