Hi,
Before executing the I18NTransformer in the pipeline the xml contains the i18n tags each with a namespace declaration. <td class="dataCell" width="20%"> <i18n:text xmlns:i18n="http://apache.org/cocoon/i18n/2.1">administration_2_brief</i18n: text> </td> The namespace declarations are being added by the XSLT Transformer even though exclude-result-prefixes="i18n" is included in the stylesheet element. (May this is due to using Saxon?) After the I18NTransformer the i18n namespace declaration has been copied to the parent element. <td xmlns:i18n="http://apache.org/cocoon/i18n/2.1" class="dataCell" width="20%">Change the current configuration</td> Would anyone have any ideas on removing the namespace declarations from the transformations? Thanks! gary
