Translation of purchase_order_webkit is missing term 'Quotation N°'
Bug #1067764 reported by
Niels Huylebroeck
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Purchase - Reports |
Confirmed
|
Undecided
|
Alexandre Fayolle - camptocamp |
Bug Description
The purchase_order.mako file contains the line:
<h1 style="clear:both; padding-top: 20px;">${quotation and _(u'Quotation N°') or _(u'Purchase Order N°') } ${purch.name}</h1>
Since the automated translation generator for openerp searches for _(' and ') to match translations these terms are not detected.
To post a comment you must log in.
since ° is non ascii, we need the unicode string prefix.
Arguably, we should stick to ascii in there and have unicode in the translation. I propose using _('Quotation Nbr') and _('Purchase Order Nbr') in the source code. Any objection?