2002-08-02 10:01:35 +00:00
|
|
|
#ifndef _NSIS_LANG_H_
|
|
|
|
#define _NSIS_LANG_H_
|
|
|
|
|
2002-09-21 07:05:31 +00:00
|
|
|
|
2002-08-02 10:01:35 +00:00
|
|
|
// generic startup strings (these will never be overridable)
|
2002-09-21 07:05:31 +00:00
|
|
|
#ifdef NSIS_CONFIG_CRC_SUPPORT
|
2004-03-06 12:31:26 +00:00
|
|
|
#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" \
|
2003-12-24 16:00:18 +00:00
|
|
|
"(NOT RECOMMENDED)."
|
2002-09-21 07:05:31 +00:00
|
|
|
#else
|
2004-03-06 12:31:26 +00:00
|
|
|
#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" \
|
2003-12-24 16:00:18 +00:00
|
|
|
"You may want to contact the author of this installer to obtain a new copy."
|
2002-09-21 07:05:31 +00:00
|
|
|
#endif
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2003-12-24 16:00:18 +00:00
|
|
|
#define _LANG_ERRORWRITINGTEMP "Error writing temporary file. Make sure your temp folder is valid."
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2002-09-18 23:19:13 +00:00
|
|
|
#define _LANG_UNINSTINITERROR "Error launching installer"
|
2002-08-02 10:01:35 +00:00
|
|
|
|
|
|
|
#define _LANG_VERIFYINGINST "verifying installer: %d%%"
|
|
|
|
|
2002-08-21 19:05:14 +00:00
|
|
|
#define _LANG_UNPACKING "unpacking data: %d%%"
|
|
|
|
|
2002-09-18 23:19:13 +00:00
|
|
|
#define _LANG_CANTOPENSELF "Error launching installer" // same as uninstiniterror for size
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2003-12-24 16:00:18 +00:00
|
|
|
#define _LANG_GENERIC_ERROR "NSIS Error"
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2003-09-04 18:25:57 +00:00
|
|
|
#define LANG_STR_TAB(x) cur_langtable[-((int)x+1)]
|
|
|
|
|
|
|
|
#define LANG_BRANDING -1
|
|
|
|
#define LANG_CAPTION -2
|
|
|
|
#define LANG_NAME -3
|
|
|
|
#define LANG_SPACE_AVAIL -4
|
|
|
|
#define LANG_SPACE_REQ -5
|
|
|
|
#define LANG_CANTWRITE -6
|
|
|
|
#define LANG_COPYFAILED -7
|
|
|
|
#define LANG_COPYTO -8
|
|
|
|
#define LANG_CANNOTFINDSYMBOL -9
|
|
|
|
#define LANG_COULDNOTLOAD -10
|
|
|
|
#define LANG_CREATEDIR -11
|
|
|
|
#define LANG_CREATESHORTCUT -12
|
|
|
|
#define LANG_CREATEDUNINST -13
|
|
|
|
#define LANG_DELETEFILE -14
|
|
|
|
#define LANG_DELETEONREBOOT -15
|
|
|
|
#define LANG_ERRORCREATINGSHORTCUT -16
|
|
|
|
#define LANG_ERRORCREATING -17
|
|
|
|
#define LANG_ERRORDECOMPRESSING -18
|
|
|
|
#define LANG_DLLREGERROR -19
|
|
|
|
#define LANG_EXECSHELL -20
|
|
|
|
#define LANG_EXECUTE -21
|
|
|
|
#define LANG_EXTRACT -22
|
|
|
|
#define LANG_ERRORWRITING -23
|
|
|
|
#define LANG_INSTCORRUPTED -24
|
|
|
|
#define LANG_NOOLE -25
|
|
|
|
#define LANG_OUTPUTDIR -26
|
|
|
|
#define LANG_REMOVEDIR -27
|
|
|
|
#define LANG_RENAMEONREBOOT -28
|
|
|
|
#define LANG_RENAME -29
|
|
|
|
#define LANG_SKIPPED -30
|
|
|
|
#define LANG_COPYDETAILS -31
|
|
|
|
#define LANG_LOG_INSTALL_PROCESS -32
|
|
|
|
#define LANG_BYTE -33
|
|
|
|
#define LANG_KILO -34
|
|
|
|
#define LANG_MEGA -35
|
|
|
|
#define LANG_GIGA -36
|
2002-08-11 18:56:30 +00:00
|
|
|
|
|
|
|
#endif//_NSIS_LANG_H_
|