NSIS log
does anyone know how to change the text of the nsis log-window?
there came text "dekomprimiere: filexy"
and "kopieren fehlgeschlagen: file xy" or so...
know i want to change this "dekomprimier" and "kopieren fehlgeschlagen"
Archive: NSIS log
NSIS log
does anyone know how to change the text of the nsis log-window?
there came text "dekomprimiere: filexy"
and "kopieren fehlgeschlagen: file xy" or so...
know i want to change this "dekomprimier" and "kopieren fehlgeschlagen"
why that
>>know i want to change this "dekomprimier" and "kopieren fehlgeschlagen"
Why do you want to change this?
I cant see any Sense of changing these descriptions :weird:
if there is a error, we want another text for this...
our product is used in schools!
and teachers would react a little appalled
You can create your own NLF that will contain a different message. Look in Contrib\Language Files for examples. You can also simply set the LangString of that message. Open up English.nlf or German.nlf, look for the message and copy the comment above it. The comment should look like:
# ^CopyFailed
To set the right LangString use:
LangString ^CopyFailed ${LANG_putLanguageNameHere} "new text"
thx
Hmm I had hoped that my question would also be answered here: Is there any way of adding text to the Log window? (I do hope it doesn't need recompilation of NSIS because it uses SetText if this is possible :) )
Use DetailPrint.
Thank you very much :)
new lines?
ok - now I unerstand what you meant Dj Nyx
well now I used the DetailPrint Command too, but I don't know how to add empty lines? I'm sure that DetailPrint"" isn't the best way
so long -L-B-
DetailPrint "" is the best way.