I'd like to rename the string of a page on OpenERP. To be specific, the 'Description' page on the Expenses module.
I'm not able to inherit this through the xpath code as the page itself has no name and you cannot change the label/string through the attrs fields. Below is the code I attempted to do this however it failed:
<xpath expr="/form/sheet/notebook/page[@string='Description']" position = "attributes">
<attriute name = "string" = "Expenses"/>
</xpath>
There has to be a way to do this but I can't seem to figure out how.