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.

110 lines
3.6 KiB

  1. #ifdef WIN32
  2. #include "winuser.h"
  3. #ifdef WINNT
  4. #include "winver.h"
  5. #endif
  6. #else
  7. #include "windows.h"
  8. #endif
  9. #include "ids.h"
  10. #include "shlwapi.rcv"
  11. // WARNING
  12. // this file should contain localizable resources only
  13. // non-localizable resources should go in shlwapi.rc
  14. STRINGTABLE DISCARDABLE
  15. BEGIN
  16. IDS_HOUR " %s hr"
  17. IDS_MIN " %s min"
  18. IDS_SEC " %s sec"
  19. END
  20. STRINGTABLE DISCARDABLE
  21. BEGIN
  22. IDS_BYTES "%s bytes"
  23. IDS_ORDERKB "%s KB"
  24. IDS_ORDERMB "%s MB"
  25. IDS_ORDERGB "%s GB"
  26. IDS_ORDERTB "%s TB"
  27. IDS_ORDERPB "%s PB" // Peta (10^15)
  28. IDS_ORDEREB "%s EB" // Exa (10^18)
  29. END
  30. STRINGTABLE DISCARDABLE
  31. BEGIN
  32. IDS_LONGDATE_SEP ", " // "<date>, <time>"
  33. // These two strings replace the day-of-the-week. If this doesn't
  34. // work with the locale, then translate these to empty strings and
  35. // the code will accomodate this.
  36. IDS_TODAY "Today"
  37. IDS_YESTERDAY "Yesterday"
  38. // ISSUE (scotth): we should probably use GetLocaleInfo instead...
  39. IDS_SUNDAY "Sunday"
  40. IDS_MONDAY "Monday"
  41. IDS_TUESDAY "Tuesday"
  42. IDS_WEDNESDAY "Wednesday"
  43. IDS_THURSDAY "Thursday"
  44. IDS_FRIDAY "Friday"
  45. IDS_SATURDAY "Saturday"
  46. IDS_DRIVENOTREADY "There is no disk in drive %c.\n\nInsert a disk, and then try again."
  47. IDS_UNFORMATTED "The disk in drive %c is not formatted.\n\nDo you want to format it now?"
  48. IDS_NOFMT "The disk in drive %c cannot be formatted."
  49. IDS_NOSUCHDRIVE "Drive %c cannot be accessed."
  50. IDS_FILEERRORMOVE "Error Moving File or Folder"
  51. IDS_FILEERRORCOPY "Error Copying File or Folder"
  52. IDS_FILEERRORDEL "Error Deleting File or Folder"
  53. IDS_FILEERRORREN "Error Renaming File or Folder"
  54. IDS_MIXED " (Mixed)"
  55. IDS_INTERNETSECURITY "Internet Security"
  56. IDS_RESTRICTIONSTITLE "Restrictions"
  57. IDS_RESTRICTIONS "This operation has been cancelled due to restrictions in effect on this computer. Please contact your system administrator."
  58. IDS_SECURITY "Security Alert"
  59. IDS_TEMPLATENOTSECURE "The file or folder you are opening contains Web content that may be unsafe. The Web content has either been modified or is from an unknown source. Do you want to allow it to be initialized and be accessed by scripts?"
  60. END
  61. STRINGTABLE DISCARDABLE
  62. BEGIN
  63. IDS_SIDEBYSIDE "Side-by-Side Mode"
  64. END
  65. STRINGTABLE DISCARDABLE
  66. BEGIN
  67. IDS_CLICKHELPFORINFO "For more information, click Help."
  68. END
  69. STRINGTABLE DISCARDABLE
  70. BEGIN
  71. IDS_EXTTYPETEMPLATE "%s File" // wsprintf
  72. IDS_FILETYPENAME "File"
  73. IDS_FOLDERTYPENAME "Folder"
  74. END
  75. DLG_MESSAGEBOXCHECK DIALOG DISCARDABLE 0, 0, 210, 55
  76. STYLE DS_MODALFRAME | DS_NOIDLEMSG | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
  77. CAPTION "Error!"
  78. FONT 8, "MS Shell Dlg"
  79. BEGIN
  80. ICON 0, IDC_MBC_ICON,5,5,18,20
  81. LTEXT "",IDC_MBC_TEXT,5,5,200,8
  82. CONTROL "&In the future, do not show me this dialog box",
  83. IDC_MBC_CHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,5,20,200,10
  84. PUSHBUTTON "OK",IDOK,95,35,50,14
  85. PUSHBUTTON "Cancel",IDCANCEL,150,35,50,14
  86. PUSHBUTTON "&Yes",IDYES,95,35,50,14
  87. PUSHBUTTON "&No",IDNO,150,35,50,14
  88. END
  89. DLG_NULL DIALOGEX DISCARDABLE 0, 0, 0, 0
  90. STYLE DS_MODALFRAME | DS_SHELLFONT | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  91. CAPTION ""
  92. FONT 8, "MS Shell Dlg"
  93. BEGIN
  94. END