Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.4 KiB

  1. /**********************************************************************/
  2. /** Microsoft LAN Manager **/
  3. /** Copyright(c) Microsoft Corp., 1990, 1991 **/
  4. /**********************************************************************/
  5. /*
  6. blt.str
  7. string table for the blt package
  8. FILE HISTORY:
  9. terryk 08-Apr-1991 creation
  10. jonn 25-Aug-1992 Added IDs for new MsgPopup form
  11. */
  12. #ifndef _BLT_STR_
  13. #define _BLT_STR_
  14. STRINGTABLE
  15. {
  16. IDS_BLT_ELLIPSIS_TEXT, "..."
  17. /* The following strings are loaded during application startup and kept
  18. * around till termination. They are used when MsgPopup cannot load
  19. * a resource from the resource file or a memory allocation error occurs.
  20. *
  21. * See InitMsgPopup() in bltmsgp.cxx for more details.
  22. */
  23. IDS_BLT_TEXT_MSGP, "Not enough memory or unable to load resource."
  24. #ifdef WIN32
  25. IDS_BLT_CAPT_MSGP, "Windows"
  26. #else
  27. IDS_BLT_CAPT_MSGP, "LAN Manager"
  28. #endif
  29. /* We use the following strings when somebody calls MsgPopup with an
  30. * unknown message number. If the message number is < NERR_BASE
  31. * we assume it is a DOS error. If the message number is >= NERR_BASE
  32. * and <= MAX_NERR, then we assume it is a network error. Otherwise,
  33. * we assume it is an errant winnet message number or error number
  34. * and report it as such.
  35. */
  36. IDS_BLT_NETERROR_MSGP, "Network error %1 occurred."
  37. #ifdef WIN32
  38. IDS_BLT_DOSERROR_MSGP, "System error %1 occurred."
  39. IDS_BLT_WINNET_ERROR_MSGP, "Windows error %1 occurred."
  40. IDS_BLT_NTSTATUS_ERROR_MSGP, "Windows error 0x%1 occurred."
  41. #else
  42. IDS_BLT_DOSERROR_MSGP, "DOS error %1 occurred."
  43. IDS_BLT_WINNET_ERROR_MSGP, "LAN Manager network driver error %1 occurred."
  44. #endif //!WIN32
  45. /* The following are used by the dialog help system when trying to
  46. * start the help engine.
  47. *
  48. * Help contexts SHOULD NOT be associated with the following BLT messages.
  49. */
  50. IDS_BLT_OutOfMemory, "Insufficient memory available."
  51. IDS_BLT_WinHelpError, "Unable to start help."
  52. IDS_BLT_30_WinHelpFile, "LM21_W30.HLP"
  53. IDS_BLT_31_WinHelpFile, "LM21_W31.HLP"
  54. IDS_BLT_SB_SLENUM_OUTRANGE "The contents of the %1 is not valid. You must type a value between %2 and %3."
  55. IDS_DAY_TOO_BIG "The day field is too big."
  56. IDS_FEBRUARY_LEAP "February only has 29 days in this year."
  57. IDS_FEBRUARY_NOT_LEAP "February only has 28 days in this year."
  58. IDS_MONTH "Month"
  59. IDS_DAY "Day"
  60. IDS_YEAR "Year"
  61. IDS_HOUR "Hour"
  62. IDS_MIN "Min"
  63. IDS_SEC "Sec"
  64. IDS_K "K"
  65. IDS_MB "MB"
  66. IDS_GB "GB"
  67. IDS_TB "TB"
  68. IDS_FIELD "field"
  69. IDS_BLT_FMT_SYS_error "System error %1"
  70. IDS_BLT_FMT_NET_error "Windows error %1"
  71. IDS_BLT_FMT_other_error "Windows error 0x%1"
  72. IDS_BLT_UNKNOWN_ERROR "An unknown error occurred."
  73. //
  74. // The following string is loaded in FONT class constructor.
  75. //
  76. IDS_FIXED_TYPEFACE_NAME "Courier"
  77. }
  78. #endif