Skip to content
⌘ NSIS Forum Archive

MUI_BRANDINGTEXT does not work on Turkish

3 posts

fatihboy#

MUI_BRANDINGTEXT does not work on Turkish

MUI_BRANDINGTEXT is works fine on english but in multi-langual installation it does not 🙁
Joel#
maybe you forgot to add something like this:

BrandingText /lang=${LANG_SPANISH} "Texto en español"
BrandingText /lang=${LANG_ENGLISH} "Text in english"
Where ${LANG_SPANISH} and ${LANG_ENGLISH} are the language
number in the installer...
Need /lang parameter..
Joost Verburg#
No, he talking about the Modern UI.

Example:
!define MUI_BRANDINGTEXT "Enlish text"
!insertmacro MUI_LANGUAGE "English"
!define MUI_BRANDINGTEXT "Turkisch text"
!insertmacro MUI_LANGUAGE "Turkish"