mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 20:50:34 +01:00
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:
@@ -13,9 +13,7 @@
|
|||||||
!define PROC 32 ;
|
!define PROC 32 ;
|
||||||
!endif
|
!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
|
; MUI Settings
|
||||||
;--------------------------------
|
;--------------------------------
|
||||||
;General
|
;General
|
||||||
@@ -284,8 +282,9 @@ Function .onInit
|
|||||||
|
|
||||||
${If} ${RunningX64}
|
${If} ${RunningX64}
|
||||||
${Else}
|
${Else}
|
||||||
MessageBox MB_OK|MB_ICONSTOP $(wrongArch)
|
MessageBox MB_OK|MB_ICONSTOP \
|
||||||
Abort $(wrongArch)
|
"This version is only for Windows 64 bits computers."
|
||||||
|
Abort
|
||||||
${EndIf}
|
${EndIf}
|
||||||
!insertmacro MUI_LANGDLL_DISPLAY
|
!insertmacro MUI_LANGDLL_DISPLAY
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user