New Language Files problem
Hello,
I noticed a little problem in all the new .nsh Language Files:
We can read:
!ifdef MUI_WELCOMEPAGE | MUI_UNWELCOMEPAGE
${LangFileString} MUI_BUTTONTEXT_FINISH "&Finish"
!endif
But if you don't insert the MUI_[UN]WELCOMEPAGE in yours scripts, the next button in the finishpage will be empty.
It would be more logical to have:
!ifdef MUI_FINISHPAGE | MUI_UNFINISHPAGE
${LangFileString} MUI_BUTTONTEXT_FINISH "&Finish"
!endif