This question has been flagged
2 Replies
7477 Views

How can I make my form fields translatable in odoo 12.0

I have the fields just like that 

<field name="product_description" string="Product Description"/>​

Avatar
Discard
Best Answer

You should do that on Python level (where field is declared) using the field attribute translate, e.g.:

product_description = fields.Text(string='Description', translate=True)
Avatar
Discard
Best Answer

Thank you. That's work perfectly!

Avatar
Discard