home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sndys200.zip / nlssrc.zip / sndyseng.rch < prev    next >
Text File  |  1996-02-27  |  11KB  |  177 lines

  1.  
  2. // --------------- strings for dialog resources ---------------------
  3.  
  4. //      pushbutton text for both pages           
  5.  
  6. #define IDT_PB_UNDO                              "~Undo"
  7. #define IDT_PB_DEFAULT                           "~Default"
  8. #define IDT_PB_HELP                              "Help"
  9. #define IDT_PB_OK                                "~OK"
  10. #define IDT_PB_CANCEL                            "~Cancel"
  11.  
  12. //      session page dialog text                 
  13.  
  14. //      session page dialog text                 
  15.  
  16. #define IDT_IDDLG_NBSESSION_ST_WARNING           "Warning: This change will not take effect until you shutdown and reboot."
  17. #define IDT_IDDLG_NBSESSION_CB_ACTIVE            "~activate SendYes!"
  18. #define IDT_IDDLG_NBSESSION_CB_SEPARATE          "~load by separate process"
  19. #define IDT_IDDLG_NBSESSION_CB_UNLOAD            "u~nload on deactivation"
  20.  
  21. //      actions page dialog text                 
  22.  
  23. #define IDT_IDDLG_NBACTIONS_ST_DEFINED           "Defined action profiles"
  24. #define IDT_IDDLG_NBACTIONS_ST_ACTIVATED         "Active action profiles"
  25.  
  26. //      new / copy / edit dialog                 
  27.  
  28. #define IDT_IDDLG_NEW_ST_MSGTEXT                 "Message text"
  29. #define IDT_IDDLG_NEW_ST_PUSHBUTTON              "Pushbutton"
  30. #define IDT_IDDLG_NEW_ST_ACTION                  "Action to take"
  31.  
  32. //      menu text                                
  33.  
  34. #define IDT_IDMEN_ACTION_DEFINED_NEW             "~New..."
  35. #define IDT_IDMEN_ACTION_DEFINED_ACTIVATE        "~Activate"
  36. #define IDT_IDMEN_ACTION_DEFINED_EDIT            "~Edit..."
  37. #define IDT_IDMEN_ACTION_DEFINED_COPY            "~Copy..."
  38. #define IDT_IDMEN_ACTION_DEFINED_DELETE          "~Delete..."
  39. #define IDT_IDMEN_ACTION_DEFINED_SNIFFER         "~Sniffer..."
  40.  
  41. #define IDT_IDMEN_ACTION_ACTIVATED_DEACTIVATE    "De~activate"
  42. #define IDT_IDMEN_ACTION_ACTIVATED_EDIT          "~Edit..."
  43. #define IDT_IDMEN_ACTION_ACTIVATED_DELETE        "~Delete..."
  44. #define IDT_IDMEN_ACTION_ACTIVATED_TEST          "~Test..."
  45.  
  46. // --------------- text for message resources -----------------------
  47.  
  48. #define IDT_IDMSG_LANGUAGE             "English"
  49. #define IDT_IDMSG_HELP_HEAD            __APPNAME__                                  NEWLINE \
  50.                                        __VERSION__  " by " __AUTHOR__               NEWLINE \
  51.                                                                                     NEWLINE \
  52.                                        "Usage: SENDYES options"                     NEWLINE \
  53.                                                                                     NEWLINE
  54. #define IDT_IDMSG_HELP_1               "Options:"                                   NEWLINE \
  55.                                        "/Initialize"                                NEWLINE \
  56.                                        " · initialize " __APPNAME__                 NEWLINE \
  57.                                        "/Load"                                      NEWLINE \
  58.                                        " · load " __APPNAME__                       NEWLINE \
  59.                                        "/Unload"                                    NEWLINE \
  60.                                        " · unload active " __APPNAME__              NEWLINE \
  61.                                        "/Batch"                                     NEWLINE \
  62.                                        " · do no display message boxes"             NEWLINE 
  63. #define IDT_IDMSG_HELP_2               "/Quiet"                                     NEWLINE \
  64.                                        " · no notification beeps in batch mode"     NEWLINE \
  65.                                        "/Status"                                    NEWLINE \
  66.                                        " · determine if " __APPNAME__ " is active"  NEWLINE \
  67.                                        "/? or /Help"                                NEWLINE \
  68.                                        " · show this help"                          NEWLINE
  69. #define IDT_IDMSG_HELP_TAIL                                                         NEWLINE \
  70.                                        "Only uppercase characters of the parameters are required."
  71.  
  72.  
  73. #define IDT_IDMSG_TITLE_INITIALIZE     "Initializing " __APPNAME__
  74. #define IDT_IDMSG_TITLE_QUERYSTATUS    "Querying " __APPNAME__ " status"
  75. #define IDT_IDMSG_TITLE_UNLOAD         "Unloading " __APPNAME__;
  76. #define IDT_IDMSG_TITLE_HELP_ERROR     __APPNAME__ "Help"
  77.  
  78. #define IDT_IDMSG_TITLE_TESTTEXTSESSION  __APPNAME__ " test for closing text sessions"
  79. #define IDT_IDMSG_TITLE_TEXTSESSION      __APPNAME__ ": test for closing "
  80.  
  81. #define IDT_IDMSG_INVALIDPARM          "Invalid parameter given."         NEWLINE \
  82.                                        "Program aborted."                 NEWLINE \
  83.                                        "Help with /?"
  84. #define IDT_IDMSG_CANNOT_INITIALIZE    __APPNAME__ " cannot initialize."
  85. #define IDT_IDMSG_ALREADY_ACTIVE       __APPNAME__ " is already active."  NEWLINE \
  86.                                        "Program aborted."
  87. #define IDT_IDMSG_ACTIVE               __APPNAME__ " is active."
  88. #define IDT_IDMSG_NOTACTIVE            __APPNAME__ " is not active."
  89. #define IDT_IDMSG_CANNOT_UNLOAD        __APPNAME__ " cannot be unloaded."
  90. #define IDT_IDMSG_LOADED               __APPNAME__ " was loaded."
  91. #define IDT_IDMSG_UNLOADED             __APPNAME__ " was unloaded."
  92.  
  93. #define IDT_IDMSG_CONFIRMDELETE_HEAD   "You have selected the following action profile for deletion:" NEWLINE NEWLINE
  94. #define IDT_IDMSG_CONFIRMDELETE_TAIL   NEWLINE NEWLINE "Are you sure you want to delete this action profile ?"
  95.  
  96. #define IDT_IDMSG_ALREADY_EXISTS       "There exists already an action profile for this message text." NEWLINE \
  97.                                        "The new profile is not accepted."
  98.  
  99. #define IDT_IDMSG_PROFILE_READONLY     "SENDYES.INI in directory %s cannot be written." NEWLINE \
  100.                                        "Settings will be written to %s when " __APPNAME__ " is called within this directory."
  101.  
  102. #define IDT_IDMSG_GUI_ALREADY_ACTIVE   __APPNAME__ " GUI is already active." NEWLINE
  103.                                        "Program aborted."
  104.  
  105. #define IDT_IDMSG_CANNOT_INIT_HELP     "The help instance cannot be initialized. Help will not be available."
  106. #define IDT_IDMSG_CANNOT_HELP          "An error occurred within the help instance. Help might not be available."
  107.  
  108. #define IDT_IDMSG_TEST_QUERY_1         "Do you want to test test the predefined action profiles for closing text sessions ?" NEWLINE NEWLINE
  109. #define IDT_IDMSG_TEST_QUERY_2         "Press OK to continue or Cancel to cancel testing."
  110.  
  111. #define IDT_IDMSG_TESTTEXTSESSION_1    __APPNAME__ " created the following text session(s) for to test the predefined action profiles for closing text sessions:" NEWLINE NEWLINE
  112. #define IDT_IDMSG_TESTTEXTSESSION_2    NEWLINE "Close them while the predefined action profiles are still active."                                              NEWLINE NEWLINE \
  113.                                        "The confirmation message boxes should not appear."
  114. #define IDT_IDMSG_TEST_NOT_ACTIVE_1    "The predefined action profile labeled «%s» is not activated. Do you want to activate it ?" NEWLINE NEWLINE
  115. #define IDT_IDMSG_TEST_NOT_ACTIVE_2    "Press Yes to activate and test this action profile, press No to skip testing it or press Cancel to cancel the test."
  116. #define IDT_IDMSG_TEST_NOT_ACTIVE_3    "SendYes! is not active. You must first activate SendYes! before testing the predefined action profiles for closing text sessions."
  117.  
  118. // --------------- text for string resources ------------------------
  119.  
  120. // text for notebook tabs
  121. #define IDT_IDTAB_NBSESSION                      "~Session"
  122. #define IDT_IDTAB_NBACTIONS                      "~Actions"
  123.  
  124. // strings for hook executable status
  125. // condition red
  126. #define IDT_IDSTR_NOTLOADED                      __APPNAME__ " is not loaded"
  127. #define IDT_IDSTR_NOTACTIVE                      __APPNAME__ " is not active"
  128. // condition red/yellow
  129. #define IDT_IDSTR_BEINGLOADED                    __APPNAME__ " is being loaded"
  130. #define IDT_IDSTR_BEINGACTIVATED                 __APPNAME__ " is being activated"
  131. // condition green
  132. #define IDT_IDSTR_ACTIVE                         __APPNAME__ " is active"
  133. // condition yellow
  134. #define IDT_IDSTR_BEINGDEACTIVATED               __APPNAME__ " is being deactivated"
  135. #define IDT_IDSTR_BEINGUNLOADED                  __APPNAME__ " is being unloaded"
  136.  
  137. // text for dialog titles
  138. #define IDT_IDSTR_FRAME_TITLE                    __APPNAME__ " " __VERSION__ " Settings"
  139. #define IDT_IDSTR_LISTBOX_TITLE_MSGTEXT          "message text"
  140. #define IDT_IDSTR_LISTBOX_TITLE_PUSHBUTTON       "button"
  141. #define IDT_IDSTR_LISTBOX_TITLE_ACTION           "action"
  142.  
  143. // title text for new / copy /edit dialog and delete msg box
  144. #define IDT_IDSTR_NEWDLG_TITLE_NEW               "Create a new action profile"
  145. #define IDT_IDSTR_NEWDLG_TITLE_EDIT              "Edit an action profile"
  146. #define IDT_IDSTR_NEWDLG_TITLE_EDITPD            "Edit a predefined action profile"
  147. #define IDT_IDSTR_NEWDLG_TITLE_COPY              "Copy an action profile"
  148. #define IDT_IDSTR_NEWDLG_TITLE_DELETE            "Delete an action profile"
  149.  
  150. // button text of standard pm messageboxes
  151. #define IDT_IDSTR_BUTTON_OK                      "OK"
  152. #define IDT_IDSTR_BUTTON_CANCEL                  "Cancel"
  153. #define IDT_IDSTR_BUTTON_ABORT                   "Abort"
  154. #define IDT_IDSTR_BUTTON_RETRY                   "Retry"
  155. #define IDT_IDSTR_BUTTON_IGNORE                  "Ignore"
  156. #define IDT_IDSTR_BUTTON_YES                     "Yes"
  157. #define IDT_IDSTR_BUTTON_NO                      "No"
  158. #define IDT_IDSTR_BUTTON_HELP                    "Help"
  159. #define IDT_IDSTR_BUTTON_ENTER                   "Enter"
  160.  
  161. // text for actions to take
  162. #define IDT_IDSTR_ACTION_PRESS                   "Press button"
  163. #define IDT_IDSTR_ACTION_DEFAULT                 "Default to button"
  164. #define IDT_IDSTR_ACTION_DISABLE                 "Disable button"
  165.  
  166. // text for descriptions of session types
  167. #define IDT_IDSTR_TEXTSESSION_OS2WIN             "OS/2 Window"
  168. #define IDT_IDSTR_TEXTSESSION_OS2FS              "OS/2 Full Screen"
  169. #define IDT_IDSTR_TEXTSESSION_DOSWIN             "DOS Window "
  170. #define IDT_IDSTR_TEXTSESSION_DOSFS              "DOS Full Screen"
  171.  
  172. // text for descriptions of predefined action profiles
  173. #define IDT_IDSTR_PREDEFACTIONPRF_CONFIRMWIN    "OS/2 win close"
  174. #define IDT_IDSTR_PREDEFACTIONPRF_CONFIRMFS     "OS/2 fs close" 
  175. #define IDT_IDSTR_PREDEFACTIONPRF_SHUTDOWN      "shutdown"      
  176.  
  177.