Archive: Deploy settings


Deploy settings
Hello,

I would like during the installion process deploy different files in function of the choice of the language. For example, if the user selects the french language for the installation, I would like to deploy (to create) some files specific to french language (different file than if he would chosen the english language). In fact, I would like to include all language files in my installer, but deploy only the language file that the user has choosen, not all the language files. Is it possible? How can I do that?

Thanks in advance for your help.



${If} $LANGUAGE == ${LANG_FRENCH}
File french_file.ext
${ElseIf} ...
...
${EndIf}


Stu