Changing the text under the icons

Hi, I thought this one would be easy. But, I've found it's not as easy as I'd like!

We'd like to change the text under the icons. Specifically:

Email --> Webmail
Logout --> Sign out

Where do I change these? For the logout button, I change :

LOGOUT=Sign Off

in nested-tables.properties. But this did not do the trick.

If you know how to change this text for these icons, please let me know. Thanks.

0
No votes yet

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

nested-tables hack

I've found I can just hard code the change into nested-tables.xsl, with this. But, I am looking for the "right" way to do it.

<xsl:template name="logoutIcon"><br /> <xsl:variable name="iHref"><xsl:value-of select="$protocolHostPrefix"/>up/Logout?uP_tparam=frm&amp;frm=</xsl:variable><br /> <xsl:variable name="iPath"><xsl:value-of select="$mediaPath"/>/<xsl:value-of select="$skin"/>/controls/logout_dft.gif</xsl:variable><br /> <xsl:variable name="iName">Sign Out</xsl:variable><br /> <xsl:variable name="iLogoutAlt"><xsl:value-of select="$LOGOUT_ALT"/></xsl:variable><br /> <xsl:call-template name="custLogoutIcon"><br /> <xsl:with-param name="iUrl" select="$iHref"/><br /> <xsl:with-param name="iSrc" select="$iPath"/><br /> <xsl:with-param name="iTitle" select="$iName"/><br /> <xsl:with-param name="iAlt" select="$iLogoutAlt"/><br /> </xsl:call-template><br /> </xsl:template><br />