home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / win100b.zip / wkkmnu.rc < prev    next >
Text File  |  1991-10-20  |  4KB  |  124 lines

  1. /*
  2.  * Windows Kermit resource file
  3.  *
  4.  * Copyright (c) 1990, 1991 by
  5.  * William S. Hall
  6.  * 3665 Benton Street, #66
  7.  * Santa Clara, CA 95051
  8.  *
  9.  * This file contains the resources needed by the Kermit
  10.  * module.  It must be included along with the necessary
  11.  * header files in the resource file for the terminal
  12.  * program
  13.  *
  14.  */
  15.  
  16. /* icon */
  17. #ifdef COLUMBIA
  18. Kermit ICON    WKKERM.ICO
  19. #else
  20. Kermit ICON    Kermit.ico
  21. #endif
  22.  
  23. /* Menu for Kermit.  This item is attached to the main window at init time */
  24. KRMMENU MENU
  25. BEGIN
  26.     POPUP "&Files"
  27.         BEGIN
  28.         MENUITEM "&Receive", IDM_KRM_RECEIVE
  29.         MENUITEM "&Send...", IDM_KRM_SEND
  30.         MENUITEM "&Get...", IDM_KRM_GET
  31.     END
  32.     POPUP "&Remote"
  33.     BEGIN
  34.         MENUITEM "C&ommand...", IDM_KRM_REMOTECOMMAND
  35.         MENUITEM SEPARATOR
  36.         MENUITEM "&Change directory...", IDM_KRM_REMOTECWD
  37.         MENUITEM "&Directory...", IDM_KRM_REMOTEDIR
  38.         MENUITEM "&Erase...", IDM_KRM_REMOTEERASE
  39.         MENUITEM "&Help...", IDM_KRM_REMOTEHELP
  40.         MENUITEM "&Space...", IDM_KRM_REMOTESPACE
  41.         MENUITEM "&Type...", IDM_KRM_REMOTETYPE
  42.         MENUITEM "&Who...", IDM_KRM_REMOTEWHO
  43.         MENUITEM SEPARATOR
  44.         MENUITEM "&Finish", IDM_KRM_REMOTEFINISH
  45.         MENUITEM "&Logout", IDM_KRM_REMOTELOGOUT
  46.         MENUITEM "&Bye", IDM_KRM_REMOTEBYE
  47.     END
  48.     POPUP "&Local"
  49.     BEGIN
  50.         MENUITEM "&Directory / Chdir", IDM_KRM_LOCALFILES
  51.     END
  52.     POPUP "&Parameters"
  53.     BEGIN
  54.         MENUITEM "Set &Protocol...", IDM_KRM_PROTOCOL
  55.         MENUITEM "Set Pac&kets...", IDM_KRM_PACKETS
  56.     END
  57.     POPUP "&Cancel"
  58.         BEGIN
  59.             MENUITEM "&File", IDM_KRM_FILEABORT, GRAYED
  60.         MENUITEM "&Batch", IDM_KRM_BATCHABORT, GRAYED
  61.             MENUITEM "&Nicely", IDM_KRM_ERRORABORT, GRAYED
  62.             MENUITEM SEPARATOR
  63.             MENUITEM "&Abruptly", IDM_KRM_CANCEL, GRAYED
  64.     END
  65. END
  66.  
  67. /* Strings used by Kermit */
  68. STRINGTABLE
  69. BEGIN
  70.   /* Messages */
  71.     IDS_KRM_TRANSACTION_DONE    "Transaction Done"
  72.     IDS_KRM_QUIT        "Abort the current file transfer"
  73.     IDS_KRM_UNKNOWN_PACKET    "Unrecognized Packet Type"
  74.     IDS_KRM_CANCELLED        "Transaction Cancelled"
  75.     IDS_KRM_TOOMANYRETRIES    "Retry Limit Exceeded"
  76.     IDS_KRM_FILE_OPEN_ERROR    "File Open Error"
  77.     IDS_KRM_FILE_READ_ERROR    "File Read Error"
  78.     IDS_KRM_FILE_WRITE_ERROR    "File Write Error"
  79.     IDS_KRM_FILE_CLOSE_ERROR    "File Close Error"
  80.     IDS_KRM_TERMINAL_OPEN_ERROR "Cannot display response from host"
  81.     IDS_KRM_SENDCMD_ERROR    "Command send error"
  82.     IDS_KRM_SENDR_ERROR        "Get file error"
  83.     IDS_KRM_SENDING        "Sending file:"
  84.     IDS_KRM_CANNOTINIT        "Kermit initialization failed"
  85.   /* Menu title */
  86.     IDS_KRM_KERMITMENU        "&Kermit"
  87.   /* WIN.INI strings */
  88.     IDS_KRM_KERMIT        "Kermit"
  89.     IDS_KRM_TIMER        "Timer"
  90. /*    IDS_KRM_VERBOSE        "Verbose"   */
  91.     IDS_KRM_DISCARD        "Discard"
  92.     IDS_KRM_BELL        "Bell"
  93.     IDS_KRM_FILEWARN        "Filewarn"
  94.     IDS_KRM_BLOCKCHECKTYPE    "BlockCheck"
  95.     IDS_KRM_SENDDELAY        "SendDelay"
  96.     IDS_KRM_RETRYLIMIT        "RetryLimit"
  97.     IDS_KRM_SENDMARK        "sMark"
  98.     IDS_KRM_RCVMARK        "rMark"
  99.     IDS_KRM_SENDMAXLEN        "sMaxpktlen"
  100.     IDS_KRM_RCVMAXLEN        "rMaxpktlen"
  101.     IDS_KRM_SENDTIMEOUT        "sTimeOut"
  102.     IDS_KRM_RCVTIMEOUT        "rTimeOut"
  103.     IDS_KRM_SENDPADCOUNT    "sPadCount"
  104.     IDS_KRM_RCVPADCOUNT        "rPadCount"
  105.     IDS_KRM_SENDPADCHAR        "sPadChar"
  106.     IDS_KRM_RCVPADCHAR        "rPadChar"
  107.     IDS_KRM_SENDEOL        "sEol"
  108.     IDS_KRM_RCVEOL        "rEol"
  109.     IDS_KRM_SENDQUOTE        "sQuote"
  110.     IDS_KRM_RCVQUOTE        "rQuote"
  111.     IDS_KRM_REMOTEHELP        "Kermit Remote Help"
  112.     IDS_KRM_HELPTOPIC        "Topic:"
  113.     IDS_KRM_REMOTECOMMAND    "Kermit Remote Command"
  114.     IDS_KRM_CMDTOPIC        "Command:"
  115.     IDS_KRM_REMOTEDIR        "Kermit Remote Directory"
  116.     IDS_KRM_REMOTETYPE        "Kermit Remote Type"
  117.     IDS_KRM_REMOTESPACE        "Kermit Remote Space"
  118.     IDS_KRM_SPACETOPIC        "Area:"
  119.     IDS_KRM_REMOTEWHO        "Kermit Remote Who"
  120.     IDS_KRM_WHOTOPIC        "User:"
  121.     IDS_KRM_REMOTEERASE        "Kermit Remote Erase"
  122.     IDS_KRM_WINDOWOVERFLOW    "Window text has been truncated"
  123. END
  124.