Archive: Multilingual InstallOptions


Multilingual InstallOptions
i assume, that installoptions still don't work with variables. i have an installer that comes in various languages, but i'm not sure what would be the most clever way to use multilingual io-pages. any hints?


yes.
write the text-strings with

"MUI_INSTALLOPTIONS_WRITE "ioPage.ini" "Field 2" "State" $(yourlabeltext)"
.
it's recommended to do so in the enter-function
Page custom enterfunction leavefunction
...
Function enterfunction
#writing ...
FunctionEnd

see the docs for further information about installoptions, the wirte-macros in MUI and custom pages.

very nice, never heard of that before. thanks a lot!