As the email template xml_id's are defined under `noupdate=1 we need to do those steps in order to get the body and translations updated on Odoo:
ce
module.Confirmation Email for CE Contact Request Lead Receipt
ce
module --> it will re-generate the new email_template record.False
the field noupdate
of the ir_model_data record related to the mail_template. Use this query to identify the ir_model_data that need to be updated: select id, name, res_id, noupdate from ir_model_data where model = 'mail.template' and module = 'ce' and name = 'email_templ_lead_request_contact_confirm_id';
Import Translation
for the 2 files es.po
and ca_ES.po
that are related to this MR.True
the field noupdate
of the ir_model_data above record.