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.

62 lines
2.6 KiB

  1. #include <winuser.h>
  2. #include "imeeudc.h"
  3. #include "imeeudc.rcv"
  4. ImeEudcMenu MENU
  5. BEGIN
  6. MENUITEM "&New EUDC", IDM_NEW_EUDC
  7. MENUITEM "&IME Link ...", IDM_IME_LINK
  8. MENUITEM "&Batch Mode Link ...", IDM_BATCH_IME_LINK
  9. END
  10. STRINGTABLE
  11. BEGIN
  12. // must translate to "��"
  13. IDS_CHINESE_CHAR, "Ch"
  14. IDS_QUERY_NOTFINISH, "Not complete composition, Do you want to complete this word?"
  15. IDS_QUERY_REGISTER, "Do you want to register this word?"
  16. IDS_ISV_FILE_FILTER, "IME information file for end user created char(*.TBL)|*.tbl|"
  17. IDS_PROCESS_FMT, "Register %s - %s %s!"
  18. IDS_RESULT_FAIL, "Failure"
  19. IDS_RESULT_SUCCESS, "Success"
  20. IDS_INTERNAL_TITLE, "Internal Message"
  21. IDS_INTERNAL_MSG, "Internal Erorr"
  22. IDS_EUDCDICFAIL_TITLE, "End user created char dictionary"
  23. IDS_EUDCDICFAIL_MSG, "Can not set this file as end user created char dictionary of this IME"
  24. IDS_NOTOPEN_TITLE, "Open"
  25. IDS_NOTOPEN_MSG, "Can not open this file"
  26. IDS_FILESIZE_TITLE, "File Size"
  27. IDS_FILESIZE_MSG, "Invalid file size, check file size = ulTableCount * (4 + cMethodKeySize) + 256"
  28. IDS_HEADERSIZE_TITLE, "File Header Size"
  29. IDS_HEADERSIZE_MSG, "Invalid file size, check uHeaderSize = 256"
  30. IDS_INFOSIZE_TITLE, "Input Method Information Size"
  31. IDS_INFOSIZE_MSG, "Invalid input method information size, check uInfoSize = 13"
  32. IDS_CODEPAGE_TITLE, "Code Page"
  33. #ifdef UNICODE
  34. IDS_CODEPAGE_MSG, "Invalid Code Page, check idCP = 1200 (or 950)"
  35. #else
  36. IDS_CODEPAGE_MSG, "Invalid Code Page, check idCP = 950"
  37. #endif
  38. IDS_CWINSIGN_TITLE, "CWIN_TBL Sign"
  39. IDS_CWINSIGN_MSG, "Invalid sign, check idUserCharInfoSign = CWIN_TBL"
  40. IDS_UNMATCHED_TITLE, "Input Method"
  41. IDS_UNMATCHED_MSG, "Invalid Input Method Name, check achMethodName"
  42. IDS_NOIME_TITLE, "Input Method"
  43. IDS_NOIME_MSG, "No Input Method can generate IME end user created dictionary"
  44. IDS_NOMEM_TITLE, "Memory"
  45. IDS_NOMEM_MSG, "Memory resource is not enough"
  46. END
  47. ImeLinkDlg DIALOG LOADONCALL MOVEABLE DISCARDABLE 32, 40, 160, 100
  48. CAPTION "IME Link - "
  49. STYLE WS_CAPTION|WS_POPUP|DS_MODALFRAME|DS_3DLOOK|WS_SYSMENU
  50. BEGIN
  51. GROUPBOX "IME radical", -1, 16, 4, 132, 64
  52. CONTROL "IME List", IDD_RADICAL, "Radical",
  53. WS_GROUP|WS_TABSTOP, 20, 12, 124, 52
  54. PUSHBUTTON "&Register", IDOK, 16, 76, 48, 16, WS_GROUP|WS_TABSTOP
  55. DEFPUSHBUTTON "&Cancel", IDCANCEL, 100, 76, 48, 16, WS_TABSTOP
  56. END