From a37f1e89fa4f89259d1fad5de2529cc2a0d03201 Mon Sep 17 00:00:00 2001 From: joostverburg Date: Wed, 24 Dec 2003 16:00:18 +0000 Subject: [PATCH] error message git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3306 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/lang.h | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Source/exehead/lang.h b/Source/exehead/lang.h index 32ecdc61..943d0e90 100644 --- a/Source/exehead/lang.h +++ b/Source/exehead/lang.h @@ -4,15 +4,18 @@ // generic startup strings (these will never be overridable) #ifdef NSIS_CONFIG_CRC_SUPPORT -#define _LANG_INVALIDCRC "Installer corrupted or incomplete.\r\n\r\n" \ - "This could be the result of a failed download or corruption from a virus." \ - "\r\n\r\nIf desperate, try the /NCRC command line switch (NOT recommended)" +#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\r\n" \ + "This could be the result of a damaged disk, a failed download or a virus.\r\n\r\n" \ + "You may want to contact the author of this installer to obtain a new copy.\r\n\r\n" \ + "It may be possible to skip this check using the /NCRC command line switch\r\n" \ + "(NOT RECOMMENDED)." #else -#define _LANG_INVALIDCRC "Installer corrupted.\r\n\r\n" \ - "This could be the result of an incomplete download" +#define _LANG_INVALIDCRC "The installer you are trying to use is corrupted or incomplete.\r\n" \ + "This could be the result of a damaged disk, a failed download or a virus.\r\n\r\n" \ + "You may want to contact the author of this installer to obtain a new copy." #endif -#define _LANG_ERRORWRITINGTEMP "Error writing temp file. Make sure your temp directory is valid." +#define _LANG_ERRORWRITINGTEMP "Error writing temporary file. Make sure your temp folder is valid." #define _LANG_UNINSTINITERROR "Error launching installer" @@ -22,7 +25,7 @@ #define _LANG_CANTOPENSELF "Error launching installer" // same as uninstiniterror for size -#define _LANG_GENERIC_ERROR "NSIS ERROR" +#define _LANG_GENERIC_ERROR "NSIS Error" #define LANG_STR_TAB(x) cur_langtable[-((int)x+1)]