Archive: Modern UI language problem


Modern UI language problem
When using the Modern UI 1.63 the "Browse for folder" dialog is not using the language that is defined in the script. The same thing happens with the buttons in that dialog, and the buttons in the "cancel setup" dialog. Do I have to define some other strings in my install script?

I am creating an installer with the following lines:


!include "MUI.nsh"
CRCCheck On

!define MUI_PRODUCT "Timer"
!define MUI_VERSION "2.0"
!define MUI_FILE "Timer"
!define MUI_BRANDINGTEXT "${MUI_PRODUCT}"
!define MUI_ICON "timericon.ico"
!define MUI_UNICON "timericon.ico"

OutFile "${MUI_FILE}_install.exe"

;Folder selection page
InstallDir "$PROGRAMFILES\${MUI_PRODUCT}"

;Remember install folder
InstallDirRegKey HKLM "Software\${MUI_PRODUCT}" ""

;--------------------------------
;Modern UI Configuration
!define MUI_WELCOMEPAGE
; !define MUI_LICENSEPAGE
!define MUI_DIRECTORYPAGE
!define MUI_ABORTWARNING
!define MUI_UNINSTALLER
!define MUI_UNCONFIRMPAGE
!define MUI_FINISHPAGE
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_FINISHPAGE_RUN "$INSTDIR\${MUI_FILE}.exe"

;--------------------------------
;Language
!insertmacro MUI_LANGUAGE "Dutch"

;...installer sections removed...

Regards,
Paul

Those texts are not translatable because they are set by Windows.


Ah, ok. Thanks for the quick answer :)

Regards,
Paul