Suppose you have an XMl tag like this :-
<name>Dotnetfunda</name>
<xsl:template match="name">
<xsl:apply-template />
</xsl:template>
"name" is the xml tag-name. In the second sample, we are writing the translation rules for each XML tag we want to translate.
Thanks and Regards
Akiii