[FIX] account: removed translate=True on account type in order to fix the translations

bzr revid: qdp-launchpad@tinyerp.com-20110103084715-hihr3cz55l1i43wt
This commit is contained in:
qdp-launchpad@tinyerp.com 2011-01-03 09:47:15 +01:00
parent 81ca85beff
commit b7d5d7c008
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('Acc. Type Name', size=64, required=True, translate=True),
'name': fields.char('Acc. Type Name', size=64, required=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.