aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-17 20:34:41 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-17 20:34:41 +0000
commit85cd53d581e8d7a32c5e16722201247a333963cf (patch)
tree2b39f572ab3f46fa3afe0c86c0d971f023f71cab
parent2e7e2cfe512222d614434e5fc2a36abdefac1dea (diff)
Be kind and say "Please note" instead of simply "Note" when something went wrong while uninstalling :-)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11399 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--packaging/nsis/ethereal.nsi12
1 files changed, 6 insertions, 6 deletions
diff --git a/packaging/nsis/ethereal.nsi b/packaging/nsis/ethereal.nsi
index e12168a243..ff34d067f7 100644
--- a/packaging/nsis/ethereal.nsi
+++ b/packaging/nsis/ethereal.nsi
@@ -1,7 +1,7 @@
;
; ethereal.nsi
;
-; $Id: ethereal.nsi,v 1.58 2004/06/29 07:14:39 guy Exp $
+; $Id$
!ifdef MAKENSIS_MODERN_UI
@@ -485,14 +485,14 @@ SetShellVarContext all
Delete "$INSTDIR\tethereal.exe"
IfErrors 0 NoTetherealErrorMsg
- MessageBox MB_OK "Note: Tethereal could not be removed! Probably in use!" IDOK 0 ;skipped if tethereal.exe removed
- Abort "Note: tethereal.exe could not be removed! Probably in use! Abort unistall!"
+ MessageBox MB_OK "Please note: tethereal.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if tethereal.exe removed
+ Abort "Please note: tethereal.exe could not be removed, it's probably in use! Abort uninstall process!"
NoTetherealErrorMsg:
Delete "$INSTDIR\ethereal.exe"
IfErrors 0 NoEtherealErrorMsg
- MessageBox MB_OK "Note: Ethereal could not be removed! Probably in use!" IDOK 0 ;skipped if ethereal.exe removed
- Abort "Note: ethereal.exe could not be removed! Probably in use! Abort uninstall!"
+ MessageBox MB_OK "Please note: ethereal.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if ethereal.exe removed
+ Abort "Please note: ethereal.exe could not be removed, it's probably in use! Abort uninstall process!"
NoEtherealErrorMsg:
DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Ethereal"
@@ -606,7 +606,7 @@ RMDir "$INSTDIR\snmp"
RMDir "$INSTDIR"
IfFileExists "$INSTDIR" 0 NoFinalErrorMsg
- MessageBox MB_OK "Note: $INSTDIR could not be removed!" IDOK 0 ; skipped if file doesn't exist
+ MessageBox MB_OK "Please note: The directory $INSTDIR could not be removed!" IDOK 0 ; skipped if file doesn't exist
NoFinalErrorMsg:
SectionEnd