From b7d5d7c00818f308945ed0f45c0c3839f1ff7b13 Mon Sep 17 00:00:00 2001 From: "qdp-launchpad@tinyerp.com" <> Date: Mon, 3 Jan 2011 09:47:15 +0100 Subject: [PATCH] [FIX] account: removed translate=True on account type in order to fix the translations bzr revid: qdp-launchpad@tinyerp.com-20110103084715-hihr3cz55l1i43wt --- addons/account/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/account.py b/addons/account/account.py index f79e36c7681..3fed8c45f17 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -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.