Menus translated for full name

bzr revid: fp@tinyerp.com-b953f0f91b944d89360105259cebfd0567ac4bb3
This commit is contained in:
Fabien Pinckaers 2008-02-26 16:48:57 +00:00
parent dc10e53520
commit 837a1b922e
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class ir_ui_menu(osv.osv):
def _get_full_name(self, cr, uid, ids, name, args, context):
res = {}
for m in self.browse(cr, uid, ids):
for m in self.browse(cr, uid, ids, context=context):
res[m.id] = self._get_one_full_name(m)
return res