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