Skip to content
⌘ NSIS Forum Archive

MUI_BUTTONTEXT_FINISH warning

2 posts

inDeep7#

MUI_BUTTONTEXT_FINISH warning

I recently upgraded to version 2.30 and every script I compile returns the warning "LangString "MUI_BUTTONTEXT_FINISH" is not set in language table of language English".

The installers seem to work fine, so I'm wondering if this will cause any unforeseen problems?

Here is a test script that generates the warning:

!include "MUI.nsh"

OutFile "..\Test-Installer.exe"
InstallDir "C:\DATA\"

!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

!insertmacro MUI_LANGUAGE "English"


Section "Data Files" SecDataFiles

SetOutPath "$INSTDIR"
File "C:\Testing\Data\*.*"

SectionEnd