fun2sh
23rd February 2009 14:52 UTC
Mui_page_directory
Hi,
Im a newbie, can u please tell me how i can edit data of the MUI_PAGE_DIRECTORY.
On this page we get eg. Space required : 1.0KB and Space available : 23.4GB .
I want to edit this string, i just need to add a space between the size and unit. Space required : 1.0 KB
Can someone help me.
Animaether
23rd February 2009 15:03 UTC
NSIS help file
4.8.1.38 SpaceTexts [req text [avail text]]
If parameters are specified, overrides the space required and space available text ("Space required: " and "Space available: " by default). If 'none' is specified as the required text no space texts will be shown.
fun2sh
23rd February 2009 15:16 UTC
I want to display the text as
Space required : 1.0 KB
Space available : 23.4 GB and not as
Space required : 1.0KB
Space available : 23.4GB which is the default.
Is this possible
can u help me with it.
kichik
14th March 2009 22:32 UTC
As Animaether said, use the SpaceText command to set the prefix for those labels. Simply specify the string you want with the extra space.
demiller9
15th March 2009 04:26 UTC
fun2sh is looking for an extra space between the digits and the units. The SpaceTexts command will put text in front of the digits, but doesn't provide a way to put a space after the digits (or does it)?
Don
kichik
15th March 2009 08:22 UTC
Then modify the following LangStrings and prefix them with a space.
# ^Byte
B
# ^Kilo
K
# ^Mega
M
# ^Giga
G
e.g.
LangString ^Mega ${LANG_ENGLISH} " M"