improve config wizard labels

bzr revid: al@openerp.com-20120818164636-ue0fljh45smzskb9
This commit is contained in:
Antony Lesuisse 2012-08-18 18:46:36 +02:00
parent b10545edf2
commit 4f76c4e8d9
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ class base_config_settings(osv.TransientModel):
_inherit = 'base.config.settings'
_columns = {
'auth_signup_uninvited': fields.boolean('Allow uninvited users to sign up'),
'auth_signup_uninvited': fields.boolean('allow public 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'),
}

View File

@ -32,8 +32,8 @@ class base_config_settings(osv.osv_memory):
help="""Share or embbed any screen of openerp."""),
'module_portal': fields.boolean('activate the customer/supplier portal',
help="""Give access your customers and suppliers to their documents."""),
'module_auth_anonymous': fields.boolean('activete the public portal',
help="""Enable the public part of openerp, the public part of openerp are browsable like a website."""),
'module_auth_anonymous': fields.boolean('activate the public portal',
help="""Enable the public part of openerp, openerp becomes a public website."""),
'module_auth_oauth': fields.boolean('use external authentication providers, sign in with google, facebook, ...'),
}