home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d812 / ppmc.lha / PPMC / Source / PPMC1.2b_source.lha / locale.h < prev    next >
C/C++ Source or Header  |  1993-01-27  |  8KB  |  316 lines

  1. #ifndef PPMC_LOCALE_H
  2. #define PPMC_LOCALE_H
  3.  
  4. /*
  5.                             ----------------------
  6.                                     locale.h
  7.                              © 1992,1993 REELSOFT
  8.                             ----------------------
  9. */
  10.  
  11. #ifndef EXEC_TYPES_H
  12. #    include <exec/types.h>
  13. #endif
  14.  
  15.  
  16. #define MSG_LOCK_SCREEN 0
  17. #define MSG_LOCK_SCREEN_STR "Unable to Lock\nWorkbench Screen !"
  18.  
  19. #define MSG_OPEN_WINDOW 1
  20. #define MSG_OPEN_WINDOW_STR "Unable to open\nthe PPMC Window !"
  21.  
  22. #define MSG_OS_VER 2
  23. #define MSG_OS_VER_STR "You need KickStart V37+ !"
  24.  
  25. #define MSG_PPACKER_VER 3
  26. #define MSG_PPACKER_VER_STR "You need powerpacker.library V35+ !"
  27.  
  28. #define MSG_STATUS_BEGIN 4
  29. #define MSG_STATUS_BEGIN_STR " Load or Drop a file to Pack/UnPack..."
  30.  
  31. #define MSG_STATUS_ANOTHER 5
  32. #define MSG_STATUS_ANOTHER_STR " Load or Drop another file to Pack/UnPack..."
  33.  
  34. #define MSG_STATUS_LOADING 6
  35. #define MSG_STATUS_LOADING_STR " Loading the file..."
  36.  
  37. #define MSG_CLI_LOADING_FILE 7
  38. #define MSG_CLI_LOADING_FILE_STR "loading file"
  39.  
  40. #define MSG_STATUS_PACKING 8
  41. #define MSG_STATUS_PACKING_STR " Crunching the file..."
  42.  
  43. #define MSG_STATUS_UNPACKING 9
  44. #define MSG_STATUS_UNPACKING_STR " Decrunching the file..."
  45.  
  46. #define MSG_STATUS_PACKED 10
  47. #define MSG_STATUS_PACKED_STR " File has been packed."
  48.  
  49. #define MSG_STATUS_UNPACKED 11
  50. #define MSG_STATUS_UNPACKED_STR " File has been unpacked."
  51.  
  52. #define MSG_STATUS_START_PACK 12
  53. #define MSG_STATUS_START_PACK_STR " Hit the PACK button to crunch the file..."
  54.  
  55. #define MSG_STATUS_START_UNPACK 13
  56. #define MSG_STATUS_START_UNPACK_STR " Hit the UNPACK button to decrunch the file..."
  57.  
  58. #define MSG_STATUS_SAVED 14
  59. #define MSG_STATUS_SAVED_STR " File has been saved."
  60.  
  61. #define MSG_TITLE_ERROR 15
  62. #define MSG_TITLE_ERROR_STR " PPMC Error"
  63.  
  64. #define MSG_TITLE_WARNING 16
  65. #define MSG_TITLE_WARNING_STR " PPMC Warning"
  66.  
  67. #define MSG_TITLE_LOAD 17
  68. #define MSG_TITLE_LOAD_STR "Select a file to load..."
  69.  
  70. #define MSG_TITLE_SAVE 18
  71. #define MSG_TITLE_SAVE_STR "Select a file to save to..."
  72.  
  73. #define MSG_OK_LOAD 19
  74. #define MSG_OK_LOAD_STR "Load"
  75.  
  76. #define MSG_OK_SAVE 20
  77. #define MSG_OK_SAVE_STR "Save"
  78.  
  79. #define MSG_OK_ABORT 21
  80. #define MSG_OK_ABORT_STR "Abort"
  81.  
  82. #define MSG_OK_RESUME 22
  83. #define MSG_OK_RESUME_STR "Abort|Resume"
  84.  
  85. #define MSG_OK_CONTINUE 23
  86. #define MSG_OK_CONTINUE_STR "Continue"
  87.  
  88. #define MSG_OK_OKCANCEL 24
  89. #define MSG_OK_OKCANCEL_STR "Ok|Cancel"
  90.  
  91. #define MSG_OK_OVERWRITE 25
  92. #define MSG_OK_OVERWRITE_STR "Rename|Overwrite|Abort"
  93.  
  94. #define MSG_ENTER_PASSWORD 26
  95. #define MSG_ENTER_PASSWORD_STR "Please enter password"
  96.  
  97. #define MSG_REENTER_PASSWORD 27
  98. #define MSG_REENTER_PASSWORD_STR "Please re-enter password"
  99.  
  100. #define MSG_VERIFICATION 28
  101. #define MSG_VERIFICATION_STR "Verification"
  102.  
  103. #define MSG_CRUNCH_ABORTED 29
  104. #define MSG_CRUNCH_ABORTED_STR "Do you really want to abort ?"
  105.  
  106. #define MSG_EXECUTABLE 30
  107. #define MSG_EXECUTABLE_STR "is an Executable file\nLoad it anyway ?"
  108.  
  109. #define MSG_CLI_EXECUTABLE 31
  110. #define MSG_CLI_EXECUTABLE_STR "is an executable file, load it anyway ? (Y/N)"
  111.  
  112. #define MSG_FILE_EXISTS 32
  113. #define MSG_FILE_EXISTS_STR "already exists !"
  114.  
  115. #define MSG_CLI_FILE_EXISTS 33
  116. #define MSG_CLI_FILE_EXISTS_STR "already exists, overwrite it ? (Y/N)"
  117.  
  118. #define MSG_CLI_YES 34
  119. #define MSG_CLI_YES_STR "Y"
  120.  
  121. #define MSG_ERROR_HEADER 35
  122. #define MSG_ERROR_HEADER_STR "Error writing data header !"
  123.  
  124. #define MSG_ERROR_MEMORY 36
  125. #define MSG_ERROR_MEMORY_STR "Out of memory !"
  126.  
  127. #define MSG_ERROR_OVERFLOW 37
  128. #define MSG_ERROR_OVERFLOW_STR "Buffer Overflow !"
  129.  
  130. #define MSG_ERROR_OPEN 38
  131. #define MSG_ERROR_OPEN_STR "Unable to open"
  132.  
  133. #define MSG_ERROR_SAVE 39
  134. #define MSG_ERROR_SAVE_STR "Write Error !"
  135.  
  136. #define MSG_CLI_ERROR_SAVE 40
  137. #define MSG_CLI_ERROR_SAVE_STR "error while saving"
  138.  
  139. #define MSG_ABOUT 41
  140. #define MSG_ABOUT_STR " About PPMC..."
  141.  
  142. #define MSG_FREEWARE 42
  143. #define MSG_FREEWARE_STR "This program is FREEWARE"
  144.  
  145. #define MSG_USING 43
  146. #define MSG_USING_STR "using..."
  147.  
  148. #define MSG_WRITTEN 44
  149. #define MSG_WRITTEN_STR "Written by"
  150.  
  151. #define MSG_EFFICIENCY_ITEXT 45
  152. #define MSG_EFFICIENCY_ITEXT_STR "EFFICIENCY"
  153.  
  154. #define MSG_SUBUFFER_ITEXT 46
  155. #define MSG_SUBUFFER_ITEXT_STR "SPEEDUP BUFFER"
  156.  
  157. #define MSG_DECEFFECT_ITEXT 47
  158. #define MSG_DECEFFECT_ITEXT_STR "DECRUNCH EFFECT"
  159.  
  160. #define MSG_EFFICIENCY0_GAD 48
  161. #define MSG_EFFICIENCY0_GAD_STR "Fast"
  162.  
  163. #define MSG_EFFICIENCY1_GAD 49
  164. #define MSG_EFFICIENCY1_GAD_STR "Mediocre"
  165.  
  166. #define MSG_EFFICIENCY2_GAD 50
  167. #define MSG_EFFICIENCY2_GAD_STR "Good"
  168.  
  169. #define MSG_EFFICIENCY3_GAD 51
  170. #define MSG_EFFICIENCY3_GAD_STR "Very Good"
  171.  
  172. #define MSG_EFFICIENCY4_GAD 52
  173. #define MSG_EFFICIENCY4_GAD_STR "Best"
  174.  
  175. #define MSG_SUBUFFER0_GAD 53
  176. #define MSG_SUBUFFER0_GAD_STR "Large"
  177.  
  178. #define MSG_SUBUFFER1_GAD 54
  179. #define MSG_SUBUFFER1_GAD_STR "Medium"
  180.  
  181. #define MSG_SUBUFFER2_GAD 55
  182. #define MSG_SUBUFFER2_GAD_STR "Small"
  183.  
  184. #define MSG_DECEFFECT0_GAD 56
  185. #define MSG_DECEFFECT0_GAD_STR "Color 0"
  186.  
  187. #define MSG_DECEFFECT1_GAD 57
  188. #define MSG_DECEFFECT1_GAD_STR "Color 2"
  189.  
  190. #define MSG_DECEFFECT2_GAD 58
  191. #define MSG_DECEFFECT2_GAD_STR "Pointer"
  192.  
  193. #define MSG_DECEFFECT3_GAD 59
  194. #define MSG_DECEFFECT3_GAD_STR "Scroll"
  195.  
  196. #define MSG_DECEFFECT4_GAD 60
  197. #define MSG_DECEFFECT4_GAD_STR "None"
  198.  
  199. #define MSG_SIZE_GAD 61
  200. #define MSG_SIZE_GAD_STR "Size"
  201.  
  202. #define MSG_ENCRYPT_GAD 62
  203. #define MSG_ENCRYPT_GAD_STR "_ENCRYPT FILE"
  204.  
  205. #define MSG_GAIN_GAD 63
  206. #define MSG_GAIN_GAD_STR "% gain"
  207.  
  208. #define MSG_ABOUT_GAD 64
  209. #define MSG_ABOUT_GAD_STR "ABOUT"
  210.  
  211. #define MSG_SAVE_GAD 65
  212. #define MSG_SAVE_GAD_STR "_SAVE"
  213.  
  214. #define MSG_PACK_GAD 66
  215. #define MSG_PACK_GAD_STR "_PACK"
  216.  
  217. #define MSG_UNPACK_GAD 67
  218. #define MSG_UNPACK_GAD_STR "_UNPACK"
  219.  
  220. #define MSG_ABORT_GAD 68
  221. #define MSG_ABORT_GAD_STR "ABORT"
  222.  
  223. #define MSG_PROJECT_MENU 69
  224. #define MSG_PROJECT_MENU_STR "Project"
  225.  
  226. #define MSG_PROJECT_ABOUT 70
  227. #define MSG_PROJECT_ABOUT_STR "About..."
  228.  
  229. #define MSG_PROJECT_ABOUT_CKEY 71
  230. #define MSG_PROJECT_ABOUT_CKEY_STR "?"
  231.  
  232. #define MSG_PROJECT_LOAD 72
  233. #define MSG_PROJECT_LOAD_STR "Load..."
  234.  
  235. #define MSG_PROJECT_LOAD_CKEY 73
  236. #define MSG_PROJECT_LOAD_CKEY_STR "L"
  237.  
  238. #define MSG_PROJECT_SAVE 74
  239. #define MSG_PROJECT_SAVE_STR "Save"
  240.  
  241. #define MSG_PROJECT_SAVE_CKEY 75
  242. #define MSG_PROJECT_SAVE_CKEY_STR "S"
  243.  
  244. #define MSG_PROJECT_SAVEAS 76
  245. #define MSG_PROJECT_SAVEAS_STR "Save As..."
  246.  
  247. #define MSG_PROJECT_SAVEAS_CKEY 77
  248. #define MSG_PROJECT_SAVEAS_CKEY_STR "V"
  249.  
  250. #define MSG_PROJECT_QUIT 78
  251. #define MSG_PROJECT_QUIT_STR "Quit"
  252.  
  253. #define MSG_PROJECT_QUIT_CKEY 79
  254. #define MSG_PROJECT_QUIT_CKEY_STR "Q"
  255.  
  256. #define MSG_PARAMETERS_MENU 80
  257. #define MSG_PARAMETERS_MENU_STR "Parameters"
  258.  
  259. #define MSG_PARAMETERS_EFFICIENCY 81
  260. #define MSG_PARAMETERS_EFFICIENCY_STR "Efficiency"
  261.  
  262. #define MSG_PARAMETERS_SUBUFFER 82
  263. #define MSG_PARAMETERS_SUBUFFER_STR "Speedup Buffer"
  264.  
  265. #define MSG_PARAMETERS_DECEFFECT 83
  266. #define MSG_PARAMETERS_DECEFFECT_STR "Decrunching Effect"
  267.  
  268. #define MSG_PARAMETERS_ENCRYPT 84
  269. #define MSG_PARAMETERS_ENCRYPT_STR "Encrypt File"
  270.  
  271. #define MSG_PARAMETERS_ENCRYPT_CKEY 85
  272. #define MSG_PARAMETERS_ENCRYPT_CKEY_STR "E"
  273.  
  274. #define MSG_CRUNCHING_MENU 86
  275. #define MSG_CRUNCHING_MENU_STR "Crunching"
  276.  
  277. #define MSG_CRUNCHING_PACK 87
  278. #define MSG_CRUNCHING_PACK_STR "Pack"
  279.  
  280. #define MSG_CRUNCHING_PACK_CKEY 88
  281. #define MSG_CRUNCHING_PACK_CKEY_STR "P"
  282.  
  283. #define MSG_CRUNCHING_UNPACK 89
  284. #define MSG_CRUNCHING_UNPACK_STR "Unpack"
  285.  
  286. #define MSG_CRUNCHING_UNPACK_CKEY 90
  287. #define MSG_CRUNCHING_UNPACK_CKEY_STR "U"
  288.  
  289. #define MSG_CLI_ORIGINAL_FILE 91
  290. #define MSG_CLI_ORIGINAL_FILE_STR "original file"
  291.  
  292. #define MSG_CLI_PACKED_FILE 92
  293. #define MSG_CLI_PACKED_FILE_STR "packed file"
  294.  
  295. #define MSG_CLI_UNPACKED_FILE 93
  296. #define MSG_CLI_UNPACKED_FILE_STR "unpacked file"
  297.  
  298. #define MSG_CLI_BYTES 94
  299. #define MSG_CLI_BYTES_STR "bytes"
  300.  
  301. #define MSG_CLI_BREAK 95
  302. #define MSG_CLI_BREAK_STR "aborted"
  303.  
  304. #define MSG_PER_GAINED 96
  305. #define MSG_PER_GAINED_STR "gained"
  306.  
  307. #define MSG_PER_PACKED 97
  308. #define MSG_PER_PACKED_STR "packed"
  309.  
  310. struct    AppString {
  311.     LONG    as_ID ;
  312.     STRPTR    as_Str ;
  313. } ;
  314.  
  315. #endif    //    PPMC_LOCALE_H
  316.