[FIX] translation: remove calls to trans_update_res_ids

Calling this method is no longer required since the
merge of the new code for loading translations using
a temporary table. The method itself has been removed
at revision 3919, so all calls to it should have been
cleaned up as well.
Rev.3919 = rco@openerp.com-20111223104824-fup1cjbjni1fsty1

bzr revid: odo@openerp.com-20120109140958-10i1ti16tw327580
This commit is contained in:
Olivier Dony 2012-01-09 15:09:58 +01:00
parent aabacffb77
commit 356e4ed9bd
4 changed files with 1 additions and 6 deletions

View File

@ -140,7 +140,6 @@ def import_translation():
cr = openerp.pooler.get_db(dbname).cursor() cr = openerp.pooler.get_db(dbname).cursor()
openerp.tools.trans_load( cr, config["translate_in"], config["language"], openerp.tools.trans_load( cr, config["translate_in"], config["language"],
context=context) context=context)
openerp.tools.trans_update_res_ids(cr)
cr.commit() cr.commit()
cr.close() cr.close()

View File

@ -63,7 +63,6 @@ class base_language_import(osv.osv_memory):
fileobj.seek(0) fileobj.seek(0)
tools.trans_load_data(cr, fileobj, fileformat, import_data.code, lang_name=import_data.name, context=context) tools.trans_load_data(cr, fileobj, fileformat, import_data.code, lang_name=import_data.name, context=context)
tools.trans_update_res_ids(cr)
fileobj.close() fileobj.close()
return {} return {}

View File

@ -47,7 +47,6 @@ class base_update_translations(osv.osv_memory):
buf=cStringIO.StringIO() buf=cStringIO.StringIO()
tools.trans_export(this.lang, ['all'], buf, 'csv', cr) tools.trans_export(this.lang, ['all'], buf, 'csv', cr)
tools.trans_load_data(cr, buf, 'csv', this.lang, lang_name=lang_name) tools.trans_load_data(cr, buf, 'csv', this.lang, lang_name=lang_name)
tools.trans_update_res_ids(cr)
buf.close() buf.close()
return {'type': 'ir.actions.act_window_close'} return {'type': 'ir.actions.act_window_close'}

View File

@ -852,9 +852,7 @@ def trans_load(cr, filename, lang, verbose=True, context=None):
return None return None
def trans_load_data(cr, fileobj, fileformat, lang, lang_name=None, verbose=True, context=None): def trans_load_data(cr, fileobj, fileformat, lang, lang_name=None, verbose=True, context=None):
"""Populates the ir_translation table. Fixing the res_ids so that they point """Populates the ir_translation table."""
correctly to ir_model_data is done in a separate step, using the
'trans_update_res_ids' function below."""
logger = logging.getLogger('i18n') logger = logging.getLogger('i18n')
if verbose: if verbose:
logger.info('loading translation file for language %s', lang) logger.info('loading translation file for language %s', lang)