I am having a strange issue with odoo translation engine:
The translation works fine for all the fields, but not for the view: all the translated strings are field labels, but "string" attributes for view.xml tags remain untranslated.
view.xml:
<page name="public" string="Form 1">
<group>
<group>
....
<field name="address_home_id"
context="{'show_address': 1}"
options='{"always_reload": True, "highlight_first_line": True}'
string="Permanent Address"
/>
However, I do have those strings in both my.po file:
#. module: hr_mis
#: model:ir.ui.view,arch_db:hr_mis.view_employee_form
msgid "Form 1"
msgstr "ပုံစံ (၁)"
....
#. module: hr_mis
#: model:ir.ui.view,arch_db:hr_mis.view_employee_form
msgid "Permanent Address"
msgstr "အမြဲတမ်းနေရပ်လိပ်စာ"
Any idea what did I do wrong?

