[FIX] typo

bzr revid: christophe@cobalt-20081217094222-rmufmadgzh9egpcl
This commit is contained in:
Christophe Simonis 2008-12-17 10:42:22 +01:00
parent a3df22e53c
commit 813cbfd451
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ class module(osv.osv):
for lang in filter_lang:
f = os.path.join(tools.config['addons_path'], mod.name, 'i18n', lang + '.po')
if os.path.exists(f):
logger.notifyChannel("init", netsvc.LOG_INFO, 'addon %s: loading translation file for language %s' % (mod.name, lang))
logger.notifyChannel("init", netsvc.LOG_INFO, 'module %s: loading translation file for language %s' % (mod.name, lang))
tools.trans_load(cr.dbname, f, lang, verbose=False)
module()