Source code of Windows XP (NT5)
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.

104 lines
4.4 KiB

  1. #include "dialogs.h"
  2. /*
  3. * Define the language dependant strings
  4. *
  5. * IMPORTANT!!!
  6. * These strings are concatenated together in the code and then
  7. * sized to fit in the dialog. So different translations will
  8. * be word wrapped automatically, and as long as it will fit in
  9. * 6 lines of text we'll be fine.
  10. */
  11. STRINGTABLE LOADONCALL DISCARDABLE
  12. BEGIN
  13. //
  14. // Stickykeys notification.
  15. //
  16. ID_STICKY_TITLE "StickyKeys"
  17. ID_STICKY_TEXT+1 "Pressing the SHIFT key 5 times turns on StickyKeys. StickyKeys lets you use "
  18. ID_STICKY_TEXT+2 "the SHIFT, CTRL, ALT, or Windows Logo keys by pressing one key at a time."
  19. ID_STICKY_TEXT+3 "\r\rTo keep StickyKeys on, click OK."
  20. ID_STICKY_TEXT+4 "\rTo cancel StickyKeys, click Cancel."
  21. ID_STICKY_TEXT+5 "\rTo deactivate the key combination for StickyKeys, click Settings."
  22. //
  23. // FilterKeys notification
  24. //
  25. ID_FILTER_TITLE "FilterKeys"
  26. ID_FILTER_TEXT+1 "Holding down the right SHIFT key for 8 seconds turns on FilterKeys. FilterKeys "
  27. ID_FILTER_TEXT+2 "causes Windows to ignore brief or repeated keystrokes and slows down the "
  28. ID_FILTER_TEXT+3 "keyboard repeat rate."
  29. ID_FILTER_TEXT+4 "\r\rTo keep FilterKeys on, click OK."
  30. ID_FILTER_TEXT+5 "\rTo cancel FilterKeys, click Cancel."
  31. ID_FILTER_TEXT+6 "\rTo deactivate the key combination for FilterKeys, click Settings."
  32. //
  33. // MouseKeys notification
  34. //
  35. ID_MOUSE_TITLE "MouseKeys"
  36. ID_MOUSE_TEXT+1 "Pressing the left ALT, left SHIFT, and NUM LOCK keys turns on MouseKeys. "
  37. ID_MOUSE_TEXT+2 "MouseKeys lets you control the mouse pointer by using the numeric keypad on "
  38. ID_MOUSE_TEXT+3 "your keyboard."
  39. ID_MOUSE_TEXT+4 "\r\rTo keep MouseKeys on, click OK."
  40. ID_MOUSE_TEXT+5 "\rTo cancel MouseKeys, click Cancel."
  41. ID_MOUSE_TEXT+6 "\rTo deactivate the key combination for MouseKeys, click Settings."
  42. //
  43. // HighContrast notification
  44. //
  45. ID_HC_TITLE "HighContrast"
  46. ID_HC_TEXT+1 "Pressing the left SHIFT, left ALT, and PRINT SCREEN keys turns on High "
  47. ID_HC_TEXT+2 "Contrast. High Contrast improves readability for people with visual impairments "
  48. ID_HC_TEXT+3 "by applying a special system color scheme and font size."
  49. ID_HC_TEXT+4 "\r\rTo keep High Contrast on, click OK."
  50. ID_HC_TEXT+5 "\rTo cancel High Contrast, click Cancel."
  51. ID_HC_TEXT+6 "\rTo deactivate the key combination for High Contrast, click Settings."
  52. //
  53. // Togglekeys notification
  54. //
  55. ID_TOGGLE_TITLE "ToggleKeys"
  56. ID_TOGGLE_TEXT+1 "Holding down the NUM LOCK key for 5 seconds turns on ToggleKeys. "
  57. ID_TOGGLE_TEXT+2 "ToggleKeys causes a tone to sound when you press the CAPS LOCK, NUM "
  58. ID_TOGGLE_TEXT+3 "LOCK, or SCROLL LOCK keys."
  59. ID_TOGGLE_TEXT+4 "\r\rTo keep ToggleKeys on, click OK."
  60. ID_TOGGLE_TEXT+5 "\rTo cancel ToggleKeys, click Cancel."
  61. ID_TOGGLE_TEXT+6 "\rTo deactivate the key combination for ToggleKeys, click Settings."
  62. //
  63. // Notification text for machine booting with accessability feature
  64. // Filterkeys on.
  65. //
  66. ID_ACCESS_TITLE "Accessibility Options"
  67. ID_ACCESS_TEXT+1 "Your computer is configured to start with the FilterKeys feature "
  68. ID_ACCESS_TEXT+2 "turned on. With this feature, the keyboard repeat rates, acceptance rate "
  69. ID_ACCESS_TEXT+3 "and bounce rates are set for users with "
  70. ID_ACCESS_TEXT+4 "disabilities."
  71. ID_WHITEBLACK_HC "High Contrast Black (large)"
  72. ID_PRE_HC_SCHEME "Pre-High Contrast Scheme"
  73. END
  74. DLG_CONFIRM DIALOG 80, 65, 269, 85
  75. STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_SYSMODAL
  76. CAPTION "Dialog Title"
  77. FONT 8, "MS Shell Dlg"
  78. BEGIN
  79. // LTEXT "", ID_HELPTEXT, 15, 10, 185, 55
  80. // PUSHBUTTON "&OK", IDOK, 15, 70, 45, 14
  81. // PUSHBUTTON "&Cancel", IDCANCEL, 80, 70, 50, 14
  82. // PUSHBUTTON "&Settings...", IDHELP, 155, 70, 45, 14
  83. PUSHBUTTON "OK",IDOK,50,66,50,14
  84. DEFPUSHBUTTON "Cancel",IDCANCEL,108,66,50,14
  85. PUSHBUTTON "&Settings",IDHELP,166,66,50,14
  86. LTEXT "",ID_HELPTEXT,9,5,250,57
  87. END