Localizing.
Hi,
I like to localize my installer.
How to can I change the message "MUI_FINISHPAGE_TEXT_REBOOT" when the customer change his language?
example: english, french, italian,..
Many thanks,
best regards.
Lorenzo.
Archive: Localizing.
Localizing.
Hi,
I like to localize my installer.
How to can I change the message "MUI_FINISHPAGE_TEXT_REBOOT" when the customer change his language?
example: english, french, italian,..
Many thanks,
best regards.
Lorenzo.
Which part of the documentation do you not understand in this regard?
I make it:
LangString msgFinish ${LANG_ITALIAN} "italiano"
LangString msgFinish ${LANG_ENGLISH} "english"
LangString msgFinish ${LANG_SPANISH} "spanish"
!define MUI_FINISHPAGE_TEXT_REBOOT $(msgFinish)
but it doesn't work.
Have you any suggestions?
Thanks.
Make sure you put LangStrings under !insertmacro MUI_LANGUAGE macros.
-Stu
Thanks.
I mistook the position of the phrases.