; Language Selection Dialog Settings
!define MUI_LANGDLL_REGISTRY_ROOT "${PRODUCT_UNINST_ROOT_KEY}"
!define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
!define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language"
and in the .onInit function i have; Language files
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "SimpChinese"
!insertmacro MUI_LANGUAGE "Spanish"
the copile operation terminates with no error or warning;check for multi instance
System::Call 'kernel32::CreateMutexA(i 0, i 0, t "myMutex") i .r1 ?e'
Pop $R0
StrCmp $R0 0 +3
MessageBox MB_OK|MB_ICONEXCLAMATION "The installer is already running."
Abort
!insertmacro MUI_LANGDLL_DISPLAY
InitPluginsDir
;GetTempFileName $INI $PLUGINSDIR
;MessageBox MB_ICONEXCLAMATION|MB_OK $INI
File /oname=$PLUGINSDIR\select_skin.ini "select_skin.ini"
File /oname=$PLUGINSDIR\welcome_screen.ini "welcome_screen.ini"
File /oname=$PLUGINSDIR\nopreview.bmp "nopreview.bmp"
and still the language display doesn't want to appear
am i missing something?