Working with fields in Odoo

-How to replace the name of field ?

The field property_stock_asset module Asset, we want to change the name without change the field in database.

‘property_stock_asset’: fields.property(
type=’many2one’,
relation=’stock.location’,
string=”Asset Location”,
store=True,
help=”This location will be used as the destination location for installed parts during asset life.”),

<field name=”property_stock_asset” position=”replace”>
<field name=”property_stock_asset” string=”Location”/>
</field>