Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv15765
Modified Files:
installer.nsi
Log Message:
Add multi-language capability to the installer and uninstaller.
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.79
retrieving revision 1.80
diff -C2 -d -r1.79 -r1.80
*** installer.nsi 1 Jul 2003 03:19:41 -0000 1.79
--- installer.nsi 2 Jul 2003 16:04:22 -0000 1.80
***************
*** 12,27 ****
; Modified to work with NSIS 2.0b4 (CVS) or later
! ; WARNING:
! ; This script requires "NSIS Modern User Interface" version 1.65 (17 June 2003 or later)
! ; because it uses the new (simplified) page configuration system.
!
#--------------------------------------------------------------------------
!define MUI_PRODUCT "POPFile"
! !define MUI_VERSION "0.20.0 (CVS)"
[...2371 lines suppressed...]
IfFileExists $INSTDIR 0 Removed
! MessageBox MB_YESNO|MB_ICONQUESTION "$(un.PFI_LANG_MBREMDIR_1)" IDNO Removed
! DetailPrint "$(un.PFI_LANG_LOG_5)"
Delete $INSTDIR\*.* ; this would be skipped if the user hits no
RMDir /r $INSTDIR
IfFileExists $INSTDIR 0 Removed
! DetailPrint "$(un.PFI_LANG_LOG_6)"
! StrCpy ${L_MSG} "$(un.PFI_LANG_MBREMERR_1)"
! StrCpy ${L_TEMP} "$(un.PFI_LANG_MBREMERR_2)"
! StrCpy ${L_MSG} "${L_MSG}: $INSTDIR ${L_TEMP}"
! MessageBox MB_OK|MB_ICONEXCLAMATION ${L_MSG}
Removed:
!
SetDetailsPrint both
+ !undef L_CFG
!undef L_LNE
+ !undef L_MSG
!undef L_REG_KEY
!undef L_REG_SUBKEY
|