<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>

  <xsl:template match="TextItem[contains(Description/text(), 'NibBinding')][not(contains(Position/text(), 'DisplayPattern'))]">
  </xsl:template>

  <xsl:template match="node()">
		<xsl:copy>
			<!-- Copy original attributes -->
			<xsl:copy-of select="@*"/>
			<!-- Process content of the instruction -->
			<xsl:apply-templates/>
		</xsl:copy>
  </xsl:template>

  <xsl:template match="tran">
		<xsl:copy><xsl:copy-of select="@*"/>translation required</xsl:copy>
  </xsl:template>

</xsl:stylesheet>

