home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / dropbox-1.1.lha / DropBox / src / DropStrings.c < prev    next >
C/C++ Source or Header  |  1993-07-31  |  3KB  |  86 lines

  1. /** DoRev Header ** Do not edit! **
  2. *
  3. * Name             :  DropStrings.c
  4. * Copyright        :  Copyright 1993 Steve Anichini. All Rights Reserved.
  5. * Creation date    :  21-Jun-93
  6. * Translator       :  SAS/C 5.1b
  7. *
  8. * Date       Rev  Author               Comment
  9. * ---------  ---  -------------------  ----------------------------------------
  10. * 21-Jun-93    0  Steve Anichini       Put strings in separate module.
  11. *
  12. *** DoRev End **/
  13.  
  14. #include "DropBox.h"
  15. #include "window.h"
  16.  
  17. char *error[] =
  18. {
  19.     "",
  20.     "DropBox requires Icon library V37+.",
  21.     "DropBox requires Workbench library V37+.",
  22.     "DropBox requires Graphics library V37+.",
  23.     "DropBox requires Intuition library V37+.",
  24.     "DropBox can't find it's icon! (This error shouldn't happen)",
  25.     "DropBox can't open a message port.",
  26.     "DropBox can't create an AppIcon.",
  27.     "DropBox can't create an AppMenuItem.",
  28.     "DropBox requires Commodities library V37+.",
  29.     "DropBox can't create a broker.",
  30.     "DropBox can't create a commodities filter.",
  31.     "DropBox can't create a commodities sender.",
  32.     "DropBox requires Gadtools library V37+.",
  33.     "DropBox requires Utility library V37+.",
  34.     "DropBox can't initialize it's database.",
  35.     "DropBox can't open its window.",
  36.     "DropBox requires IffParse library V37+.",
  37.     "DropBox can't load the prefs file.",
  38.     "DropBox can't save the prefs file.",
  39.     "DropBox can't open a file requester.",
  40.     "DropBox requires Asl library V37+.",
  41.     "There wasn't enough memory to complete that operation.",
  42.     "The executed command failed.",
  43.     "There wasn't enough memory to load the preferences file.",
  44.     "The command template is bad.",
  45.     "A command in the template was not recognized.",
  46.     "The destination directory could not be created.",
  47. };
  48.  
  49. char *string[] =
  50. {
  51.     "DropBox",
  52.     "DropBox 1.1 by Steve Anichini",
  53.     "Processes the dropped items.",
  54.     "DropBox About Window",
  55.     "DropBox 1.1\n  by Steve Anichini\n\nCopyright 1993 Steve Anichini. All rights reserved.\nSend comments, donations, etc to:\n Steve Anichini\n 380 Grandview Ct\n Algonquin, IL 60102\n internet: zucchini@imsa.edu",
  56.     "Proceed",
  57.     "DropBox Warning",
  58.     "This will erase the current configuration!\n",
  59.     "Proceed|Cancel",
  60.     "DropBox Warning",
  61.     "Current configuration modified!",
  62.     "Proceed|Save First|Cancel",
  63.     "DropBox Message",
  64.     "Format not recognized. Create new entry?",
  65.     "Yes|No",
  66.     "DropBox File Request",
  67.     "DropBox.prefs",
  68.     "ENVARC:",
  69.     "#?.prefs",
  70.     "rawkey control esc",
  71.     "COM",
  72.     "SOURCE",
  73.     "DEST",
  74.     "SOURCEDIR",
  75.     "SOURCEFILE",
  76.     "DropBox I/O Window"
  77. };
  78.  
  79. /* For looking up the gadget short key */
  80.  
  81. struct GadLookUp glu[] =
  82. {
  83.     { "A",GD_Add},
  84.     { "I",GD_Insert}
  85. };
  86.