home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / quot210s.zip / src / qotd.rc < prev    next >
Text File  |  1998-06-07  |  1KB  |  44 lines

  1. /*
  2.  * qotd.rc
  3.  *
  4.  * Resource file for the Quoteriser's Quote-of-the-Day utility.
  5.  *
  6.  *      Created: 31st March, 1997
  7.  * Version 1.00: 9th April, 1997
  8.  * Version 2.00: 21st December, 1997
  9.  *
  10.  * (C) 1997 Nicholas Paul Sheppard
  11.  *
  12.  * This file is distributed under the GNU General Public License. See the
  13.  * file copying.txt for details.
  14.  */
  15.  
  16. #define INCL_WIN
  17. #include <os2.h>
  18.  
  19. #include "qotd.h"
  20.  
  21.  
  22. ICON IDI_ICON etc\quoter.ico
  23.  
  24. MENU IDM_MAIN {
  25.     MENUITEM "E~xit", IDM_EXIT
  26.     SUBMENU "~Edit", IDM_EDIT {
  27.         MENUITEM "Copy as ~Text", IDM_COPY_TEXT
  28.         MENUITEM "Copy as ~Metafile", IDM_COPY_METAFILE
  29.     }
  30.     MENUITEM "~Again", IDM_AGAIN
  31. }
  32.  
  33. STRINGTABLE LOADONCALL DISCARDABLE {
  34.     IDS_APPNAME        "The Quoteriser: Quote of the Day"
  35.     IDS_OPENFAILED        "I could not open %s."
  36.     IDS_THREADFAILED    "Thread failure."
  37.     IDS_INIFAILED        "I could not open QUOTER.INI"
  38.     IDS_EMPTYDB        "The database is empty."
  39.     IDS_NODB        "The database %s does not exist."
  40.     IDS_SEARCHING        "Choosing quote..."
  41.     IDS_ERROR        "Error"
  42.     IDS_UNSET        "Quote-of-the-day has not been configured in the Quoteriser."
  43. }
  44.