In previous versions we had the ir.translation model to manage the translations.
Now in version 16.0, how can I update all my product's name using python, to have all translations (en_US, pt_BR, ...) being the same?
for example, the current situation:
{"en_US": "Table (copy)", "pt_BR": "Chair"}
and the desired situation:
{"en_US": "Chair", "pt_BR": "Chair"}
thanks