<xsl:stylesheet version="2.0"1xmlns:xsl="http://www.w3.org/1999/XSL/Transform"2xmlns="http://schemas.microsoft.com/wix/2006/localization">3<xsl:output indent="yes"/>4<xsl:strip-space elements="*"/>56<xsl:template match="node()|@*">7<xsl:copy>8<xsl:apply-templates select="node()|@*"/>9</xsl:copy>10</xsl:template>1112<!--13** No longer need this change, but I'm leaving the snippets here as an example14** in case we need to add another override in the future.1516<xsl:template match="*[local-name()='String' and @Id='InstallButtonNote']">17<String Id="InstallButtonNote">[TargetDir]1819Includes IDLE, pip and documentation20Creates shortcuts but no file associations</String>21</xsl:template>2223<xsl:template match="*[local-name()='String' and @Id='Include_launcherHelp']">24<String Id="Include_launcherHelp">(The 'py' launcher is currently unavailable on ARM64.)</String>25</xsl:template>26-->27</xsl:stylesheet>2829