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
This commit is contained in:
kichik 2007-12-29 18:05:48 +00:00
parent 3a836f1f60
commit db25d86b35

View file

@ -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."