From 32cb7c8e2b8cbccc64ef7bbcebf3927bc9cab51c Mon Sep 17 00:00:00 2001 From: fyodor Date: Wed, 5 Jul 2006 00:46:51 +0000 Subject: [PATCH] Change wording a bit --- mswin32/nsis/Nmap.nsi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mswin32/nsis/Nmap.nsi b/mswin32/nsis/Nmap.nsi index 8be7a2119..6c994888e 100644 --- a/mswin32/nsis/Nmap.nsi +++ b/mswin32/nsis/Nmap.nsi @@ -85,7 +85,7 @@ Section "WinPcap 3.1" SecWinPcap Delete "$INSTDIR\winpcap-nmap-3.1.B.exe" SectionEnd -Section "Networking Changes" SecPerfRegistryMods +Section "Network Performance Improvements (Registry Changes)" SecPerfRegistryMods File nmap_performance.reg Exec 'regedt32 /S "$INSTDIR\nmap_performance.reg"' SectionEnd @@ -95,15 +95,15 @@ SectionEnd ;Component strings LangString DESC_SecCore ${LANG_ENGLISH} "Installs Nmap executables and script files" - LangString DESC_SecRegisterPath ${LANG_ENGLISH} "Registers Nmap path to System path" - LangString DESC_SecWinPcap ${LANG_ENGLISH} "Installs WinPcap 3.1" - LangString DESC_SecPerfRegistryMods ${LANG_ENGLISH} "Modifies Windows networking parameters to improve performance of TCP connect scans." + LangString DESC_SecRegisterPath ${LANG_ENGLISH} "Registers Nmap path to System path so you can execute it from any directory" + LangString DESC_SecWinPcap ${LANG_ENGLISH} "Installs WinPcap 3.1 (required for most Nmap scans unless it is already installed)" + LangString DESC_SecPerfRegistryMods ${LANG_ENGLISH} "Modifies Windows registry values to improve TCP connect scan performance. Recommended." ;Assign language strings to sections !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${SecCore} $(DESC_SecCore) - !insertmacro MUI_DESCRIPTION_TEXT ${SecRegisterPath} $(DESC_SecRegisterPath) !insertmacro MUI_DESCRIPTION_TEXT ${SecWinPcap} $(DESC_SecWinPcap) + !insertmacro MUI_DESCRIPTION_TEXT ${SecRegisterPath} $(DESC_SecRegisterPath) !insertmacro MUI_DESCRIPTION_TEXT ${SecPerfRegistryMods} $(DESC_SecPerfRegistryMods) !insertmacro MUI_FUNCTION_DESCRIPTION_END ;--------------------------------