Skip to content
⌘ NSIS Forum Archive

welcome page title problem

3 posts

Abaco#

welcome page title problem

Hi all,

i has a problem with standard welcome page title.
If i set up a long string as product name, the ending part of the title will be covered from the welcome text when user will choose the italian language.
Is there some way to fix?

For example:

!define PRODUCT_NAME "This is a very long product name"
!define PRODUCT_VERSION "3.0"
!define PRODUCT_PUBLISHER "Nothing s.r.l."
!include "MUI.nsh"

!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "Italian"

Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "Setup.exe"
InstallDir "$PROGRAMFILES\temp"
ShowInstDetails show
ShowUnInstDetails show

Section License
SetOutPath "$INSTDIR"
File "license.txt"
SectionEnd

Function .onInit
!insertmacro MUI_LANGDLL_DISPLAY
FunctionEnd

Remember to select italian language.
Thanks all
Al
Red Wine#
Take a look here,