Can anybody who knows NSIS installer scripts help me, my problem is that my installer's properties ends up with Language: Language Neutral and i want it to be Language: English (US) or similar to that
I would think if language is neutral and I live in Germany running windows,that when I instal your program it will instal it in german if thats my UI languageimsoadude said:Yea but my installer is just english so even if its on a another language computer it will still be english
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "license.rtf"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "French"
Section "Extract makensis"
SetOutPath $INSTDIR
File ..\makensis.exe
SectionEnd