Since odoo 16 the concept of translation has changed,
If I have a new model:
class TestModel(models.Model):
_name = "test.model"
name = fields.Char('Field Name', required=True, translate=True)
And I want to make some entries via the data file:
https://ibb.co/yPbFMc8
The question now is, how insert the translation terms directly through the data file if I have for example English and French?
I tried this format, but it's not rendered to jsonb
https://ibb.co/WxsPpks