[IMP] account: added translate=True on name field of account_account_type

bzr revid: qdp-launchpad@openerp.com-20111209095525-wjbethe8lv1ujrlo
This commit is contained in:
Quentin (OpenERP) 2011-12-09 10:55:25 +01:00
parent f8ecc91b56
commit 9f682b4a27
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ class account_account_type(osv.osv):
_name = "account.account.type"
_description = "Account Type"
_columns = {
'name': fields.char('Account Type', size=64, required=True),
'name': fields.char('Account Type', size=64, required=True, translate=True),
'code': fields.char('Code', size=32, required=True),
'close_method': fields.selection([('none', 'None'), ('balance', 'Balance'), ('detail', 'Detail'), ('unreconciled', 'Unreconciled')], 'Deferral Method', required=True, help="""Set here the method that will be used to generate the end of year journal entries for all the accounts of this type.