home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / frlnch.zip / source.frl / frl.rc < prev    next >
Text File  |  1995-04-06  |  3KB  |  73 lines

  1. /*
  2.   FreeLaunch
  3.   (c) Thomas Blummer 1995
  4.   resource file
  5.   $Id: frl.rc 1.5 1995/02/23 19:40:54 thomas Exp thomas $
  6. */
  7. #include <os2.h>
  8. #include "resource.h"
  9.  
  10. ICON MAINWINDOW "instl.ico"
  11. ICON IC_DISKIN "diskin.ico"
  12. ICON IC_CLOCK "clock.ico"
  13. ICON IC_ERROR "stop.ico"
  14. ICON IC_INFO "info.ico"
  15. ICON IC_QUESTION "question.ico"
  16.  
  17. MENU MAINWINDOW
  18. BEGIN
  19.         SUBMENU "~Actions", MI_ACTIONS
  20.         BEGIN
  21.                 MENUITEM "~Install product ...\tCtrl+I", MI_INSTALL
  22.                 MENUITEM "~Remove product ...\tCtrl+R", MI_REMOVE
  23.                 MENUITEM SEPARATOR
  24.                 MENUITEM "~Exit\tCtrl+E", MI_EXIT
  25.         END
  26. END
  27.  
  28. ACCELTABLE MAINWINDOW
  29. BEGIN
  30.         "i", MI_INSTALL, CHAR, CONTROL
  31.         "r", MI_REMOVE, CHAR, CONTROL
  32.         "e", MI_EXIT, CHAR, CONTROL
  33. END
  34.  
  35. STRINGTABLE
  36. BEGIN
  37.         STR_ERROR "Line %d : %s"
  38.         STR_CANTFINDSCRIPT "Can not find the install script"
  39.         STR_CANTFINDAPPNAME "Statement ApplicationName is missing"
  40.         STR_CANTFINDINFOFILE "Statement ReadMe is missing"
  41.         STR_CANTFINDTITLE "Statement InstallationTitle is missing"
  42.         STR_NOOWNER "Statement OwnerOfThisProgram is missing"
  43.         STR_CANNOTSTARTDECOMPRESS "Can not start decompression with %s"
  44.         STR_CANNOTFINDDECOMPRESSED "Can not find file %s after decompression"
  45.         STR_MKDIR "Can not create directory `%s'"
  46.         STR_FILENOTFOUND "File %s not found"
  47.         STR_CANNOTCOPYFILE "Can not copy file %s to %s"
  48.         STR_CANNOTCOPYCONFIG "Can not copy the config.sys"
  49.         STR_CANNOTOPENCONFIG "Can not open the config.sys"
  50.         STR_CANNOTWRITECONFIG "Can not write the config.sys"
  51.         STR_CONFUPDATED "The config.sys was automatically updated. A copy of your previous config.sys is created in %s"
  52.         STR_CONFNOTUPDATED "Your config.sys is unchanged. Suggested modifications are recorded in %s"
  53.         STR_NOTINSTALLED "The product is not yet installed"
  54.         STR_CANTDELETEFILE "Can not delete file `%s'"
  55.         STR_CANTREGISTERCLASS "Can not register SOM Class %s"
  56.         STR_CANTCREATEOBJECT "Can not create SOM Object %s"
  57.         STR_CANTDEREGISTERCLASS "Can not deregister SOM Class %s"
  58.         STR_CANTREMOVEOBJECT "Can not remove SOM Object %s"
  59.         STR_INSTALLDONE "The product is now installed."
  60.         STR_REMOVEDONE "The product is now removed."
  61.         STR_WRONGDISK "This is not the asked Diskette"
  62.         STR_DLL "Can not load DLL %s"
  63.         STR_DLLPROC "Can not load procedure adress of %s in DLL %s"
  64.         STR_CANNOTUNZIP "Can not unzip %s"
  65.         STR_CANNOTFINDUNZIPPED "Can not find unzipped file %s"
  66. END
  67.  
  68. #include "dialog.h"
  69. #ifndef _INSTALL_RC_
  70. rcinclude "dialog.dlg"
  71. #endif
  72.  
  73.