I have an uninstaller that shows a language pop-up and then shows another pop-up asking for user confirmation. How can I localize the message in the second pop-up according to the language chosen in the first pop-up? Here is the relevant piece of code:
Thank you in advance,Function un.onInit
!insertmacro MUI_UNGETLANGUAGE
MessageBox MB_YESNO "This will uninstall the application. Continue?" IDYES NoAbort
Abort
NoAbort:
FunctionEnd
Corneliu