From db25d86b35ef48a10e8af29f435dc285cb53995e Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 29 Dec 2007 18:05:48 +0000 Subject: [PATCH] RFE #1795426 - User friendly message for corrupt or incomplete installer git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5459 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/lang.h | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/Source/exehead/lang.h b/Source/exehead/lang.h index a56bdeb8..3d0adfba 100644 --- a/Source/exehead/lang.h +++ b/Source/exehead/lang.h @@ -19,17 +19,11 @@ // generic startup strings (these will never be overridable) -#ifdef NSIS_CONFIG_CRC_SUPPORT -#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\n" \ - "This could be the result of a damaged disk, a failed download or a virus.\n\n" \ - "You may want to contact the author of this installer to obtain a new copy.\n\n" \ - "It may be possible to skip this check using the /NCRC command line switch\n" \ - "(NOT RECOMMENDED)." -#else -#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\n" \ - "This could be the result of a damaged disk, a failed download or a virus.\n\n" \ - "You may want to contact the author of this installer to obtain a new copy." -#endif +#define _LANG_INVALIDCRC "Installer integrity check has failed. Common causes include\n" \ + "incomplete download and damaged media. Contact the\n" \ + "installer's author to obtain a new copy.\n\n" \ + "More information at:\n" \ + "http://nsis.sf.net/NSIS_Error" #define _LANG_ERRORWRITINGTEMP "Error writing temporary file. Make sure your temp folder is valid."