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.

78 lines
4.5 KiB

  1. #include <windows.h>
  2. #include "resource.h"
  3. #include <hlpres.h>
  4. #include <faxname.h>
  5. IDI_FAX_EXT ICON DISCARDABLE "fax.ico"
  6. STRINGTABLE
  7. BEGIN
  8. IDS_CANT_ACCESS_PRINTER "The " FAX_FULL_NAME " Printer cannot be accessed."
  9. IDS_RESOURCES_UNAVAIL "There are not enough resources available to send the fax message."
  10. IDS_CANT_PRINT "The print action to the " FAX_FULL_NAME " Printer cannot be completed."
  11. IDS_CANT_ACCESS_MSG_DATA "The exchange message data cannot be accessed."
  12. IDS_CANT_ACCESS_PROFILE "Profile information cannot be accessed."
  13. IDS_BAD_ATTACHMENTS "Not all attachments can be rendered."
  14. IDS_CANT_PRINT_BODY "The message body cannot be printed."
  15. IDS_NO_SUBMIT_RITHTS "You do not have the required security permission to submit faxes. Contact the administrator."
  16. IDS_FONT_REGULAR "Regular"
  17. IDS_FONT_ITALIC "Italic"
  18. IDS_FONT_BOLD "Bold "
  19. IDS_FAX_MESSAGE FAX_FULL_NAME " Exchange Transport"
  20. IDS_MESSAGE_DOC_NAME "Outlook Fax Message"
  21. IDS_FAILED_MESSAGE "The " FAX_FULL_NAME " transport failed to deliver the message to the recipient."
  22. IDS_OUT_OF_MEM FAX_FULL_NAME " is out of memory"
  23. IDS_INTERNAL_ERROR "The " FAX_FULL_NAME " encountered an internal error, and failed to send the fax."
  24. IDS_SUBJECT_FORMAT "Subject: %s\r\n\r\n"
  25. IDS_PERSONAL_CP_FORBIDDEN "The use of personal cover pages has not been enabled by the fax administrator. Your fax was not sent."
  26. IDS_BAD_CANNONICAL_ADDRESS "The number you have specified is not in a canonical format. Your fax was not sent."
  27. IDS_NO_MSG_ATTACHMENTS "There is no attachment"
  28. IDS_NO_MSG_BODY "There is no message body in the fax"
  29. IDS_EMPTY_MESSAGE "The message does not contain any content"
  30. IDS_RECIPIENTS_LIMIT "Your fax was not sent, because the limit on the number of recipients for a single fax broadcast was reached. This limit is set by the fax administrator. Number of recipients: %ld. Recipients limit: %ld."
  31. END
  32. IDD_FAX_PROP_CONFIG DIALOGEX 0, 0, 252, 270
  33. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  34. EXSTYLE WS_EX_CONTEXTHELP
  35. CAPTION "Fax Mail Transport"
  36. FONT 8, "MS Shell Dlg"
  37. BEGIN
  38. ICON IDI_FAX_EXT,IDC_STATIC_ICON,10,6,20,20
  39. LTEXT "Fax Configuration",IDC_STATIC_TITLE,38,8,62,16
  40. LTEXT "Fax &Printers:",IDC_STATIC_PRINTERS,10,40,128,8,0,0,
  41. HIDC_MAPI_PRINTER_LIST
  42. COMBOBOX IDC_PRINTER_LIST,10,53,232,64,CBS_DROPDOWNLIST |
  43. WS_VSCROLL | WS_TABSTOP,0,HIDC_MAPI_PRINTER_LIST
  44. CONTROL "&Include a cover page with faxes",IDC_USE_COVERPAGE,
  45. "Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,76,145,10,0,
  46. HIDC_MAPI_INCLUDE_COVER_PAGES
  47. LTEXT "&Cover Pages:",IDC_COVERPAGE_LIST_LABEL,10,92,60,8,0,0,
  48. HIDC_MAPI_COVERPAGE_LIST
  49. LISTBOX IDC_COVERPAGE_LIST,10,104,232,35,LBS_NOINTEGRALHEIGHT |
  50. WS_VSCROLL | WS_TABSTOP,0,HIDC_MAPI_COVERPAGE_LIST
  51. CONTROL "Single &delivery receipt for multiple recipients",
  52. IDC_SEND_SINGLE_RECEIPT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,
  53. 10,142,236,10,0,HIDC_MAPI_SEND_SINGLE_RECEIPT
  54. CONTROL "A&ttach a copy of a sent fax to its delivery notification receipt",
  55. IDC_ATTACH_FAX,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,
  56. 10,155,235,10,0,HIDC_MAPI_ATTACH_FAX
  57. GROUPBOX "Default Message Font:",IDCSTATIC_FONT_GROUP,10,167,232,69
  58. LTEXT "Font:",IDCSTATIC_FONT,17,177,47,10,0,0,HIDC_MAPI_FONT_NAME
  59. LTEXT "",IDC_FONT_NAME,17,190,100,12,0,WS_EX_CLIENTEDGE,
  60. HIDC_MAPI_FONT_NAME
  61. LTEXT "Font Style:",IDCSTATIC_FONTSTYLE,121,177,59,10,0,0,
  62. HIDC_MAPI_FONT_STYLE
  63. LTEXT "",IDC_FONT_STYLE,121,190,58,12,0,WS_EX_CLIENTEDGE,
  64. HIDC_MAPI_FONT_STYLE
  65. LTEXT "Size:",IDCSTATIC_FONTSIZE,184,177,45,10,0,0,
  66. HIDC_MAPI_FONT_SIZE
  67. LTEXT "",IDC_FONT_SIZE,184,190,50,12,0,WS_EX_CLIENTEDGE,
  68. HIDC_MAPI_FONT_SIZE
  69. PUSHBUTTON "&Set Font...",IDC_SET_FONT,160,211,75,14,0,0,
  70. HIDC_MAPI_BUT_SET_FONT
  71. DEFPUSHBUTTON "OK",IDOK,125,245,50,14,0,0,HIDOK
  72. PUSHBUTTON "Cancel",IDCANCEL,184,245,50,14,0,0,HIDCANCEL
  73. END