From 4f76c4e8d9fecca6ffc091f13c40ac3eadcc742d Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Sat, 18 Aug 2012 18:46:36 +0200 Subject: [PATCH] improve config wizard labels bzr revid: al@openerp.com-20120818164636-ue0fljh45smzskb9 --- addons/auth_signup/res_config.py | 2 +- addons/base_setup/res_config.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/auth_signup/res_config.py b/addons/auth_signup/res_config.py index 50dc332ac56..6afd1c5b581 100644 --- a/addons/auth_signup/res_config.py +++ b/addons/auth_signup/res_config.py @@ -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'), } diff --git a/addons/base_setup/res_config.py b/addons/base_setup/res_config.py index 7e06f680f83..4826a50400d 100644 --- a/addons/base_setup/res_config.py +++ b/addons/base_setup/res_config.py @@ -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, ...'), }