Skip to content
⌘ NSIS Forum Archive

Part of the string is hidden

8 posts

libra7th#

Part of the string is hidden

Hi

It wasn't long after I started using NSIS.
So while setting up multiple languages ​​I had a problem that I couldn't solve.


As shown in the picture above, it is a problem that some of the Korean characters are hidden on the Uninstall confirm page.

I added line breaks using MUI_UNCONFIRMPAGE_TEXT_TOP, but my boss calls for a more fundamental solution.
How can I fix it?

Thanks for your help
Philsu
Anders#
That UI looks custom but hard to tell in that blurry image.

Text should not be cut off but wrapping to a new line has to be acceptable.
Anders#
Works fine for me with and without setting MUI_UNCONFIRMPAGE_TEXT_TOP.




!include MUI2.nsh
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!define MUI_UNCONFIRMPAGE_TEXT_TOP "시스템에서 $(^NameDA)(을)를 제거 할 것입니다. Blah blah more text $_CLICK"
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_LANGUAGE Korean 
Name "long name here to wrap lines" 
libra7th#
Originally Posted by Anders View Post
That UI looks custom but hard to tell in that blurry image.

Text should not be cut off but wrapping to a new line has to be acceptable.
Sorry for the blur.
You mean wrapping to a new line are enough solutions?
libra7th#
Originally Posted by Anders View Post
Works fine for me with and without setting MUI_UNCONFIRMPAGE_TEXT_TOP.




!include MUI2.nsh
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!define MUI_UNCONFIRMPAGE_TEXT_TOP "시스템에서 $(^NameDA)(을)를 제거 할 것입니다. Blah blah more text $_CLICK"
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_LANGUAGE Korean 
Name "long name here to wrap lines" 
Yes, MUI_UNCONFIRMPAGE_TEXT_TOP works very well.
But I need to fundamental solution.
libra7th#
Wait. If it's okay without MUI_UNCONFIRMPAGE_TEXT_TOP, it wouldn't be a problem with NSIS.
Is it a problem to use the Ultra Modern UI?