home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / CMCD0304.ISO / Software / Freeware / Programare / nullsoft / nsis20.exe / Source / exehead / lang.h < prev    next >
C/C++ Source or Header  |  2003-12-24  |  3KB  |  70 lines

  1. #ifndef _NSIS_LANG_H_
  2. #define _NSIS_LANG_H_
  3.  
  4.  
  5. // generic startup strings (these will never be overridable)
  6. #ifdef NSIS_CONFIG_CRC_SUPPORT
  7. #define _LANG_INVALIDCRC    "The installer you are trying to use is corrupted or incomplete.\r\n"  \
  8.                 "This could be the result of a damaged disk, a failed download or a virus.\r\n\r\n"  \
  9.                 "You may want to contact the author of this installer to obtain a new copy.\r\n\r\n"  \
  10.                 "It may be possible to skip this check using the /NCRC command line switch\r\n" \
  11.                 "(NOT RECOMMENDED)."
  12. #else
  13. #define _LANG_INVALIDCRC    "The installer you are trying to use is corrupted or incomplete.\r\n"  \
  14.                 "This could be the result of a damaged disk, a failed download or a virus.\r\n\r\n"  \
  15.                 "You may want to contact the author of this installer to obtain a new copy."
  16. #endif
  17.  
  18. #define _LANG_ERRORWRITINGTEMP "Error writing temporary file. Make sure your temp folder is valid."
  19.  
  20. #define _LANG_UNINSTINITERROR "Error launching installer"
  21.  
  22. #define _LANG_VERIFYINGINST "verifying installer: %d%%"
  23.  
  24. #define _LANG_UNPACKING "unpacking data: %d%%"
  25.  
  26. #define _LANG_CANTOPENSELF "Error launching installer" // same as uninstiniterror for size
  27.  
  28. #define _LANG_GENERIC_ERROR "NSIS Error"
  29.  
  30. #define LANG_STR_TAB(x)             cur_langtable[-((int)x+1)]
  31.  
  32. #define LANG_BRANDING               -1
  33. #define LANG_CAPTION                -2
  34. #define LANG_NAME                   -3
  35. #define LANG_SPACE_AVAIL            -4
  36. #define LANG_SPACE_REQ              -5
  37. #define LANG_CANTWRITE              -6
  38. #define LANG_COPYFAILED             -7
  39. #define LANG_COPYTO                 -8
  40. #define LANG_CANNOTFINDSYMBOL       -9
  41. #define LANG_COULDNOTLOAD           -10
  42. #define LANG_CREATEDIR              -11
  43. #define LANG_CREATESHORTCUT         -12
  44. #define LANG_CREATEDUNINST          -13
  45. #define LANG_DELETEFILE             -14
  46. #define LANG_DELETEONREBOOT         -15
  47. #define LANG_ERRORCREATINGSHORTCUT  -16
  48. #define LANG_ERRORCREATING          -17
  49. #define LANG_ERRORDECOMPRESSING     -18
  50. #define LANG_DLLREGERROR            -19
  51. #define LANG_EXECSHELL              -20
  52. #define LANG_EXECUTE                -21
  53. #define LANG_EXTRACT                -22
  54. #define LANG_ERRORWRITING           -23
  55. #define LANG_INSTCORRUPTED          -24
  56. #define LANG_NOOLE                  -25
  57. #define LANG_OUTPUTDIR              -26
  58. #define LANG_REMOVEDIR              -27
  59. #define LANG_RENAMEONREBOOT         -28
  60. #define LANG_RENAME                 -29
  61. #define LANG_SKIPPED                -30
  62. #define LANG_COPYDETAILS            -31
  63. #define LANG_LOG_INSTALL_PROCESS    -32
  64. #define LANG_BYTE                   -33
  65. #define LANG_KILO                   -34
  66. #define LANG_MEGA                   -35
  67. #define LANG_GIGA                   -36
  68.  
  69. #endif//_NSIS_LANG_H_
  70.