Skip to content

Commit

Permalink
Merge pull request #330 from Antiun/pr-user_mail_signature_translatable
Browse files Browse the repository at this point in the history
[IMP] Make user mail signature translatable
  • Loading branch information
pedrobaeza committed Sep 18, 2015
2 parents 284319c + 8b2919d commit 9f6cc13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openerp/addons/base/res/res_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def _get_password(self, cr, uid, ids, arg, karg, context=None):
help="Specify a value only when creating a user or if you're "\
"changing the user's password, otherwise leave empty. After "\
"a change of password, the user has to login again."),
'signature': fields.html('Signature'),
'signature': fields.html('Signature', translate=True),
'active': fields.boolean('Active'),
'action_id': fields.many2one('ir.actions.actions', 'Home Action', help="If specified, this action will be opened at log on for this user, in addition to the standard menu."),
'groups_id': fields.many2many('res.groups', 'res_groups_users_rel', 'uid', 'gid', 'Groups'),
Expand Down

0 comments on commit 9f6cc13

Please sign in to comment.