home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk22 / dir08 / f013230.re_ / f013230.re
Text File  |  1996-04-02  |  3KB  |  72 lines

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. |  Copyright (1994-95) Bentley Systems, Inc., All rights reserved.    |
  4. |                                    |
  5. |  "MicroStation" is a registered trademark and "MDL" and "MicroCSL"    |
  6. |  are trademarks of Bentley Systems, Inc.                    |
  7. |                                    |
  8. |  Limited permission is hereby granted to reproduce and modify this    |
  9. |  copyrighted material provided that the resulting code is used only     |
  10. |  in conjunction with Bentley Systems products under the terms of the    |
  11. |  license agreement provided therein, and that this notice is retained    |
  12. |  in its entirety in any such reproduction or modification.        |
  13. |                                    |
  14. +----------------------------------------------------------------------*/
  15. /*----------------------------------------------------------------------+
  16. |                                    |
  17. |   $Logfile:   J:/mdl/examples/aliasmgr/english/aliasmsg.r_v  $
  18. |   $Workfile:   aliasmsg.r  $
  19. |   $Revision:   1.0  $
  20. |       $Date:   26 Jun 1995 08:11:16  $
  21. |                                    |
  22. +----------------------------------------------------------------------*/
  23. /*----------------------------------------------------------------------+
  24. |   aliasmsg.r -- Application message string resources            |
  25. +----------------------------------------------------------------------*/
  26. /*----------------------------------------------------------------------+
  27. |   Include Files                               |
  28. +----------------------------------------------------------------------*/
  29. #include <dlogbox.h>    /* dlog box manager resource constants & structs */
  30. #include <dlogids.h>    /* MicroStation resource IDs */
  31.  
  32. #include "aliasids.h"    /* Alias Mgr dialog box constants */
  33.  
  34. /*----------------------------------------------------------------------+
  35. |   Messages                                                                                |
  36. +----------------------------------------------------------------------*/
  37. MessageList MSGLISTID_AliasMgr = 
  38.     {{
  39.     {MSGID_AliasManager,         "Alias Manager"},
  40.  
  41.     {MSGID_AlmFileName,        "File: %s"},
  42.     {MSGID_NumRead,             "%d commands read"},
  43.     {MSGID_NumWritten,         "%d commands written"},
  44.  
  45.     {MSGID_OpenAliasMgrFile,     "Open Alias Manager File"},
  46.     {MSGID_SaveFileAs,           "Save Alias Manager File As"},
  47.  
  48.     {MSGID_SaveCfgVar,          "Save as ALIASMGR_DATA User Config Variable?"},
  49.  
  50.     {MSGID_DoYouWantToSave,      "Do you want to save all changes?"},
  51.     {MSGID_AreYouSure,           "Are you sure that you want to %s\n%s?"},
  52.     {MSGID_CantOpenPgpYet,       "You must open an Alias Manager file first"},
  53.  
  54.     {MSGID_CanOnlyBeUsedIn,        "This Alias Manager file can only be used in %s"},
  55.  
  56.     {MSGID_NothingTo,        "There is nothing to %s"},
  57.     {MSGID_AlreadyExists,        "This command has already been aliased"},
  58.     {MSGID_CommandNotFound,        "Command not found. Try Insert."},
  59.  
  60.     {MSGID_ErrOpenWrite,         "Unable to open %s for write access"},
  61.     {MSGID_ErrOpen,              "Unable to open %s"},
  62.  
  63.     {MSGID_Generated,        "; Generated by ALIASMGR in %s - %s"},
  64.     {MSGID_General,            "; Use ; for general comments"},
  65.     {MSGID_Ignore,            "; Use # to ignore commands and aliased input"},
  66.  
  67.     {MSGID_YesAutoQueue,        "; Use +autoqueue to enable"},
  68.     {MSGID_NoAutoQueue,        "; Use -autoqueue to disable"},
  69.  
  70.     {MSGID_AliasedInputTooLong,    "Aliased Input exceeds 512 characters"}
  71.     }};
  72.