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.

2413 lines
56 KiB

  1. //
  2. // CDO message file
  3. //
  4. // IMPORTANT:
  5. // if you add a new string do it at the end of the existing strings for the given section (cdosys, cdosvr or cdoex)
  6. // see x5:191917 for more details
  7. //
  8. // Message categories
  9. //
  10. //
  11. // Values are 32 bit values layed out as follows:
  12. //
  13. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  14. // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  15. // +---+-+-+-----------------------+-------------------------------+
  16. // |Sev|C|R| Facility | Code |
  17. // +---+-+-+-----------------------+-------------------------------+
  18. //
  19. // where
  20. //
  21. // Sev - is the severity code
  22. //
  23. // 00 - Success
  24. // 01 - Informational
  25. // 10 - Warning
  26. // 11 - Error
  27. //
  28. // C - is the Customer code flag
  29. //
  30. // R - is a reserved bit
  31. //
  32. // Facility - is the facility code
  33. //
  34. // Code - is the facility's status code
  35. //
  36. //
  37. // Define the facility codes
  38. //
  39. //
  40. // Define the severity codes
  41. //
  42. //
  43. // MessageId: categoryHeader
  44. //
  45. // MessageText:
  46. //
  47. // Header
  48. //
  49. #define categoryHeader 0x00000001L
  50. //
  51. // MessageId: categoryUnused
  52. //
  53. // MessageText:
  54. //
  55. // None
  56. //
  57. #define categoryUnused 0x00000002L
  58. //
  59. // MessageId: categoryGeneral
  60. //
  61. // MessageText:
  62. //
  63. // General
  64. //
  65. #define categoryGeneral 0x00000003L
  66. //////////////////////////////////////////////////////////////////////////////
  67. // Error code ranges in FACILITY_ITF.
  68. // Different libraries sharing the CDO name
  69. // should not conflict in their error codes. Note that below 0x200 is
  70. // reserved by COM.
  71. // 0x200 through 0x5ff - CDOEX and CDOSYS error codes
  72. // 0x600 through 0x6ff - workflow error codes
  73. // 0x1000 through 0x1100
  74. // 0x4000 through 0x4100
  75. //
  76. //////////////////////////////////////////////////////////////////////////////
  77. // MessageId Ranges used by the localizer
  78. //
  79. // 1: 0x200 through 0x7ff, 0x4000 through 0x4fff: Library error messages, not localized.
  80. // 2: 0x2000 through 0x2fff: Server error messages, localized in server languages.
  81. // 3: 0x1000 through 0x1fff: Client text, localized in client languages.
  82. //
  83. //////////////////////////////////////////////////////////////////////////////
  84. // Error strings for IErrorInfo
  85. //
  86. // MessageId = 0x200 through 0x7ff or 0x4000 through 0x4fff. Not localized.
  87. //
  88. // 0x200 available - was CDO_E_FAIL
  89. //
  90. // MessageId: CDO_E_UNCAUGHT_EXCEPTION
  91. //
  92. // MessageText:
  93. //
  94. // Exception %1 was generated at address %2
  95. //
  96. #define CDO_E_UNCAUGHT_EXCEPTION 0x80040201L
  97. // 0x202 was CDO_E_NOT_BOUND, was renamed
  98. //
  99. // MessageId: CDO_E_NOT_OPENED
  100. //
  101. // MessageText:
  102. //
  103. // No data source has been opened for the object.
  104. //
  105. #define CDO_E_NOT_OPENED 0x80040202L
  106. //
  107. // MessageId: CDO_E_UNSUPPORTED_DATASOURCE
  108. //
  109. // MessageText:
  110. //
  111. // The object does not support this type of data source.
  112. //
  113. #define CDO_E_UNSUPPORTED_DATASOURCE 0x80040203L
  114. //
  115. // MessageId: CDO_E_INVALID_PROPERTYNAME
  116. //
  117. // MessageText:
  118. //
  119. // The object does not support the requested property name or namespace.
  120. //
  121. #define CDO_E_INVALID_PROPERTYNAME 0x80040204L
  122. //
  123. // MessageId: CDO_E_PROP_UNSUPPORTED
  124. //
  125. // MessageText:
  126. //
  127. // The object does not support the requested property.
  128. //
  129. #define CDO_E_PROP_UNSUPPORTED 0x80040205L
  130. // 0x206 - was CDO_E_NOT_INITIALIZED
  131. //
  132. // MessageId: CDO_E_INACTIVE
  133. //
  134. // MessageText:
  135. //
  136. // The object is not active. It may have been deleted or it may not have been opened.
  137. //
  138. #define CDO_E_INACTIVE 0x80040206L
  139. //
  140. // MessageId: CDO_E_NO_SUPPORT_FOR_OBJECTS
  141. //
  142. // MessageText:
  143. //
  144. // The object does not support storing persistent state information for objects.
  145. //
  146. #define CDO_E_NO_SUPPORT_FOR_OBJECTS 0x80040207L
  147. //
  148. // MessageId: CDO_E_NOT_AVAILABLE
  149. //
  150. // MessageText:
  151. //
  152. // The requested property or feature, while supported, is not available at this time or in this context.
  153. //
  154. #define CDO_E_NOT_AVAILABLE 0x80040208L
  155. //
  156. // MessageId: CDO_E_NO_DEFAULT_DROP_DIR
  157. //
  158. // MessageText:
  159. //
  160. // No default drop directory has been configured for this server.
  161. //
  162. #define CDO_E_NO_DEFAULT_DROP_DIR 0x80040209L
  163. //
  164. // MessageId: CDO_E_SMTP_SERVER_REQUIRED
  165. //
  166. // MessageText:
  167. //
  168. // The SMTP server name is required, and was not found in the configuration source.
  169. //
  170. #define CDO_E_SMTP_SERVER_REQUIRED 0x8004020AL
  171. //
  172. // MessageId: CDO_E_NNTP_SERVER_REQUIRED
  173. //
  174. // MessageText:
  175. //
  176. // The NNTP server name is required, and was not found in the configuration source.
  177. //
  178. #define CDO_E_NNTP_SERVER_REQUIRED 0x8004020BL
  179. //
  180. // MessageId: CDO_E_RECIPIENT_MISSING
  181. //
  182. // MessageText:
  183. //
  184. // At least one recipient is required, but none were found.
  185. //
  186. #define CDO_E_RECIPIENT_MISSING 0x8004020CL
  187. //
  188. // MessageId: CDO_E_FROM_MISSING
  189. //
  190. // MessageText:
  191. //
  192. // At least one of the From or Sender fields is required, and neither was found.
  193. //
  194. #define CDO_E_FROM_MISSING 0x8004020DL
  195. //
  196. // MessageId: CDO_E_SENDER_REJECTED
  197. //
  198. // MessageText:
  199. //
  200. // The server rejected the sender address. The server response was: %1
  201. //
  202. #define CDO_E_SENDER_REJECTED 0x8004020EL
  203. //
  204. // MessageId: CDO_E_RECIPIENTS_REJECTED
  205. //
  206. // MessageText:
  207. //
  208. // The server rejected one or more recipient addresses. The server response was: %1
  209. //
  210. #define CDO_E_RECIPIENTS_REJECTED 0x8004020FL
  211. //
  212. // MessageId: CDO_E_NNTP_POST_FAILED
  213. //
  214. // MessageText:
  215. //
  216. // The message could not be posted to the NNTP server. The transport error code was %2. The server response was %1
  217. //
  218. #define CDO_E_NNTP_POST_FAILED 0x80040210L
  219. //
  220. // MessageId: CDO_E_SMTP_SEND_FAILED
  221. //
  222. // MessageText:
  223. //
  224. // The message could not be sent to the SMTP server. The transport error code was %2. The server response was %1
  225. //
  226. #define CDO_E_SMTP_SEND_FAILED 0x80040211L
  227. //
  228. // MessageId: CDO_E_CONNECTION_DROPPED
  229. //
  230. // MessageText:
  231. //
  232. // The transport lost its connection to the server.
  233. //
  234. #define CDO_E_CONNECTION_DROPPED 0x80040212L
  235. //
  236. // MessageId: CDO_E_FAILED_TO_CONNECT
  237. //
  238. // MessageText:
  239. //
  240. // The transport failed to connect to the server.
  241. //
  242. #define CDO_E_FAILED_TO_CONNECT 0x80040213L
  243. //
  244. // MessageId: CDO_E_INVALID_POST
  245. //
  246. // MessageText:
  247. //
  248. // The Subject, From, and Newsgroup fields are all required, and one or more was not found.
  249. //
  250. #define CDO_E_INVALID_POST 0x80040214L
  251. //0x215 was CDO_E_DELETE_FAILED
  252. //
  253. // MessageId: CDO_E_AUTHENTICATION_FAILURE
  254. //
  255. // MessageText:
  256. //
  257. // The server rejected the logon attempt due to authentication failure. The server response was: %1
  258. //
  259. #define CDO_E_AUTHENTICATION_FAILURE 0x80040215L
  260. //
  261. // MessageId: CDO_E_INVALID_CONTENT_TYPE
  262. //
  263. // MessageText:
  264. //
  265. // The content type was not valid in this context. For example, the root of an MHTML message must be an HTML document.
  266. //
  267. #define CDO_E_INVALID_CONTENT_TYPE 0x80040216L
  268. //
  269. // MessageId: CDO_E_LOGON_FAILURE
  270. //
  271. // MessageText:
  272. //
  273. // The transport was unable to log on to the server.
  274. //
  275. #define CDO_E_LOGON_FAILURE 0x80040217L
  276. //
  277. // MessageId: CDO_E_HTTP_NOT_FOUND
  278. //
  279. // MessageText:
  280. //
  281. // The requested resource could not be found. The server response was: %1.
  282. //
  283. #define CDO_E_HTTP_NOT_FOUND 0x80040218L
  284. //
  285. // MessageId: CDO_E_HTTP_FORBIDDEN
  286. //
  287. // MessageText:
  288. //
  289. // Access to the requested resource is denied. The server response was: %1.
  290. //
  291. #define CDO_E_HTTP_FORBIDDEN 0x80040219L
  292. //
  293. // MessageId: CDO_E_HTTP_FAILED
  294. //
  295. // MessageText:
  296. //
  297. // The HTTP request failed. The server response was: %1.
  298. //
  299. #define CDO_E_HTTP_FAILED 0x8004021AL
  300. //
  301. // MessageId: CDO_E_MULTIPART_NO_DATA
  302. //
  303. // MessageText:
  304. //
  305. // This is a multipart body part. It has no content other than the body parts contained within it.
  306. //
  307. #define CDO_E_MULTIPART_NO_DATA 0x8004021BL
  308. // renamed, was CDO_E_INVALID_ENCODING_FOR_COMPOSITE
  309. //
  310. // MessageId: CDO_E_INVALID_ENCODING_FOR_MULTIPART
  311. //
  312. // MessageText:
  313. //
  314. // Multipart body parts must be encoded as 7bit, 8bit, or binary.
  315. //
  316. #define CDO_E_INVALID_ENCODING_FOR_MULTIPART 0x8004021CL
  317. // 0x21d was CDO_E_PATHTOOLONG
  318. //
  319. // MessageId: CDO_E_UNSAFE_OPERATION
  320. //
  321. // MessageText:
  322. //
  323. // The requested operation is not allowed in secure mode.
  324. //
  325. #define CDO_E_UNSAFE_OPERATION 0x8004021DL
  326. //
  327. // MessageId: CDO_E_PROP_NOT_FOUND
  328. //
  329. // MessageText:
  330. //
  331. // The requested property was not found.
  332. //
  333. #define CDO_E_PROP_NOT_FOUND 0x8004021EL
  334. // 0x21f available, was CDO_E_UNSUPPORTED_PROTOCOL
  335. //
  336. // MessageId: CDO_E_INVALID_SEND_OPTION
  337. //
  338. // MessageText:
  339. //
  340. // The "SendUsing" configuration value is invalid.
  341. //
  342. #define CDO_E_INVALID_SEND_OPTION 0x80040220L
  343. //
  344. // MessageId: CDO_E_INVALID_POST_OPTION
  345. //
  346. // MessageText:
  347. //
  348. // The "PostUsing" configuration value is invalid.
  349. //
  350. #define CDO_E_INVALID_POST_OPTION 0x80040221L
  351. //
  352. // MessageId: CDO_E_NO_PICKUP_DIR
  353. //
  354. // MessageText:
  355. //
  356. // The pickup directory path is required and was not specified.
  357. //
  358. #define CDO_E_NO_PICKUP_DIR 0x80040222L
  359. //
  360. // MessageId: CDO_E_NOT_ALL_DELETED
  361. //
  362. // MessageText:
  363. //
  364. // One or more messages could not be deleted.
  365. //
  366. #define CDO_E_NOT_ALL_DELETED 0x80040223L
  367. //
  368. // MessageId: CDO_E_NO_METHOD
  369. //
  370. // MessageText:
  371. //
  372. // The requested operation is not available on the underlying object.
  373. //
  374. #define CDO_E_NO_METHOD 0x80040224L
  375. //0x225 available, was CDO_E_BYTEARRAY_REQUIRED
  376. // 0x226 available, was CDO_E_BSTR_REQUIRED
  377. //
  378. // MessageId: CDO_E_PROP_READONLY
  379. //
  380. // MessageText:
  381. //
  382. // The property is read-only.
  383. //
  384. #define CDO_E_PROP_READONLY 0x80040227L
  385. //
  386. // MessageId: CDO_E_PROP_CANNOT_DELETE
  387. //
  388. // MessageText:
  389. //
  390. // The property cannot be deleted.
  391. //
  392. #define CDO_E_PROP_CANNOT_DELETE 0x80040228L
  393. //
  394. // MessageId: CDO_E_BAD_DATA
  395. //
  396. // MessageText:
  397. //
  398. // Data written to the object are inconsistent or invalid.
  399. //
  400. #define CDO_E_BAD_DATA 0x80040229L
  401. //
  402. // MessageId: CDO_E_PROP_NONHEADER
  403. //
  404. // MessageText:
  405. //
  406. // The requested property is not in the mail header namespace.
  407. //
  408. #define CDO_E_PROP_NONHEADER 0x8004022AL
  409. //
  410. // MessageId: CDO_E_INVALID_CHARSET
  411. //
  412. // MessageText:
  413. //
  414. // The requested character set is not installed on the computer.
  415. //
  416. #define CDO_E_INVALID_CHARSET 0x8004022BL
  417. //
  418. // MessageId: CDO_E_ADOSTREAM_NOT_BOUND
  419. //
  420. // MessageText:
  421. //
  422. // The ADO stream has not been opened.
  423. //
  424. #define CDO_E_ADOSTREAM_NOT_BOUND 0x8004022CL
  425. //
  426. // MessageId: CDO_E_CONTENTPROPXML_NOT_FOUND
  427. //
  428. // MessageText:
  429. //
  430. // The content properties are missing.
  431. //
  432. #define CDO_E_CONTENTPROPXML_NOT_FOUND 0x8004022DL
  433. //
  434. // MessageId: CDO_E_CONTENTPROPXML_WRONG_CHARSET
  435. //
  436. // MessageText:
  437. //
  438. // Content properties XML must be encoded using UTF-8.
  439. //
  440. #define CDO_E_CONTENTPROPXML_WRONG_CHARSET 0x8004022EL
  441. //
  442. // MessageId: CDO_E_CONTENTPROPXML_PARSE_FAILED
  443. //
  444. // MessageText:
  445. //
  446. // Failed to parse content properties XML.
  447. //
  448. #define CDO_E_CONTENTPROPXML_PARSE_FAILED 0x8004022FL
  449. //
  450. // MessageId: CDO_E_CONTENTPROPXML_CONVERT_FAILED
  451. //
  452. // MessageText:
  453. //
  454. // Failed to convert a property from XML to a requested type.
  455. //
  456. #define CDO_E_CONTENTPROPXML_CONVERT_FAILED 0x80040230L
  457. //
  458. // MessageId: CDO_E_NO_DIRECTORIES_SPECIFIED
  459. //
  460. // MessageText:
  461. //
  462. // No directories were specified for resolution.
  463. //
  464. #define CDO_E_NO_DIRECTORIES_SPECIFIED 0x80040231L
  465. //
  466. // MessageId: CDO_E_DIRECTORIES_UNREACHABLE
  467. //
  468. // MessageText:
  469. //
  470. // Failed to resolve against one or more of the specified directories.
  471. //
  472. #define CDO_E_DIRECTORIES_UNREACHABLE 0x80040232L
  473. //
  474. // MessageId: CDO_E_BAD_SENDER
  475. //
  476. // MessageText:
  477. //
  478. // Could not find the Sender's mailbox.
  479. //
  480. #define CDO_E_BAD_SENDER 0x80040233L
  481. //
  482. // MessageId: CDO_E_SELF_BINDING
  483. //
  484. // MessageText:
  485. //
  486. // Binding to self is not allowed.
  487. //
  488. #define CDO_E_SELF_BINDING 0x80040234L
  489. //
  490. // MessageId: CDO_E_BAD_ATTENDEE_DATA
  491. //
  492. // MessageText:
  493. //
  494. // Data of the Attendees in the object are inconsistent or invalid.
  495. //
  496. #define CDO_E_BAD_ATTENDEE_DATA 0x80040235L
  497. //
  498. // MessageId: CDO_E_ROLE_NOMORE_AVAILABLE
  499. //
  500. // MessageText:
  501. //
  502. // No more roles of the desired type are available - maxed out.
  503. //
  504. #define CDO_E_ROLE_NOMORE_AVAILABLE 0x80040236L
  505. #ifdef CDOTASKS
  506. //
  507. // MessageId: CDO_E_BAD_TASKTYPE_ONASSIGN
  508. //
  509. // MessageText:
  510. //
  511. // The task with its current task type does not permit a call on Assign. Please call CreateUnassignedCopy instead.
  512. //
  513. #define CDO_E_BAD_TASKTYPE_ONASSIGN 0x80040237L
  514. //
  515. // MessageId: CDO_E_NOT_ASSIGNEDTO_USER
  516. //
  517. // MessageText:
  518. //
  519. // The task is not assigned to the current user.
  520. //
  521. #define CDO_E_NOT_ASSIGNEDTO_USER 0x80040238L
  522. #endif
  523. //
  524. // MessageId: CDO_E_OUTOFDATE
  525. //
  526. // MessageText:
  527. //
  528. // The item being accessed or manipulated is out of date.
  529. //
  530. #define CDO_E_OUTOFDATE 0x80040239L
  531. //////////////////////////////////////////////////////////////////////////////
  532. // parameter validation error messages
  533. //
  534. // MessageId: CDO_E_ARGUMENT1
  535. //
  536. // MessageText:
  537. //
  538. // The first argument is invalid
  539. //
  540. #define CDO_E_ARGUMENT1 0x80044000L
  541. //
  542. // MessageId: CDO_E_ARGUMENT2
  543. //
  544. // MessageText:
  545. //
  546. // The second argument is invalid
  547. //
  548. #define CDO_E_ARGUMENT2 0x80044001L
  549. //
  550. // MessageId: CDO_E_ARGUMENT3
  551. //
  552. // MessageText:
  553. //
  554. // The third argument is invalid
  555. //
  556. #define CDO_E_ARGUMENT3 0x80044002L
  557. //
  558. // MessageId: CDO_E_ARGUMENT4
  559. //
  560. // MessageText:
  561. //
  562. // The fourth argument is invalid
  563. //
  564. #define CDO_E_ARGUMENT4 0x80044003L
  565. //
  566. // MessageId: CDO_E_ARGUMENT5
  567. //
  568. // MessageText:
  569. //
  570. // The fifth argument is invalid
  571. //
  572. #define CDO_E_ARGUMENT5 0x80044004L
  573. //////////////////////////////////////////////////////////////////////////////
  574. // Errors returned by MimeOle
  575. //
  576. // These are defined here to provide extended error info text descriptions.
  577. // CDO should never explicitly return any of these errors; they may be passed
  578. // through from MimeOle
  579. // I expect there are numerous places where these errors could still slip through:
  580. // MIME_E_NOT_FOUND
  581. //
  582. // MessageId: CDO_E_NOT_FOUND
  583. //
  584. // MessageText:
  585. //
  586. // The requested body part was not found in this message.
  587. //
  588. #define CDO_E_NOT_FOUND 0x800CCE05L
  589. // MIME_E_INVALID_ENCODINGTYPE
  590. // Returned when MimeOLE tries to BinHex encode. Can also be returned if an invalid encoding
  591. // is specified, but CDO should protect from these cases.
  592. //
  593. // Also CDO returns this error when a client sets an invalid encoding
  594. //
  595. // MessageId: CDO_E_INVALID_ENCODING_TYPE
  596. //
  597. // MessageText:
  598. //
  599. // The content encoding type is invalid.
  600. //
  601. #define CDO_E_INVALID_ENCODING_TYPE 0x800CCE1DL
  602. ///////////////////////////////////////
  603. // Headers and folder names
  604. //
  605. // MessageId = 0x1000 through 0x1fff, localized in client languages.
  606. ///////////////////////////////////////
  607. //
  608. // MessageId: IDS_ORIGINAL_MESSAGE
  609. //
  610. // MessageText:
  611. //
  612. // -----Original Message-----%0
  613. //
  614. #define IDS_ORIGINAL_MESSAGE 0x00011000L
  615. //
  616. // MessageId: IDS_FROM
  617. //
  618. // MessageText:
  619. //
  620. // From:%0
  621. //
  622. #define IDS_FROM 0x00011001L
  623. //
  624. // MessageId: IDS_SENT
  625. //
  626. // MessageText:
  627. //
  628. // Sent:%0
  629. //
  630. #define IDS_SENT 0x00011002L
  631. //
  632. // MessageId: IDS_POSTED_AT
  633. //
  634. // MessageText:
  635. //
  636. // Posted At:%0
  637. //
  638. #define IDS_POSTED_AT 0x00011003L
  639. //
  640. // MessageId: IDS_TO
  641. //
  642. // MessageText:
  643. //
  644. // To:%0
  645. //
  646. #define IDS_TO 0x00011004L
  647. //
  648. // MessageId: IDS_CC
  649. //
  650. // MessageText:
  651. //
  652. // Cc:%0
  653. //
  654. #define IDS_CC 0x00011005L
  655. //
  656. // MessageId: IDS_POSTED_TO
  657. //
  658. // MessageText:
  659. //
  660. // Posted To:%0
  661. //
  662. #define IDS_POSTED_TO 0x00011006L
  663. //
  664. // MessageId: IDS_CONVERSATION
  665. //
  666. // MessageText:
  667. //
  668. // Conversation:%0
  669. //
  670. #define IDS_CONVERSATION 0x00011007L
  671. //
  672. // MessageId: IDS_SUBJECT
  673. //
  674. // MessageText:
  675. //
  676. // Subject:%0
  677. //
  678. #define IDS_SUBJECT 0x00011008L
  679. //
  680. // MessageId: IDS_IMPORTANCE
  681. //
  682. // MessageText:
  683. //
  684. // Importance:%0
  685. //
  686. #define IDS_IMPORTANCE 0x00011009L
  687. //
  688. // MessageId: IDS_ON_BEHALF_OF
  689. //
  690. // MessageText:
  691. //
  692. // on behalf of%0
  693. //
  694. #define IDS_ON_BEHALF_OF 0x0001100AL
  695. //
  696. // MessageId: IDS_FW
  697. //
  698. // MessageText:
  699. //
  700. // FW:%0
  701. //
  702. #define IDS_FW 0x0001100BL
  703. //
  704. // MessageId: IDS_RE
  705. //
  706. // MessageText:
  707. //
  708. // RE:%0
  709. //
  710. #define IDS_RE 0x0001100CL
  711. //
  712. // MessageId: IDS_CODEPAGE
  713. //
  714. // MessageText:
  715. //
  716. // 1252%0
  717. //
  718. #define IDS_CODEPAGE 0x0001100DL
  719. #ifdef CDOSVR
  720. //
  721. // MessageId: IDS_CalendarFolder
  722. //
  723. // MessageText:
  724. //
  725. // Calendar%0
  726. //
  727. #define IDS_CalendarFolder 0x0001100EL
  728. //
  729. // MessageId: IDS_ContactsFolder
  730. //
  731. // MessageText:
  732. //
  733. // Contacts%0
  734. //
  735. #define IDS_ContactsFolder 0x0001100FL
  736. //
  737. // MessageId: IDS_DraftsFolder
  738. //
  739. // MessageText:
  740. //
  741. // Drafts%0
  742. //
  743. #define IDS_DraftsFolder 0x00011010L
  744. //
  745. // MessageId: IDS_JournalFolder
  746. //
  747. // MessageText:
  748. //
  749. // Journal%0
  750. //
  751. #define IDS_JournalFolder 0x00011011L
  752. //
  753. // MessageId: IDS_NotesFolder
  754. //
  755. // MessageText:
  756. //
  757. // Notes%0
  758. //
  759. #define IDS_NotesFolder 0x00011012L
  760. //
  761. // MessageId: IDS_TasksFolder
  762. //
  763. // MessageText:
  764. //
  765. // Tasks%0
  766. //
  767. #define IDS_TasksFolder 0x00011013L
  768. #endif
  769. //
  770. // MessageId: IDS_NewFolder
  771. //
  772. // MessageText:
  773. //
  774. // New Folder%0
  775. //
  776. #define IDS_NewFolder 0x00011014L
  777. //
  778. // MessageId: IDS_Location
  779. //
  780. // MessageText:
  781. //
  782. // Location:%0
  783. //
  784. #define IDS_Location 0x00011015L
  785. //
  786. // MessageId: IDS_StartTime
  787. //
  788. // MessageText:
  789. //
  790. // Start Time:%0
  791. //
  792. #define IDS_StartTime 0x00011016L
  793. //
  794. // MessageId: IDS_EndTime
  795. //
  796. // MessageText:
  797. //
  798. // End Time:%0
  799. //
  800. #define IDS_EndTime 0x00011017L
  801. //
  802. // MessageId: IDS_TimeZone
  803. //
  804. // MessageText:
  805. //
  806. // Time Zone:%0
  807. //
  808. #define IDS_TimeZone 0x00011018L
  809. //
  810. // MessageId: IDS_LocalTime
  811. //
  812. // MessageText:
  813. //
  814. // Local time%0
  815. //
  816. #define IDS_LocalTime 0x00011019L
  817. //
  818. // MessageId: IDS_Organizer
  819. //
  820. // MessageText:
  821. //
  822. // Organizer:%0
  823. //
  824. #define IDS_Organizer 0x0001101AL
  825. //
  826. // MessageId: IDS_ApptType
  827. //
  828. // MessageText:
  829. //
  830. // Type:%0
  831. //
  832. #define IDS_ApptType 0x0001101BL
  833. //
  834. // MessageId: IDS_SingleAppt
  835. //
  836. // MessageText:
  837. //
  838. // Single Appointment%0
  839. //
  840. #define IDS_SingleAppt 0x0001101CL
  841. //
  842. // MessageId: IDS_SingleMtg
  843. //
  844. // MessageText:
  845. //
  846. // Single Meeting%0
  847. //
  848. #define IDS_SingleMtg 0x0001101DL
  849. //
  850. // MessageId: IDS_RecurAppt
  851. //
  852. // MessageText:
  853. //
  854. // Recurring Appointment%0
  855. //
  856. #define IDS_RecurAppt 0x0001101EL
  857. //
  858. // MessageId: IDS_RecurMtg
  859. //
  860. // MessageText:
  861. //
  862. // Recurring Meeting%0
  863. //
  864. #define IDS_RecurMtg 0x0001101FL
  865. ///////////////////////////////////////
  866. // time zones
  867. //
  868. // MessageId = 0x1100 through 0x11ff
  869. ///////////////////////////////////////
  870. //
  871. // MessageId: IDS_Universal
  872. //
  873. // MessageText:
  874. //
  875. // Universal Coordinated Time%0
  876. //
  877. #define IDS_Universal 0x00011100L
  878. //
  879. // MessageId: IDS_Greenwich
  880. //
  881. // MessageText:
  882. //
  883. // (GMT) Greenwich Mean Time : Dublin, Edinburgh, Lisbon, London%0
  884. //
  885. #define IDS_Greenwich 0x00011101L
  886. //
  887. // MessageId: IDS_Sarajevo
  888. //
  889. // MessageText:
  890. //
  891. // (GMT+01:00) Sarajevo, Skopje, Sofija, Vilnius, Warsaw, Zagreb%0
  892. //
  893. #define IDS_Sarajevo 0x00011102L
  894. //
  895. // MessageId: IDS_Paris
  896. //
  897. // MessageText:
  898. //
  899. // (GMT+01:00) Brussels, Copenhagen, Madrid, Paris%0
  900. //
  901. #define IDS_Paris 0x00011103L
  902. //
  903. // MessageId: IDS_Berlin
  904. //
  905. // MessageText:
  906. //
  907. // (GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna%0
  908. //
  909. #define IDS_Berlin 0x00011104L
  910. //
  911. // MessageId: IDS_EasternEurope
  912. //
  913. // MessageText:
  914. //
  915. // (GMT+02:00) Bucharest%0
  916. //
  917. #define IDS_EasternEurope 0x00011105L
  918. //
  919. // MessageId: IDS_Prague
  920. //
  921. // MessageText:
  922. //
  923. // (GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague%0
  924. //
  925. #define IDS_Prague 0x00011106L
  926. //
  927. // MessageId: IDS_Athens
  928. //
  929. // MessageText:
  930. //
  931. // (GMT+02:00) Athens, Istanbul, Minsk%0
  932. //
  933. #define IDS_Athens 0x00011107L
  934. //
  935. // MessageId: IDS_Brasilia
  936. //
  937. // MessageText:
  938. //
  939. // (GMT-03:00) Brasilia%0
  940. //
  941. #define IDS_Brasilia 0x00011108L
  942. //
  943. // MessageId: IDS_Atlantic
  944. //
  945. // MessageText:
  946. //
  947. // (GMT-04:00) Atlantic Time (Canada)%0
  948. //
  949. #define IDS_Atlantic 0x00011109L
  950. //
  951. // MessageId: IDS_Eastern
  952. //
  953. // MessageText:
  954. //
  955. // (GMT-05:00) Eastern Time (US & Canada)%0
  956. //
  957. #define IDS_Eastern 0x0001110AL
  958. //
  959. // MessageId: IDS_Central
  960. //
  961. // MessageText:
  962. //
  963. // (GMT-06:00) Central Time (US & Canada)%0
  964. //
  965. #define IDS_Central 0x0001110BL
  966. //
  967. // MessageId: IDS_Mountain
  968. //
  969. // MessageText:
  970. //
  971. // (GMT-07:00) Mountain Time (US & Canada)%0
  972. //
  973. #define IDS_Mountain 0x0001110CL
  974. //
  975. // MessageId: IDS_Pacific
  976. //
  977. // MessageText:
  978. //
  979. // (GMT-08:00) Pacific Time (US & Canada); Tijuana%0
  980. //
  981. #define IDS_Pacific 0x0001110DL
  982. //
  983. // MessageId: IDS_Alaska
  984. //
  985. // MessageText:
  986. //
  987. // (GMT-09:00) Alaska%0
  988. //
  989. #define IDS_Alaska 0x0001110EL
  990. //
  991. // MessageId: IDS_Hawaii
  992. //
  993. // MessageText:
  994. //
  995. // (GMT-10:00) Hawaii%0
  996. //
  997. #define IDS_Hawaii 0x0001110FL
  998. //
  999. // MessageId: IDS_Midway
  1000. //
  1001. // MessageText:
  1002. //
  1003. // (GMT-11:00) Midway Island, Samoa%0
  1004. //
  1005. #define IDS_Midway 0x00011110L
  1006. //
  1007. // MessageId: IDS_Wellington
  1008. //
  1009. // MessageText:
  1010. //
  1011. // (GMT+12:00) Auckland, Wellington%0
  1012. //
  1013. #define IDS_Wellington 0x00011111L
  1014. //
  1015. // MessageId: IDS_Brisbane
  1016. //
  1017. // MessageText:
  1018. //
  1019. // (GMT+10:00) Brisbane%0
  1020. //
  1021. #define IDS_Brisbane 0x00011112L
  1022. //
  1023. // MessageId: IDS_Adelaide
  1024. //
  1025. // MessageText:
  1026. //
  1027. // (GMT+09:30) Adelaide%0
  1028. //
  1029. #define IDS_Adelaide 0x00011113L
  1030. //
  1031. // MessageId: IDS_Tokyo
  1032. //
  1033. // MessageText:
  1034. //
  1035. // (GMT+09:00) Osaka, Sapporo, Tokyo%0
  1036. //
  1037. #define IDS_Tokyo 0x00011114L
  1038. //
  1039. // MessageId: IDS_Singapore
  1040. //
  1041. // MessageText:
  1042. //
  1043. // (GMT+08:00) Kuala Lumpur, Singapore%0
  1044. //
  1045. #define IDS_Singapore 0x00011115L
  1046. //
  1047. // MessageId: IDS_Bangkok
  1048. //
  1049. // MessageText:
  1050. //
  1051. // (GMT+07:00) Bangkok, Hanoi, Jakarta%0
  1052. //
  1053. #define IDS_Bangkok 0x00011116L
  1054. //
  1055. // MessageId: IDS_Bombay
  1056. //
  1057. // MessageText:
  1058. //
  1059. // (GMT+05:30) Kolkata, Chennai, Mumbai, New Delhi%0
  1060. //
  1061. #define IDS_Bombay 0x00011117L
  1062. //
  1063. // MessageId: IDS_AbuDhabi
  1064. //
  1065. // MessageText:
  1066. //
  1067. // (GMT+04:00) Abu Dhabi, Muscat%0
  1068. //
  1069. #define IDS_AbuDhabi 0x00011118L
  1070. //
  1071. // MessageId: IDS_Tehran
  1072. //
  1073. // MessageText:
  1074. //
  1075. // (GMT+03:30) Tehran%0
  1076. //
  1077. #define IDS_Tehran 0x00011119L
  1078. //
  1079. // MessageId: IDS_Baghdad
  1080. //
  1081. // MessageText:
  1082. //
  1083. // (GMT+03:00) Baghdad%0
  1084. //
  1085. #define IDS_Baghdad 0x0001111AL
  1086. //
  1087. // MessageId: IDS_Israel
  1088. //
  1089. // MessageText:
  1090. //
  1091. // (GMT+02:00) Jerusalem%0
  1092. //
  1093. #define IDS_Israel 0x0001111BL
  1094. //
  1095. // MessageId: IDS_Newfoundland
  1096. //
  1097. // MessageText:
  1098. //
  1099. // (GMT-03:30) Newfoundland%0
  1100. //
  1101. #define IDS_Newfoundland 0x0001111CL
  1102. //
  1103. // MessageId: IDS_Azores
  1104. //
  1105. // MessageText:
  1106. //
  1107. // (GMT-01:00) Azores%0
  1108. //
  1109. #define IDS_Azores 0x0001111DL
  1110. //
  1111. // MessageId: IDS_MidAtlantic
  1112. //
  1113. // MessageText:
  1114. //
  1115. // (GMT-02:00) Mid-Atlantic%0
  1116. //
  1117. #define IDS_MidAtlantic 0x0001111EL
  1118. //
  1119. // MessageId: IDS_Monrovia
  1120. //
  1121. // MessageText:
  1122. //
  1123. // (GMT) Casablanca, Monrovia%0
  1124. //
  1125. #define IDS_Monrovia 0x0001111FL
  1126. //
  1127. // MessageId: IDS_BuenosAires
  1128. //
  1129. // MessageText:
  1130. //
  1131. // (GMT-03:00) Buenos Aires, Georgetown%0
  1132. //
  1133. #define IDS_BuenosAires 0x00011120L
  1134. //
  1135. // MessageId: IDS_Caracas
  1136. //
  1137. // MessageText:
  1138. //
  1139. // (GMT-04:00) Caracas, La Paz%0
  1140. //
  1141. #define IDS_Caracas 0x00011121L
  1142. //
  1143. // MessageId: IDS_Indiana
  1144. //
  1145. // MessageText:
  1146. //
  1147. // (GMT-05:00) Indiana (East)%0
  1148. //
  1149. #define IDS_Indiana 0x00011122L
  1150. //
  1151. // MessageId: IDS_Bogota
  1152. //
  1153. // MessageText:
  1154. //
  1155. // (GMT-05:00) Bogota, Lima, Quito%0
  1156. //
  1157. #define IDS_Bogota 0x00011123L
  1158. //
  1159. // MessageId: IDS_Saskatchewan
  1160. //
  1161. // MessageText:
  1162. //
  1163. // (GMT-06:00) Saskatchewan%0
  1164. //
  1165. #define IDS_Saskatchewan 0x00011124L
  1166. //
  1167. // MessageId: IDS_Mexico
  1168. //
  1169. // MessageText:
  1170. //
  1171. // (GMT-06:00) Mexico City%0
  1172. //
  1173. #define IDS_Mexico 0x00011125L
  1174. //
  1175. // MessageId: IDS_Arizona
  1176. //
  1177. // MessageText:
  1178. //
  1179. // (GMT-07:00) Arizona%0
  1180. //
  1181. #define IDS_Arizona 0x00011126L
  1182. //
  1183. // MessageId: IDS_Eniwetok
  1184. //
  1185. // MessageText:
  1186. //
  1187. // (GMT-12:00) Eniwetok, Kwajalein%0
  1188. //
  1189. #define IDS_Eniwetok 0x00011127L
  1190. //
  1191. // MessageId: IDS_Fiji
  1192. //
  1193. // MessageText:
  1194. //
  1195. // (GMT+12:00) Fiji Is., Kamchatka, Marshall Is.%0
  1196. //
  1197. #define IDS_Fiji 0x00011128L
  1198. //
  1199. // MessageId: IDS_Magadan
  1200. //
  1201. // MessageText:
  1202. //
  1203. // (GMT+11:00) Magadan, Solomon Is., New Caledonia%0
  1204. //
  1205. #define IDS_Magadan 0x00011129L
  1206. //
  1207. // MessageId: IDS_Hobart
  1208. //
  1209. // MessageText:
  1210. //
  1211. // (GMT+10:00) Hobart%0
  1212. //
  1213. #define IDS_Hobart 0x0001112AL
  1214. //
  1215. // MessageId: IDS_Guam
  1216. //
  1217. // MessageText:
  1218. //
  1219. // (GMT+10:00) Guam, Port Moresby%0
  1220. //
  1221. #define IDS_Guam 0x0001112BL
  1222. //
  1223. // MessageId: IDS_Darwin
  1224. //
  1225. // MessageText:
  1226. //
  1227. // (GMT+09:30) Darwin%0
  1228. //
  1229. #define IDS_Darwin 0x0001112CL
  1230. //
  1231. // MessageId: IDS_Beijing
  1232. //
  1233. // MessageText:
  1234. //
  1235. // (GMT+08:00) Beijing, Chongqing, Hong Kong SAR, Urumqi%0
  1236. //
  1237. #define IDS_Beijing 0x0001112DL
  1238. //
  1239. // MessageId: IDS_Almaty
  1240. //
  1241. // MessageText:
  1242. //
  1243. // (GMT+06:00) Almaty, Novosibirsk%0
  1244. //
  1245. #define IDS_Almaty 0x0001112EL
  1246. //
  1247. // MessageId: IDS_Islamabad
  1248. //
  1249. // MessageText:
  1250. //
  1251. // (GMT+05:00) Islamabad, Karachi, Tashkent%0
  1252. //
  1253. #define IDS_Islamabad 0x0001112FL
  1254. //
  1255. // MessageId: IDS_Kabul
  1256. //
  1257. // MessageText:
  1258. //
  1259. // (GMT+04:30) Kabul%0
  1260. //
  1261. #define IDS_Kabul 0x00011130L
  1262. //
  1263. // MessageId: IDS_Cairo
  1264. //
  1265. // MessageText:
  1266. //
  1267. // (GMT+02:00) Cairo%0
  1268. //
  1269. #define IDS_Cairo 0x00011131L
  1270. //
  1271. // MessageId: IDS_Harare
  1272. //
  1273. // MessageText:
  1274. //
  1275. // (GMT+02:00) Harare, Pretoria%0
  1276. //
  1277. #define IDS_Harare 0x00011132L
  1278. //
  1279. // MessageId: IDS_Moscow
  1280. //
  1281. // MessageText:
  1282. //
  1283. // (GMT+03:00) Moscow, St. Petersburg, Volgograd%0
  1284. //
  1285. #define IDS_Moscow 0x00011133L
  1286. //
  1287. // MessageId: IDS_CapeVerde
  1288. //
  1289. // MessageText:
  1290. //
  1291. // (GMT-01:00) Cape Verde Is.%0
  1292. //
  1293. #define IDS_CapeVerde 0x00011134L
  1294. //
  1295. // MessageId: IDS_Caucasus
  1296. //
  1297. // MessageText:
  1298. //
  1299. // (GMT+04:00) Baku, Tbilisi, Yerevan%0
  1300. //
  1301. #define IDS_Caucasus 0x00011135L
  1302. //
  1303. // MessageId: IDS_CentralAmerica
  1304. //
  1305. // MessageText:
  1306. //
  1307. // (GMT-06:00) Central America%0
  1308. //
  1309. #define IDS_CentralAmerica 0x00011136L
  1310. //
  1311. // MessageId: IDS_EastAfrica
  1312. //
  1313. // MessageText:
  1314. //
  1315. // (GMT+03:00) Nairobi%0
  1316. //
  1317. #define IDS_EastAfrica 0x00011137L
  1318. //
  1319. // MessageId: IDS_Melbourne
  1320. //
  1321. // MessageText:
  1322. //
  1323. // (GMT+10:00) Canberra, Melbourne, Sydney%0
  1324. //
  1325. #define IDS_Melbourne 0x00011138L
  1326. //
  1327. // MessageId: IDS_Ekaterinburg
  1328. //
  1329. // MessageText:
  1330. //
  1331. // (GMT+05:00) Ekaterinburg%0
  1332. //
  1333. #define IDS_Ekaterinburg 0x00011139L
  1334. //
  1335. // MessageId: IDS_Helsinki
  1336. //
  1337. // MessageText:
  1338. //
  1339. // (GMT+02:00) Helsinki, Riga, Tallinn%0
  1340. //
  1341. #define IDS_Helsinki 0x0001113AL
  1342. //
  1343. // MessageId: IDS_Greenland
  1344. //
  1345. // MessageText:
  1346. //
  1347. // (GMT-03:00) Greenland%0
  1348. //
  1349. #define IDS_Greenland 0x0001113BL
  1350. //
  1351. // MessageId: IDS_Rangoon
  1352. //
  1353. // MessageText:
  1354. //
  1355. // (GMT+06:30) Yangon (Rangun)%0
  1356. //
  1357. #define IDS_Rangoon 0x0001113CL
  1358. //
  1359. // MessageId: IDS_Nepal
  1360. //
  1361. // MessageText:
  1362. //
  1363. // (GMT+05:45) Kathmandu%0
  1364. //
  1365. #define IDS_Nepal 0x0001113DL
  1366. //
  1367. // MessageId: IDS_Irkutsk
  1368. //
  1369. // MessageText:
  1370. //
  1371. // (GMT+08:00) Irkutsk, Ulaan Bataar%0
  1372. //
  1373. #define IDS_Irkutsk 0x0001113EL
  1374. //
  1375. // MessageId: IDS_Krasnoyarsk
  1376. //
  1377. // MessageText:
  1378. //
  1379. // (GMT+07:00) Krasnoyarsk%0
  1380. //
  1381. #define IDS_Krasnoyarsk 0x0001113FL
  1382. //
  1383. // MessageId: IDS_Santiago
  1384. //
  1385. // MessageText:
  1386. //
  1387. // (GMT-04:00) Santiago%0
  1388. //
  1389. #define IDS_Santiago 0x00011140L
  1390. //
  1391. // MessageId: IDS_SriLanka
  1392. //
  1393. // MessageText:
  1394. //
  1395. // (GMT+06:00) Sri Jayawardenepura%0
  1396. //
  1397. #define IDS_SriLanka 0x00011141L
  1398. //
  1399. // MessageId: IDS_Tonga
  1400. //
  1401. // MessageText:
  1402. //
  1403. // (GMT+13:00) Nuku'alofa%0
  1404. //
  1405. #define IDS_Tonga 0x00011142L
  1406. //
  1407. // MessageId: IDS_Vladivostok
  1408. //
  1409. // MessageText:
  1410. //
  1411. // (GMT+10:00) Vladivostok%0
  1412. //
  1413. #define IDS_Vladivostok 0x00011143L
  1414. //
  1415. // MessageId: IDS_WestCentralAfrica
  1416. //
  1417. // MessageText:
  1418. //
  1419. // (GMT+01:00) West Central Africa%0
  1420. //
  1421. #define IDS_WestCentralAfrica 0x00011144L
  1422. //
  1423. // MessageId: IDS_Yakutsk
  1424. //
  1425. // MessageText:
  1426. //
  1427. // (GMT+09:00) Yakutsk%0
  1428. //
  1429. #define IDS_Yakutsk 0x00011145L
  1430. //
  1431. // MessageId: IDS_Dhaka
  1432. //
  1433. // MessageText:
  1434. //
  1435. // (GMT+06:00) Astana, Dhaka%0
  1436. //
  1437. #define IDS_Dhaka 0x00011146L
  1438. //
  1439. // MessageId: IDS_Seoul
  1440. //
  1441. // MessageText:
  1442. //
  1443. // (GMT+09:00) Seoul%0
  1444. //
  1445. #define IDS_Seoul 0x00011147L
  1446. //
  1447. // MessageId: IDS_Perth
  1448. //
  1449. // MessageText:
  1450. //
  1451. // (GMT+08:00) Perth%0
  1452. //
  1453. #define IDS_Perth 0x00011148L
  1454. //
  1455. // MessageId: IDS_Arab
  1456. //
  1457. // MessageText:
  1458. //
  1459. // (GMT+03:00) Kuwait, Riyadh%0
  1460. //
  1461. #define IDS_Arab 0x00011149L
  1462. //
  1463. // MessageId: IDS_Taipei
  1464. //
  1465. // MessageText:
  1466. //
  1467. // (GMT+08:00) Taipei%0
  1468. //
  1469. #define IDS_Taipei 0x0001114AL
  1470. //
  1471. // MessageId: IDS_Sydney2000
  1472. //
  1473. // MessageText:
  1474. //
  1475. // (GMT+10:00) Canberra, Melbourne, Sydney (Year 2000 only)%0
  1476. //
  1477. #define IDS_Sydney2000 0x0001114BL
  1478. //
  1479. // MessageId: IDS_Chihuahua
  1480. //
  1481. // MessageText:
  1482. //
  1483. // (GMT-07:00) Chihuahua, La Paz, Mazatlan%0
  1484. //
  1485. #define IDS_Chihuahua 0x0001114CL
  1486. ///////////////////////////////////////
  1487. // EXCDO messages
  1488. //
  1489. // MessageId = 0x2000 through 0x2fff, localized in server languages.
  1490. ///////////////////////////////////////
  1491. #ifdef CDOSVR
  1492. //
  1493. // MessageId: evtMethodCalled
  1494. //
  1495. // MessageText:
  1496. //
  1497. // %1 Event on %2 called with Flags %3
  1498. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1499. //
  1500. #define evtMethodCalled 0x00032000L
  1501. //
  1502. // MessageId: evtMethodReturning
  1503. //
  1504. // MessageText:
  1505. //
  1506. // %1 Event Method is returning with HRESULT %2
  1507. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1508. //
  1509. #define evtMethodReturning 0x00032001L
  1510. //
  1511. // MessageId: evtIsAborting
  1512. //
  1513. // MessageText:
  1514. //
  1515. // %1 Event Method is halting, HRESULT %2
  1516. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1517. //
  1518. #define evtIsAborting 0xC0032002L
  1519. //
  1520. // MessageId: evtExpansionInitialized
  1521. //
  1522. // MessageText:
  1523. //
  1524. // Calendaring agent is initialized successfully.
  1525. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1526. //
  1527. #define evtExpansionInitialized 0x00032003L
  1528. //
  1529. // MessageId: evtExpansionUnInitialized
  1530. //
  1531. // MessageText:
  1532. //
  1533. // Calendaring agent is stopping successfully.
  1534. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1535. //
  1536. #define evtExpansionUnInitialized 0x00032004L
  1537. //
  1538. // MessageId: evtExpansionInitializeFailed
  1539. //
  1540. // MessageText:
  1541. //
  1542. // Calendaring agent failed to initialize with error %1.
  1543. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1544. //
  1545. #define evtExpansionInitializeFailed 0xC0032005L
  1546. //
  1547. // MessageId: evtExpansionRegisterFailed
  1548. //
  1549. // MessageText:
  1550. //
  1551. // Calendaring recurring item expansion failed to register for notifications for MDB %1.
  1552. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1553. //
  1554. #define evtExpansionRegisterFailed 0xC0032006L
  1555. //
  1556. // MessageId: evtExpansionMessageSaveChangesFailed
  1557. //
  1558. // MessageText:
  1559. //
  1560. // Calendaring agent failed in message save notification with error %1 on %2: %3.
  1561. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1562. //
  1563. #define evtExpansionMessageSaveChangesFailed 0xC0032007L
  1564. //
  1565. // MessageId: evtExpansionMessageDeleteFailed
  1566. //
  1567. // MessageText:
  1568. //
  1569. // Calendaring agent failed in message delete notification with error %1 on %2: %3.
  1570. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1571. //
  1572. #define evtExpansionMessageDeleteFailed 0xC0032008L
  1573. //
  1574. // MessageId: evtExpansionFolderSaveChangesFailed
  1575. //
  1576. // MessageText:
  1577. //
  1578. // Calendaring agent failed in folder save notification with error %1 on %2: %3.
  1579. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1580. //
  1581. #define evtExpansionFolderSaveChangesFailed 0xC0032009L
  1582. //
  1583. // MessageId: evtExpansionTooManyInstancesPerDay
  1584. //
  1585. // MessageText:
  1586. //
  1587. // Calendaring agent truncated expansion after %1 instances per day.
  1588. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1589. //
  1590. #define evtExpansionTooManyInstancesPerDay 0x8003200AL
  1591. //
  1592. // MessageId: evtMailboxCreateTotalFailure
  1593. //
  1594. // MessageText:
  1595. //
  1596. // The mailbox creation callback failed to create any folders in mailbox %1.
  1597. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1598. //
  1599. #define evtMailboxCreateTotalFailure 0xC003200BL
  1600. //
  1601. // MessageId: evtMailboxCreatePartialFailure
  1602. //
  1603. // MessageText:
  1604. //
  1605. // The mailbox creation callback failed to create one or more folders in mailbox %1.
  1606. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1607. //
  1608. #define evtMailboxCreatePartialFailure 0xC003200CL
  1609. //
  1610. // MessageId: evtUninitImplRestFailed
  1611. //
  1612. // MessageText:
  1613. //
  1614. // Calendaring agent failed to uninitialize implied restriction with error %1 on %2: %3.
  1615. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1616. //
  1617. #define evtUninitImplRestFailed 0xC003200DL
  1618. //
  1619. // MessageId: evtExpandSavingAppt
  1620. //
  1621. // MessageText:
  1622. //
  1623. // Calendaring agent failed with error code %1 while saving appointment.
  1624. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1625. //
  1626. #define evtExpandSavingAppt 0xC003200EL
  1627. //
  1628. // MessageId: evtExpandDeletingAppt
  1629. //
  1630. // MessageText:
  1631. //
  1632. // Calendaring agent failed with error code %1 while deleting appointment.
  1633. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1634. //
  1635. #define evtExpandDeletingAppt 0xC003200FL
  1636. //
  1637. // MessageId: evtExpandQuery
  1638. //
  1639. // MessageText:
  1640. //
  1641. // Calendaring agent failed with error code %1 while expanding recurring appointments.
  1642. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1643. //
  1644. #define evtExpandQuery 0xC0032010L
  1645. //
  1646. // MessageId: evtExpandFolderSetProps
  1647. //
  1648. // MessageText:
  1649. //
  1650. // Calendaring agent failed with error code %1 while cleaning up the calendar.
  1651. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1652. //
  1653. #define evtExpandFolderSetProps 0xC0032011L
  1654. //
  1655. // MessageId: evtRegistryFailure
  1656. //
  1657. // MessageText:
  1658. //
  1659. // Calendaring agent failed to open registry with error code %1.
  1660. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1661. //
  1662. #define evtRegistryFailure 0xC0032012L
  1663. //
  1664. // MessageId: evtExpStat
  1665. //
  1666. // MessageText:
  1667. //
  1668. // Calendaring agent failed in the following function with error code: %1.
  1669. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1670. //
  1671. #define evtExpStat 0xC0032013L
  1672. //
  1673. // MessageId: evtDumpFcn
  1674. //
  1675. // MessageText:
  1676. //
  1677. // Calendaring agent failed in the following function with error code %1.
  1678. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1679. //
  1680. #define evtDumpFcn 0xC0032014L
  1681. //
  1682. // MessageId: evtSaveDeleteFailFBUpdate
  1683. //
  1684. // MessageText:
  1685. //
  1686. // Calendaring agent failed to update the free/busy cache during an appointment save or delete operation.
  1687. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1688. //
  1689. #define evtSaveDeleteFailFBUpdate 0xC0032015L
  1690. //
  1691. // MessageId: evtProcessingQueryCallback
  1692. //
  1693. // MessageText:
  1694. //
  1695. // Calendaring agent failed to update the free/busy cache and internal data while processing a query.
  1696. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1697. //
  1698. #define evtProcessingQueryCallback 0xC0032016L
  1699. //
  1700. // MessageId: evtMailboxLocalizeTotalFailure
  1701. //
  1702. // MessageText:
  1703. //
  1704. // The mailbox creation callback failed to rename any folders in mailbox %1.
  1705. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1706. //
  1707. #define evtMailboxLocalizeTotalFailure 0xC0032017L
  1708. //
  1709. // MessageId: evtMailboxLocalizePartialFailure
  1710. //
  1711. // MessageText:
  1712. //
  1713. // The mailbox creation callback failed to rename one or more folders in mailbox %1.
  1714. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1715. //
  1716. #define evtMailboxLocalizePartialFailure 0xC0032018L
  1717. //
  1718. // MessageId: evtExpandMaster
  1719. //
  1720. // MessageText:
  1721. //
  1722. // The processing of the recurring appointment with the subject "%1" in mailbox: %2 failed with error code %3. This appointment will not be visible in the web client or other non-MAPI client.
  1723. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1724. //
  1725. #define evtExpandMaster 0xC0032019L
  1726. //
  1727. // MessageId: evtExpansionInit
  1728. //
  1729. // MessageText:
  1730. //
  1731. // A transaction failed during initialization.
  1732. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1733. //
  1734. #define evtExpansionInit 0xC003201AL
  1735. //
  1736. // MessageId: evtFBGenerateMsg
  1737. //
  1738. // MessageText:
  1739. //
  1740. // The calendaring agent could not publish the free/busy information for "%1" because it failed reading the registry with error: %2.
  1741. // The save/delete calendar operation for "%3" will not be completed.
  1742. // Please ensure that MSExchangeFBPublish agent is started.
  1743. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1744. //
  1745. #define evtFBGenerateMsg 0xC003201BL
  1746. //
  1747. // MessageId: evtExpansionInstExpiryInPublicMDB
  1748. //
  1749. // MessageText:
  1750. //
  1751. // Expiry of an instance for the recurring appointment with the subject "%1" in the folder "%2" was detected. The master for that should be expired before this instance.
  1752. // This instance will no longer appear in the web clients until the master is updated manually or through replication.
  1753. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1754. //
  1755. #define evtExpansionInstExpiryInPublicMDB 0x8003201CL
  1756. //
  1757. // MessageId: evtUnhandledExceptionInitialization
  1758. //
  1759. // MessageText:
  1760. //
  1761. // Unhandled exception %1 caught during initialization of server agents.
  1762. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1763. //
  1764. #define evtUnhandledExceptionInitialization 0xC003201DL
  1765. //
  1766. // MessageId: evtUnhandledExceptionShutdown
  1767. //
  1768. // MessageText:
  1769. //
  1770. // Unhandled exception %1 caught trying to stop server agents.
  1771. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1772. //
  1773. #define evtUnhandledExceptionShutdown 0xC003201EL
  1774. //
  1775. // MessageId: evtUnhandledExceptionInitializationMDB
  1776. //
  1777. // MessageText:
  1778. //
  1779. // Unhandled exception %1 caught during initialization of server agents while an MDB is mounted.
  1780. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1781. //
  1782. #define evtUnhandledExceptionInitializationMDB 0xC003201FL
  1783. //
  1784. // MessageId: evtUnhandledExceptionShutdownMDB
  1785. //
  1786. // MessageText:
  1787. //
  1788. // Unhandled exception %1 caught trying to stop server agents while an MDB is unmounted.
  1789. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1790. //
  1791. #define evtUnhandledExceptionShutdownMDB 0xC0032020L
  1792. //
  1793. // MessageId: evtUnhandledExceptionMsgSaveChanges
  1794. //
  1795. // MessageText:
  1796. //
  1797. // Unhandled exception %1 caught during message save changes notification.
  1798. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1799. //
  1800. #define evtUnhandledExceptionMsgSaveChanges 0xC0032021L
  1801. //
  1802. // MessageId: evtUnhandledExceptionDelete
  1803. //
  1804. // MessageText:
  1805. //
  1806. // Unhandled exception %1 caught during deletion notification.
  1807. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1808. //
  1809. #define evtUnhandledExceptionDelete 0xC0032022L
  1810. //
  1811. // MessageId: evtUnhandledExceptionQuery
  1812. //
  1813. // MessageText:
  1814. //
  1815. // Unhandled exception %1 caught during query processing.
  1816. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1817. //
  1818. #define evtUnhandledExceptionQuery 0xC0032023L
  1819. //
  1820. // MessageId: evtUnhandledExceptionFolderSaveChanges
  1821. //
  1822. // MessageText:
  1823. //
  1824. // Unhandled exception %1 caught during folder save changes notification.
  1825. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1826. //
  1827. #define evtUnhandledExceptionFolderSaveChanges 0xC0032024L
  1828. //
  1829. // MessageId: evtCorruptedCalendar
  1830. //
  1831. // MessageText:
  1832. //
  1833. // The calendar for the mailbox %1 is corrupted. This calendar needs to be recreated.
  1834. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1835. //
  1836. #define evtCorruptedCalendar 0xC0032025L
  1837. //
  1838. // MessageId: evtRebuildCalendar
  1839. //
  1840. // MessageText:
  1841. //
  1842. // An inconsistency was detected in %2: %3. The calendar is being repaired. If other errors occur with this calendar, please view the calendar using Microsoft Outlook Web Access. If a problem persists, please recreate the calendar or the containing mailbox.
  1843. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1844. //
  1845. #define evtRebuildCalendar 0x80032026L
  1846. //
  1847. // MessageId: evtCheckPrimaryCalendar
  1848. //
  1849. // MessageText:
  1850. //
  1851. // Calendar agent failed to determine the primary calendar for mailbox: %1.
  1852. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1853. //
  1854. #define evtCheckPrimaryCalendar 0x80032027L
  1855. //
  1856. // MessageId: evtExpandMasterPF
  1857. //
  1858. // MessageText:
  1859. //
  1860. // The processing of the recurring appointment with the subject "%1" in public folder: %2 failed with error code %3. This appointment will not be visible in the web client or other non-MAPI client.
  1861. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1862. //
  1863. #define evtExpandMasterPF 0xC0032028L
  1864. //
  1865. // MessageId: evtCorruptedPFCalendar
  1866. //
  1867. // MessageText:
  1868. //
  1869. // The public folder %1 is corrupted. This calendar needs to be recreated.
  1870. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1871. //
  1872. #define evtCorruptedPFCalendar 0xC0032029L
  1873. //
  1874. // MessageId: evtRebuildPFCalendar
  1875. //
  1876. // MessageText:
  1877. //
  1878. // An inconsistency was detected in %1. The calendar is being repaired. If other errors occur with this calendar, please view the calendar using Microsoft Outlook Web Access. If a problem persists, please recreate the public folder calendar.
  1879. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1880. //
  1881. #define evtRebuildPFCalendar 0x8003202AL
  1882. //
  1883. // MessageId: evtMovingMailboxCallbackFailed
  1884. //
  1885. // MessageText:
  1886. //
  1887. // Clearing the calendar instances before a move failed for mailbox %1 with error %2.
  1888. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1889. //
  1890. #define evtMovingMailboxCallbackFailed 0x8003202BL
  1891. //
  1892. // MessageId: evtGetMsgClassFromMaster
  1893. //
  1894. // MessageText:
  1895. //
  1896. // Calendaring agent failed with error %1 while attempting to retrieve the message class for a recurring appointment. The message class for the instance
  1897. // when viewed with the Web Client will not be the same as the one in the series if it is not IPM.Appointment.
  1898. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1899. //
  1900. #define evtGetMsgClassFromMaster 0x8003202CL
  1901. //
  1902. // MessageId: evtOpenURL
  1903. //
  1904. // MessageText:
  1905. //
  1906. // Calendaring agent failed with error %1 while attempting to open the status message. If the user is a delegate, the access rights to the mailbox might
  1907. // not be set up correctly. Otherwise, the calendar for this mailbox could be corrupted. This could be fixed
  1908. // by moving the mailbox to another Exchange server, or exporting the calendar to a Personal Folder File (.PST), and re-importing this into a new calendar.
  1909. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1910. //
  1911. #define evtOpenURL 0x8003202DL
  1912. //
  1913. // MessageId: evtStatusMsgSent
  1914. //
  1915. // MessageText:
  1916. //
  1917. // The calendaring data message for %1: %2 has been sent to %3.
  1918. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1919. //
  1920. #define evtStatusMsgSent 0x4003202EL
  1921. //
  1922. // MessageId: evtSaveInvalidStartAppt
  1923. //
  1924. // MessageText:
  1925. //
  1926. // An appointment with the subject "%1" was saved to mailbox %2. The start time is missing, so the calendaring agent cannot publish the free/busy information for this appointment. To correct this, please delete the appointment and recreate it.
  1927. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1928. //
  1929. #define evtSaveInvalidStartAppt 0xC003202FL
  1930. //
  1931. // MessageId: evtSaveInvalidEndAppt
  1932. //
  1933. // MessageText:
  1934. //
  1935. // An appointment with the subject "%1" was saved to mailbox %2. The end time and duration are missing. For the purposes of publishing free/busy information, this appointment has a duration of zero minutes. To correct this, please delete the appointment and recreate it.
  1936. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1937. //
  1938. #define evtSaveInvalidEndAppt 0x80032030L
  1939. //
  1940. // MessageId: evtModifyInvalidAppt
  1941. //
  1942. // MessageText:
  1943. //
  1944. // An existing appointment with the subject "%1" in mailbox %2 was modified. The start time, or both the duration and end time of the existing appointment were missing.
  1945. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1946. //
  1947. #define evtModifyInvalidAppt 0x80032031L
  1948. //
  1949. // MessageId: evtDeleteInvalidAppt
  1950. //
  1951. // MessageText:
  1952. //
  1953. // The existing appointment with the subject "%1" in mailbox %2 was deleted. The start time, or both the duration and end time were missing.
  1954. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1955. //
  1956. #define evtDeleteInvalidAppt 0x80032032L
  1957. //
  1958. // MessageId: evtBindToInvalidStartAppt
  1959. //
  1960. // MessageText:
  1961. //
  1962. // The calendaring agent cannot bind to the appointment with the subject "%1" in mailbox %2 because the appointment is missing a start time. The calendaring agent will not publish free/busy information for this appointment. To correct this, please delete the appointment and recreate it.
  1963. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1964. //
  1965. #define evtBindToInvalidStartAppt 0xC0032033L
  1966. //
  1967. // MessageId: evtBindToInvalidEndAppt
  1968. //
  1969. // MessageText:
  1970. //
  1971. // The calendaring agent did bind to the appointment with the subject "%1" in mailbox %2, but the appointment is missing an end time and duration. For the purposes of publishing free/busy information, this appointment has a duration of zero minutes. To correct this, please delete the appointment and recreate it.
  1972. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1973. //
  1974. #define evtBindToInvalidEndAppt 0x80032034L
  1975. //
  1976. // MessageId: evtReloadLogType
  1977. //
  1978. // MessageText:
  1979. //
  1980. // The EXCDO logging level has been reloaded from the registry and is now set to 0x%1.
  1981. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1982. //
  1983. #define evtReloadLogType 0x40032035L
  1984. //
  1985. // MessageId: evtBackgroundStarted
  1986. //
  1987. // MessageText:
  1988. //
  1989. // Calendaring agent has successfully started the background thread.
  1990. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  1991. //
  1992. #define evtBackgroundStarted 0x40032036L
  1993. //
  1994. // MessageId: evtBackgroundStartFailed
  1995. //
  1996. // MessageText:
  1997. //
  1998. // Calendaring agent has failed to start the background thread due to %1.
  1999. // Rendering of large calendars with the Web client will be slower.
  2000. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2001. //
  2002. #define evtBackgroundStartFailed 0x80032037L
  2003. //
  2004. // MessageId: evtBackgroundProcessing
  2005. //
  2006. // MessageText:
  2007. //
  2008. // Background calendaring agent is processing the calendar (%1) in the mailbox (%2) in the MDB (%3).
  2009. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2010. //
  2011. #define evtBackgroundProcessing 0x40032038L
  2012. //
  2013. // MessageId: evtBackgroundProcessingNoCals
  2014. //
  2015. // MessageText:
  2016. //
  2017. // Background calendaring agent did not find any more calendars to process.
  2018. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2019. //
  2020. #define evtBackgroundProcessingNoCals 0x40032039L
  2021. //
  2022. // MessageId: evtBackgroundProcessingFinished
  2023. //
  2024. // MessageText:
  2025. //
  2026. // Background calendaring agent has finished processing the calendar (%1) in the mailbox (%2) in the MDB (%3). The return code is %4.
  2027. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2028. //
  2029. #define evtBackgroundProcessingFinished 0x4003203AL
  2030. //
  2031. // MessageId: evtBackgroundAwakeDueToShutdown
  2032. //
  2033. // MessageText:
  2034. //
  2035. // Background calendaring agent is awakened due to shutdown.
  2036. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2037. //
  2038. #define evtBackgroundAwakeDueToShutdown 0x4003203BL
  2039. //
  2040. // MessageId: evtBackgroundAwake
  2041. //
  2042. // MessageText:
  2043. //
  2044. // Background calendaring agent is awakened due to calendars needing expansion.
  2045. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2046. //
  2047. #define evtBackgroundAwake 0x4003203CL
  2048. //
  2049. // MessageId: evtBackgroundTerminating
  2050. //
  2051. // MessageText:
  2052. //
  2053. // Background calendaring agent is terminating with return code %1.
  2054. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2055. //
  2056. #define evtBackgroundTerminating 0x4003203DL
  2057. //
  2058. // MessageId: evtBackgroundRegisterTaskFailed
  2059. //
  2060. // MessageText:
  2061. //
  2062. // The background calendaring agent failed with error code %1 while registering task.
  2063. // The rendering of large calendars with the web client or Microsoft Internet Explorer will be slower.
  2064. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2065. //
  2066. #define evtBackgroundRegisterTaskFailed 0xC003203EL
  2067. //
  2068. // MessageId: evtBackgroundLogonFailed
  2069. //
  2070. // MessageText:
  2071. //
  2072. // The background calendaring agent failed to logon to the MDB, or create a session object on the MDB:%1.
  2073. // The error code is %2.
  2074. // The rendering of large calendars with the web client or Microsoft Internet Explorer for the mailbox %3 with GUID:%4 will be slower.
  2075. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2076. //
  2077. #define evtBackgroundLogonFailed 0xC003203FL
  2078. //
  2079. // MessageId: evtBackgroundGetMachineToken
  2080. //
  2081. // MessageText:
  2082. //
  2083. // The background calendaring agent failed to retrieve the token required for logon on the MDB:%1.
  2084. // The error code is %2.
  2085. // The rendering of large calendars with the web client or Microsoft Internet Explorer on this MDB will be slower.
  2086. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2087. //
  2088. #define evtBackgroundGetMachineToken 0xC0032040L
  2089. //
  2090. // MessageId: evtBackgroundSleepUntilNewCal
  2091. //
  2092. // MessageText:
  2093. //
  2094. // Background calendaring agent is sleeping until shutdown or a calendar is queued.
  2095. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2096. //
  2097. #define evtBackgroundSleepUntilNewCal 0x40032041L
  2098. //
  2099. // MessageId: evtBackgroundQueued
  2100. //
  2101. // MessageText:
  2102. //
  2103. // The calendar (%1) in mailbox (%2) in the MDB (%3) has been queued for background expansion.
  2104. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2105. //
  2106. #define evtBackgroundQueued 0x40032042L
  2107. //
  2108. // MessageId: evtBkExpDumpFcn
  2109. //
  2110. // MessageText:
  2111. //
  2112. // The background calendaring agent failed in the following function with error code %1.
  2113. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2114. //
  2115. #define evtBkExpDumpFcn 0xC0032043L
  2116. //
  2117. // MessageId: evtSaveDurationTooLong
  2118. //
  2119. // MessageText:
  2120. //
  2121. // An attempt was made to save an appointment with the subject "%1" to mailbox %2. The duration of the appointment was too large, so it was not saved.
  2122. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2123. //
  2124. #define evtSaveDurationTooLong 0x80032044L
  2125. //
  2126. // MessageId: evtModifyDurationTooLong
  2127. //
  2128. // MessageText:
  2129. //
  2130. // An existing appointment with the subject "%1" in mailbox %2 was modified. The duration of the existing appointment was too large. Free/busy publishing may not be accurate.
  2131. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2132. //
  2133. #define evtModifyDurationTooLong 0x80032045L
  2134. //
  2135. // MessageId: evtDeleteDurationTooLong
  2136. //
  2137. // MessageText:
  2138. //
  2139. // The existing appointment with the subject "%1" in mailbox %2 was deleted. The duration of the existing appointment was too large. Free/busy publishing may not be accurate.
  2140. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2141. //
  2142. #define evtDeleteDurationTooLong 0x80032046L
  2143. //
  2144. // MessageId: evtTooManyIterationsForQuery
  2145. //
  2146. // MessageText:
  2147. //
  2148. // The recurring appointment expansion in mailbox %1 has taken too long. Some recurring appointment instances may not be visible at this time. To ensure that the calendar view is correct, please refresh the calendar view in Microsoft Outlook Web Access.
  2149. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2150. //
  2151. #define evtTooManyIterationsForQuery 0x80032047L
  2152. //
  2153. // MessageId: evtTooManyIterationsForFreebusy
  2154. //
  2155. // MessageText:
  2156. //
  2157. // The recurring appointment expansion in mailbox %1 has taken too long. The free/busy information for this calendar may be inaccurate. This may be the result of many very old recurring appointments. To correct this, please remove them or change their start date to a more recent date.
  2158. // %n%nFor more information, click http://www.microsoft.com/contentredirect.asp.
  2159. //
  2160. #define evtTooManyIterationsForFreebusy 0x80032048L
  2161. #endif