From 2a96cb6d82d452cccef89d0aac4a28bdaab10b9b Mon Sep 17 00:00:00 2001 From: joostverburg Date: Wed, 2 Oct 2002 10:14:38 +0000 Subject: [PATCH] Default description text: dialog control ID should be 1043 instead of ${LANG_DUTCH} git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1266 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/Modern UI/MultiLanguage.nsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/Modern UI/MultiLanguage.nsi b/Examples/Modern UI/MultiLanguage.nsi index 0b4ac886..8aba9176 100644 --- a/Examples/Modern UI/MultiLanguage.nsi +++ b/Examples/Modern UI/MultiLanguage.nsi @@ -103,9 +103,9 @@ Function .onInitDialog !insertmacro MUI_INNERDIALOG_START 2 !insertmacro MUI_INNERDIALOG_TEXT ${LANG_ENGLISH} 1042 "Description" - !insertmacro MUI_INNERDIALOG_TEXT ${LANG_ENGLISH} ${LANG_DUTCH} "Hover your mouse over a component to see it's description." + !insertmacro MUI_INNERDIALOG_TEXT ${LANG_ENGLISH} 1043 "Hover your mouse over a component to see it's description." !insertmacro MUI_INNERDIALOG_TEXT ${LANG_DUTCH} 1042 "Beschrijving" - !insertmacro MUI_INNERDIALOG_TEXT ${LANG_DUTCH} ${LANG_DUTCH} "Beweeg uw muis over een onderdeel om een beschrijving te zien." + !insertmacro MUI_INNERDIALOG_TEXT ${LANG_DUTCH} 1043 "Beweeg uw muis over een onderdeel om een beschrijving te zien." !insertmacro MUI_INNERDIALOG_STOP 2 !insertmacro MUI_INNERDIALOG_START 3