JamesKiller
10th April 2007 17:27 UTC
How to get rid of this warning when compling
I am using this line:
LangString MUI_TEXT_LICENSE_SUBTITLE ${LANG_ENGLISH} "Please review the license terms before installing ${PRODUCT_NAME}."
and when compling the .nsi file,
I get :
LangString "MUI_TEXT_LICENSE_SUBTITLE" set multiple times for 1033, wasting space.
How can I get rid of this warning?
Thank you.
Red Wine
10th April 2007 18:27 UTC
OutFile "Test.exe"
!include "mui.nsh"
!insertmacro MUI_PAGE_WELCOME
!define MUI_PAGE_HEADER_TEXT "$(LIC_HEADER)"
!define MUI_PAGE_HEADER_SUBTEXT "$(LIC_SUBHEADER)"
!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Docs\Modern UI\License.txt"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
LangString LIC_HEADER ${LANG_ENGLISH} "My License Header Text"
LangString LIC_SUBHEADER ${LANG_ENGLISH} "My License Sub Header Text"
Section
SectionEnd
JamesKiller
10th April 2007 18:40 UTC
Thank you very much, Red Wine.