home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / develop / gadtoolsbox / gengtxsource / source / gengtxsource_locale.h < prev    next >
C/C++ Source or Header  |  1995-02-27  |  3KB  |  121 lines

  1. #ifndef GENGTXSOURCE_LOCALE_H
  2. #define GENGTXSOURCE_LOCALE_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17.  
  18. /****************************************************************************/
  19.  
  20.  
  21. #define MSG_OUT_OF_MEMORY 0
  22. #define MSG_OUT_OF_MEMORY_STR "Error -: out of memory\n"
  23.  
  24. #define MSG_WRITE_ERROR 1
  25. #define MSG_WRITE_ERROR_STR "Error -: write error\n"
  26.  
  27. #define MSG_READ_ERROR 2
  28. #define MSG_READ_ERROR_STR "Error -: read error\n"
  29.  
  30. #define MSG_PREPEND_FILE_ERROR 3
  31. #define MSG_PREPEND_FILE_ERROR_STR "Error -: unable to open user descriptor file\n"
  32.  
  33. #define MSG_SOURCE_FILE_ERROR 4
  34. #define MSG_SOURCE_FILE_ERROR_STR "Error -: unable to open source files\n"
  35.  
  36. #define MSG_INTUITION_ERROR 5
  37. #define MSG_INTUITION_ERROR_STR "Error -: unable to open the intuition.library\n"
  38.  
  39. #define MSG_GTX_ERROR 6
  40. #define MSG_GTX_ERROR_STR "Error -: unable to open the gadtoolsbox.library\n"
  41.  
  42. #define MSG_ERROR 7
  43. #define MSG_ERROR_STR "Error -"
  44.  
  45. #define MSG_OPEN_FILE_ERROR 8
  46. #define MSG_OPEN_FILE_ERROR_STR "Error -: unable to open the GUI file\n"
  47.  
  48. #define MSG_PARSE_ERROR 9
  49. #define MSG_PARSE_ERROR_STR "Error -: unable to parse the GUI file\n"
  50.  
  51. #define MSG_DECRUNCH_ERROR 10
  52. #define MSG_DECRUNCH_ERROR_STR "Error -: unable to decrunch the GUI file\n"
  53.  
  54. #define MSG_PPLIB_ERROR 11
  55. #define MSG_PPLIB_ERROR_STR "Error -: the file is crunched and the powerpacker.library could not be opened\n"
  56.  
  57. #define MSG_NOT_GUI_FILE_ERROR 12
  58. #define MSG_NOT_GUI_FILE_ERROR_STR "Error -: this is not a GadToolsBox GUI file\n"
  59.  
  60. #define MSG_XREF_STRINGS 13
  61. #define MSG_XREF_STRINGS_STR "Cross referencing strings...\n"
  62.  
  63. #define MSG_GENERATING_SOURCE 14
  64. #define MSG_GENERATING_SOURCE_STR "Generating source...\n"
  65.  
  66. #define MSG_PREPENDING_CD 15
  67. #define MSG_PREPENDING_CD_STR "Inserting user descriptor file...\n"
  68.  
  69. #define MSG_BY 16
  70. #define MSG_BY_STR "Written by"
  71.  
  72. #define MSG_LOADING 17
  73. #define MSG_LOADING_STR "Loading...\n"
  74.  
  75. #define MSG_DONE 18
  76. #define MSG_DONE_STR "Done.\n"
  77.  
  78.  
  79. /****************************************************************************/
  80.  
  81.  
  82. #ifdef STRINGARRAY
  83.  
  84. struct AppString
  85. {
  86.     LONG   as_ID;
  87.     STRPTR as_Str;
  88. };
  89.  
  90. struct AppString AppStrings[] =
  91. {
  92.     {MSG_OUT_OF_MEMORY,MSG_OUT_OF_MEMORY_STR},
  93.     {MSG_WRITE_ERROR,MSG_WRITE_ERROR_STR},
  94.     {MSG_READ_ERROR,MSG_READ_ERROR_STR},
  95.     {MSG_PREPEND_FILE_ERROR,MSG_PREPEND_FILE_ERROR_STR},
  96.     {MSG_SOURCE_FILE_ERROR,MSG_SOURCE_FILE_ERROR_STR},
  97.     {MSG_INTUITION_ERROR,MSG_INTUITION_ERROR_STR},
  98.     {MSG_GTX_ERROR,MSG_GTX_ERROR_STR},
  99.     {MSG_ERROR,MSG_ERROR_STR},
  100.     {MSG_OPEN_FILE_ERROR,MSG_OPEN_FILE_ERROR_STR},
  101.     {MSG_PARSE_ERROR,MSG_PARSE_ERROR_STR},
  102.     {MSG_DECRUNCH_ERROR,MSG_DECRUNCH_ERROR_STR},
  103.     {MSG_PPLIB_ERROR,MSG_PPLIB_ERROR_STR},
  104.     {MSG_NOT_GUI_FILE_ERROR,MSG_NOT_GUI_FILE_ERROR_STR},
  105.     {MSG_XREF_STRINGS,MSG_XREF_STRINGS_STR},
  106.     {MSG_GENERATING_SOURCE,MSG_GENERATING_SOURCE_STR},
  107.     {MSG_PREPENDING_CD,MSG_PREPENDING_CD_STR},
  108.     {MSG_BY,MSG_BY_STR},
  109.     {MSG_LOADING,MSG_LOADING_STR},
  110.     {MSG_DONE,MSG_DONE_STR},
  111. };
  112.  
  113.  
  114. #endif /* STRINGARRAY */
  115.  
  116.  
  117. /****************************************************************************/
  118.  
  119.  
  120. #endif /* GENGTXSOURCE_LOCALE_H */
  121.