language problem...
hi there...
i'm new to nsis...
i've got a problem with a reboot message which will appear after my installation.
the text is ok... if you choose english at startup the reboot message is in english if german -> german...
but the buttons for "yes" and "no" are only in german ?
is there a chance to set a variable for yes and no ?
my code:
Function .onRebootFailed
MessageBox MB_OK|MB_ICONSTOP "$(rebootfailed)" /SD IDOK
FunctionEnd
Section "Reboot"
MessageBox MB_YESNO|MB_ICONQUESTION "$(rebootmessage)" IDNO +2
Reboot
SectionEnd