TitleExtension
From Plex-XML
The titleExtension template extends the title element that is filled with an translated value from the format definition.
Properties
Example
Put the following template in your xslt to override the empty default template. In the example below the title is extended by ": fooValue".
<xsl:template name="titleExtension"> <xsl:variable name="vFoo"><xsl:value-of select="$vPath/returnvalue[@name='Foo']/@value" /></xsl:variable> <xsl:text>: </xsl:text><xsl:value-of select="$vFoo"/> </xsl:template>

