According to documentation and many forum posts, the fields with translate=True should generate Translated Terms available in settings and in table ir.translation.
So, I start from scratch.
1) I add a field to my model:
transme = fields.Char('Transme', translate=True)
2) I do an upgrade on my module. The field appears in the database.
3) I do an SQL update on that field to set test values. I set transme for all records to text value "dummy" just for test.
4) I go to Settings -> Translations -> Generate missing terms
5) I look in the translations list and find the latest added values. Also checking ir.translation in the database.
But I see only
"ir.model.fields,field_description";"model";"Transme"
record.
There is no translation generated for the field value "dummy".
What am I missing here? How do I generate translation terms for field values of my new field?
Using Odoo v13.