How to show a different text for titel and message in uninstaller page then in installer page
by using MUI or MUI2?
my current script
;Include Modern UI
!include "MUI2.nsh"
;--------------------------------
;General
;Name and file
Name "Install Alice and change GTAIV version7 into version4"
OutFile "Install-Alice.exe"
;Default installation folder
InstallDir "C:\Program Files\Rockstar Games\Grand Theft Auto IV"
;Get installation folder from registry if available
InstallDirRegKey HKCU "Grand Theft Auto IV" ""
;Request application privileges for Windows Vista
RequestExecutionLevel user
;--------------------------------
;Interface Settings
!define MUI_ABORTWARNING
;--------------------------------
;Pages
!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Docs\Modern UI\License.txt"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
;Installer Sections
Section "Dummy Section" SecDummy
SetOutPath "$INSTDIR"
File testtesttest.txt
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall-Alice.exe"
SectionEnd
;--------------------------------
;Descriptions
;Language strings
LangString DESC_SecDummy ${LANG_ENGLISH} "A test section."
;Assign language strings to sections
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} $(DESC_SecDummy)
!insertmacro MUI_FUNCTION_DESCRIPTION_END
;--------------------------------
;Uninstaller Section
Section "Uninstall"
Delete "$INSTDIR\testtesttest.txt"
Delete "$INSTDIR\Uninstall-Alice.exe"
SectionEnd