I am making an installer in several languages
So I use
I want to write a key in the register in function of the choice of the language. How can I do that? I mean, how can I do;Languages
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Spanish"
Thanks in advance for your helpif(user selected french)
WriteRegStr HKLM "Software\MySoft" "Language" "FR"
else if(user selected spanish)
WriteRegStr HKLM "Software\MySoft" "Language" "ES"
...

