Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions Installer/releaseFiles.xslt
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi">
<xsl:output method="xml" indent="yes"/>

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wix="http://schemas.microsoft.com/wix/2006/wi" version="1.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="@*|*">
<xsl:copy>
<xsl:apply-templates select="@*|*" />
</xsl:copy>
</xsl:template>

<!-- Persistent file Id for main executable -->
<xsl:template match="wix:File[@Source = 'SourceDir\PasteIntoFile.exe']">
<xsl:copy>
<xsl:attribute name="Id">
<xsl:value-of select='"mainExecutable"'/>
<xsl:value-of select="&quot;mainExecutable&quot;" />
</xsl:attribute>
<xsl:apply-templates select="@*[not(name()='Id')]" />
<xsl:apply-templates select="*" />
Expand Down
5 changes: 4 additions & 1 deletion PasteIntoFile/Properties/Resources.fr.resx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<value>Le fichier {0} existe déjà. Voulez-vous l'écraser?</value>
</data>
<data name="str_autosave_checkbox" xml:space="preserve">
<value>Enregistre automatique</value>
<value>Enregistrement automatique (sans dlg)</value>
<comment>Checkbox to toggle autosave mode, for which no pop-up dialog is displayed, but the file is directly saved without prompt.
</comment>
</data>
Expand Down Expand Up @@ -155,6 +155,9 @@
<data name="str_open" xml:space="preserve">
<value>Ouvrir</value>
</data>
<data name="str_preview_svg" xml:space="preserve">
<value>Prévisualisation SVG</value>
</data>
<data name="str_autosave_tooltip" xml:space="preserve">
<value>Enregistre les données du presse-papiers au format par défaut sans demander. Un appui sur la touche MAJ inverse temporairement cette option.</value>
</data>
Expand Down
Loading