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.

195 lines
6.4 KiB

  1. ;//+-------------------------------------------------------------------------
  2. ;//
  3. ;// Microsoft Windows
  4. ;// Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. ;//
  6. ;// File: messages.mc
  7. ;//
  8. ;// Contents: Main message file
  9. ;//
  10. ;// History: dd-mmm-yy Author Comment
  11. ;// 21-Apr-95 BruceFo Added to ntshrui
  12. ;//
  13. ;// Notes:
  14. ;// A .mc file is compiled by the MC tool to generate a .h file and
  15. ;// a .rc (resource compiler script) file.
  16. ;//
  17. ;// Comments in .mc files start with a ";".
  18. ;// Comment lines are generated directly in the .h file, without
  19. ;// the leading ";"
  20. ;//
  21. ;// See mc.hlp for more help on .mc files and the MC tool.
  22. ;//
  23. ;//--------------------------------------------------------------------------
  24. ;#ifndef __MESSAGES_H__
  25. ;#define __MESSAGES_H__
  26. MessageIdTypedef=HRESULT
  27. SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
  28. CoError=0x2:STATUS_SEVERITY_COERROR
  29. )
  30. ;#ifdef FACILITY_NULL
  31. ;#undef FACILITY_NULL
  32. ;#endif
  33. ;#ifdef FACILITY_RPC
  34. ;#undef FACILITY_RPC
  35. ;#endif
  36. ;#ifdef FACILITY_DISPATCH
  37. ;#undef FACILITY_DISPATCH
  38. ;#endif
  39. ;#ifdef FACILITY_STORAGE
  40. ;#undef FACILITY_STORAGE
  41. ;#endif
  42. ;#ifdef FACILITY_ITF
  43. ;#undef FACILITY_ITF
  44. ;#endif
  45. ;#ifdef FACILITY_WIN32
  46. ;#undef FACILITY_WIN32
  47. ;#endif
  48. ;#ifdef FACILITY_WINDOWS
  49. ;#undef FACILITY_WINDOWS
  50. ;#endif
  51. FacilityNames=(Null=0x0:FACILITY_NULL
  52. Rpc=0x1:FACILITY_RPC
  53. Dispatch=0x2:FACILITY_DISPATCH
  54. Storage=0x3:FACILITY_STORAGE
  55. Interface=0x4:FACILITY_ITF
  56. Win32=0x7:FACILITY_WIN32
  57. Windows=0x8:FACILITY_WINDOWS
  58. )
  59. ;//--------------------------------------------------------------------------
  60. ;// Success messages
  61. ;//--------------------------------------------------------------------------
  62. MessageId=0x100 Facility=Null Severity=Success SymbolicName=MSG_STOPSHARECONNS
  63. Language=English
  64. There are %1!d! user(s) connected to %2. If you stop sharing %2, they will be disconnected. Do you want to continue?
  65. .
  66. MessageId= Facility=Null Severity=Success SymbolicName=MSG_STOPSHAREOPENS
  67. Language=English
  68. There are %1!d! file(s) open by %2!d! user(s) connected to %3. If you stop sharing %3, the files will close, which may cause these users to lose data. Do you want to continue?
  69. .
  70. MessageId= Facility=Null Severity=Success SymbolicName=MSG_RMDIRCONFIRM
  71. Language=English
  72. You are sharing %1 as %2. Others may be using files in this folder. If you delete the folder, it will no longer be shared. Are you sure you want to delete it?
  73. .
  74. MessageId= Facility=Null Severity=Success SymbolicName=MSG_MVDIRCONFIRM
  75. Language=English
  76. You are sharing %1 as %2. The folder will not be shared after you move or rename it. Are you sure you want to continue?
  77. .
  78. MessageId= Facility=Null Severity=Success SymbolicName=MSG_RESHARENAMECONFIRM
  79. Language=English
  80. You are already sharing %1 using the name %2. Do you want to share %3 using the name %2 instead?
  81. .
  82. MessageId= Facility=Null Severity=Success SymbolicName=MSG_MULTIDEL
  83. Language=English
  84. This folder is shared more than once. Are you sure you wish to remove all these shares?
  85. .
  86. ;//--------------------------------------------------------------------------
  87. ;// Error messages
  88. ;// BUGBUG: get rid of hex numbered error message!
  89. ;//--------------------------------------------------------------------------
  90. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_UNKNOWN
  91. Language=English
  92. Unknown error 0x%1!08lx!.
  93. .
  94. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_CANT_ADD_SHARE
  95. Language=English
  96. An error occurred while trying to share %1. %2
  97. The shared resource was not created at this time.
  98. .
  99. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_CANT_MODIFY_SHARE
  100. Language=English
  101. An error occurred while trying to modify share %1. %2
  102. .
  103. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_CANT_DEL_SHARE
  104. Language=English
  105. An error occurred while trying to delete share %1. %2
  106. .
  107. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_NOACLEDITOR
  108. Language=English
  109. Error invoking the security editor.
  110. .
  111. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_BlankShareName
  112. Language=English
  113. You must type a share name for this resource.
  114. .
  115. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_InvalidShareName
  116. Language=English
  117. The share name contains invalid characters.
  118. .
  119. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_InaccessibleByDos
  120. Language=English
  121. The share name %1 is not accessible from some MS-DOS workstations. Are you sure you want to use the share name?
  122. .
  123. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_AlreadyExistsSpecial
  124. Language=English
  125. The %1 share already exists.
  126. .
  127. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_AlreadyExists
  128. Language=English
  129. The share name %1 already exists for this resource. Please choose another share name.
  130. .
  131. MessageId= Facility=Null Severity=CoError SymbolicName=MSG_NOSECURITYONSPECIAL
  132. Language=English
  133. You may not specify permissions for ADMIN$, IPC$, and drive letter (X$) shares. Do you want to create the share anyway?
  134. .
  135. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_AdminShare
  136. Language=English
  137. This has been shared for administrative purposes. The permissions cannot be set.
  138. .
  139. MessageId= Facility=Null Severity=CoError SymbolicName=IERR_SpecialShare
  140. Language=English
  141. The share names ADMIN$ and IPC$ are reserved. To create an ADMIN$ or IPC$ share, get a context menu on the background of the window and choose New->Share. Type ADMIN$ or IPC$ as the share name and hit OK.
  142. .
  143. MessageId= Facility=Null Severity=CoError SymbolicName=MSG_DELETESPECIAL
  144. Language=English
  145. You are attempting to delete default share %1!s!. If you do so, it might not be possible to remotely administer this machine. Are you sure you wish to do this?
  146. .
  147. MessageId= Facility=Null Severity=CoError SymbolicName=MSG_ADDSPECIAL
  148. Language=English
  149. You may not specify paths for ADMIN$ and IPC$ shares.
  150. .
  151. MessageId= Facility=Null Severity=CoError SymbolicName=MSG_ADDSPECIAL2
  152. Language=English
  153. You may not rename a share to ADMIN$ or IPC$.
  154. .
  155. MessageId= Facility=Null Severity=CoError SymbolicName=MSG_NOWIZARD
  156. Language=English
  157. The Share Publishing Wizard could not be found or started.
  158. .
  159. MessageId= Facility=Null Severity=CoError SymbolicName=MSG_TEMPLATE_WITH_ON
  160. Language=English
  161. %2 on %1%0
  162. .
  163. ;#endif // __MESSAGES_H__