original report is this one and i want to override it with my new one.
<openerp>
<data>
<template id="report_invoice_qweb">
<t t-set="o" t-value="o.with_context({'lang':o.partner_id.lang})" />
<div class="page">
<div>
i try to use
<data>
<template id="report_invoice_inherit" inherit_id="account.report_invoice_qweb">
<xpath expr="div[@class='page']" position="replace">
but the problem that my new report not having translation in it. because it's missing
<t t-set="o" t-value="o.with_context({'lang':o.partner_id.lang})" />
how can i fix this problem.