Archive: Problem with multiple texts and '


Problem with multiple texts and '
Hi,

I've got a problem with multiple texts and ' character. I'm using the latest CVS version (updated with NSIS Update tool a few minutes ago). Here is my code (in French):

!define MUI_DIRECTORYPAGE_TEXT '"Le programme d'installation va maintenant installer ${PRODUCT} dans le dossier suivant.$\r$\n$\r$\n\
Veuillez vérifier que le dossier suivant indique l'emplacement d'eMule. Si vous l'avez installé dans un autre dossier, cliquez sur Parcourir et choisissez le bon emplacement." \
"Emplacement d'eMule"'

And when I compile the installer, I got this error:
Error: unterminated string parsing line at E:\XPerience-FR\emule_aide\emule_aide.nsi:45
(the line 45 is the line where there is "Emplacement d'eMule"')

I tried to put $\\' instead of ', but it doesn't change anything :(

Thanx for your help ;)

You are using ' in your text. You can put ` around the string instead of ' or espace it using $\'


The ` around the strings worked well. But if I use ' around the strings and use $\' instead of ' into those strings, it doesn't work. So I will use `. Thank you very much ;)