From e5527663523bcaa27d00375a36304d8462c61bc6 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Mon, 8 Nov 2010 15:30:14 +0100 Subject: [PATCH] [IMP] orm: spelling: default language is en_US, so we should us International/US forms lp bug: https://launchpad.net/bugs/546138 fixed bzr revid: odo@openerp.com-20101108143014-p3xlsiz3kb79ckdt --- bin/osv/orm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/osv/orm.py b/bin/osv/orm.py index dbb15ca6194..2b7fe0ce989 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -1447,7 +1447,7 @@ class orm_template(object): model = res[0][1] res.insert(0, ("Can't find field '%s' in the following view parts composing the view of object model '%s':" % (field, model), None)) msg = "\n * ".join([r[0] for r in res]) - msg += "\n\nEither you wrongly customised this view, or some modules bringing those views are not compatible with your current data model" + msg += "\n\nEither you wrongly customized this view, or some modules bringing those views are not compatible with your current data model" netsvc.Logger().notifyChannel('orm', netsvc.LOG_ERROR, msg) raise except_orm('View error', msg) return arch, fields