Does anybody know how to rename 'More Addresses' in Account and Contact entities navigation pane?
The usual method would be to change the display options in the address/contact or account relationship, but this is read only in this case.
Does anybody know how to rename 'More Addresses' in Account and Contact entities navigation pane?
The usual method would be to change the display options in the address/contact or account relationship, but this is read only in this case.
Apparently those kind of labels are hard-coded. It looks as if the only workaround is to follow the (unsupported) path of modifying the HTML in the OnLoad method. Something like
document.all.navAddresses.innerHTML = ...
You will have to dig into the details of the HTML to achieve the desired effect.
Good luck!