Nsis Installers : Fix warning message

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4121 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2015-08-15 15:36:03 +00:00
parent 31f2e227f9
commit bbbdbc8092

View File

@@ -13,8 +13,6 @@
!define PROC 32 ;
!endif
LangString wrongArch ${LANG_ENGLISH} "This distribution is for ${PROC} bits computers only."
LangString wrongArch ${LANG_FRENCH} "Ce programme est pour Windows ${PROC} bits seulement."
; MUI Settings
;--------------------------------
@@ -284,8 +282,9 @@ Function .onInit
${If} ${RunningX64}
${Else}
MessageBox MB_OK|MB_ICONSTOP $(wrongArch)
Abort $(wrongArch)
MessageBox MB_OK|MB_ICONSTOP \
"This version is only for Windows 64 bits computers."
Abort
${EndIf}
!insertmacro MUI_LANGDLL_DISPLAY