From 7f68f0bf910f5ed73a12775fdf517db474592760 Mon Sep 17 00:00:00 2001 From: "Nimesh (Open ERP)" Date: Wed, 22 Jun 2011 11:45:36 +0530 Subject: [PATCH] change the label of new_password field lp bug: https://launchpad.net/bugs/798681 fixed bzr revid: nco@tinyerp.com-20110622061536-meps01rofci0z5gw --- openerp/addons/base/res/res_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/res/res_user.py b/openerp/addons/base/res/res_user.py index 8a76ba9a6f4..18c9b27fb17 100644 --- a/openerp/addons/base/res/res_user.py +++ b/openerp/addons/base/res/res_user.py @@ -218,7 +218,7 @@ class users(osv.osv): 'password': fields.char('Password', size=64, invisible=True, help="Keep empty if you don't want the user to be able to connect on the system."), 'new_password': fields.function(_get_password, method=True, type='char', size=64, fnct_inv=_set_new_password, - string='Change password', help="Only specify a value if you want to change the user password. " + string='Set password', help="Only specify a value if you want to change the user password. " "This user will have to logout and login again!"), 'email': fields.char('E-mail', size=64, help='If an email is provided, the user will be sent a message '