7 lines
195 B
Python
7 lines
195 B
Python
from odoo import api, SUPERUSER_ID
|
|
|
|
|
|
def load_translations(cr, registry):
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
env.ref("l10n_tw.l10n_tw_chart_template").process_coa_translations()
|