1# -*- coding: utf-8 -*-
2# Part of Odoo. See LICENSE file for full copyright and licensing details.
3
4from odoo import api, SUPERUSER_ID
5
6def load_translations(cr, registry):
7    env = api.Environment(cr, SUPERUSER_ID, {})
8    env.ref('l10n_id.l10n_id_chart').process_coa_translations()
9