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.

186 lines
4.1 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1994-1995 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; msg.h
  8. ;
  9. ;Abstract:
  10. ;
  11. ; This file contains the message definitions for the Win32 Compact
  12. ; utility.
  13. ;
  14. ;Author:
  15. ;
  16. ; Gary Kimura [garyki] 13-Jan-1994
  17. ;
  18. ;Revision History:
  19. ;
  20. ;--*/
  21. ;
  22. MessageId=0001 SymbolicName=COMPACT_OK
  23. Language=English
  24. [OK]
  25. .
  26. MessageId=0002 SymbolicName=COMPACT_ERR
  27. Language=English
  28. [ERR]
  29. .
  30. MessageId=0006 SymbolicName=COMPACT_LIST_CDIR
  31. Language=English
  32. Listing %1
  33. New files added to this directory will be compressed.
  34. .
  35. MessageId=0007 SymbolicName=COMPACT_LIST_UDIR
  36. Language=English
  37. Listing %1
  38. New files added to this directory will not be compressed.
  39. .
  40. MessageId=0008 SymbolicName=COMPACT_LIST_SUMMARY
  41. Language=English
  42. Of %1 files within %2 directories
  43. %3 are compressed and %4 are not compressed.
  44. %5 total bytes of data are stored in %6 bytes.
  45. The compression ratio is %7 to 1.
  46. .
  47. MessageId=0009 SymbolicName=COMPACT_COMPRESS_DIR
  48. Language=English
  49. Setting the directory %1 to compress new files %0
  50. .
  51. MessageId=0010 SymbolicName=COMPACT_COMPRESS_CDIR
  52. Language=English
  53. Compressing files in %1
  54. .
  55. MessageId=0011 SymbolicName=COMPACT_COMPRESS_UDIR
  56. Language=English
  57. Compressing files in %1
  58. .
  59. MessageId=0012 SymbolicName=COMPACT_COMPRESS_SUMMARY
  60. Language=English
  61. %1 files within %2 directories were compressed.
  62. %3 total bytes of data are stored in %4 bytes.
  63. The compression ratio is %5 to 1.
  64. .
  65. MessageId=0013 SymbolicName=COMPACT_UNCOMPRESS_DIR
  66. Language=English
  67. Setting the directory %1 not to compress new files %0
  68. .
  69. MessageId=0014 SymbolicName=COMPACT_UNCOMPRESS_CDIR
  70. Language=English
  71. Uncompressing files in %1
  72. .
  73. MessageId=0015 SymbolicName=COMPACT_UNCOMPRESS_UDIR
  74. Language=English
  75. Uncompressing files in %1
  76. .
  77. MessageId=0016 SymbolicName=COMPACT_UNCOMPRESS_SUMMARY
  78. Language=English
  79. %1 files within %2 directories were uncompressed.
  80. .
  81. MessageId=0019 SymbolicName=COMPACT_NO_MEMORY
  82. Language=English
  83. Out of memory.
  84. .
  85. MessageId=0020 SymbolicName=COMPACT_SKIPPING
  86. Language=English
  87. [Skipping %1]
  88. .
  89. MessageId=0021 SymbolicName=COMPACT_THROW
  90. Language=English
  91. %1%0
  92. .
  93. MessageId=0022 SymbolicName=COMPACT_THROW_NL
  94. Language=English
  95. %1
  96. .
  97. MessageId=0023 SymbolicName=COMPACT_WRONG_FILE_SYSTEM
  98. Language=English
  99. %1: The file system does not support compression.
  100. .
  101. MessageId=0024 SymbolicName=COMPACT_TO_ONE
  102. Language=English
  103. to 1 %0
  104. .
  105. MessageId=0025 SymbolicName=COMPACT_INVALID_PATH
  106. Language=English
  107. Invalid drive specification: %1
  108. .
  109. MessageId=0026 SymbolicName=COMPACT_WRONG_FILE_SYSTEM_OR_CLUSTER_SIZE
  110. Language=English
  111. %1: The file system does not support compression or
  112. the cluster size of the volume is larger than 4096 bytes.
  113. .
  114. MessageId=0050 SymbolicName=COMPACT_USAGE
  115. Language=English
  116. Displays or alters the compression of files on NTFS partitions.
  117. COMPACT [/C | /U] [/S[:dir]] [/A] [/I] [/F] [/Q] [filename [...]]
  118. /C Compresses the specified files. Directories will be marked
  119. so that files added afterward will be compressed.
  120. /U Uncompresses the specified files. Directories will be marked
  121. so that files added afterward will not be compressed.
  122. /S Performs the specified operation on files in the given
  123. directory and all subdirectories. Default "dir" is the
  124. current directory.
  125. /A Displays files with the hidden or system attributes. These
  126. files are omitted by default.
  127. /I Continues performing the specified operation even after errors
  128. have occurred. By default, COMPACT stops when an error is
  129. encountered.
  130. /F Forces the compress operation on all specified files, even
  131. those which are already compressed. Already-compressed files
  132. are skipped by default.
  133. /Q Reports only the most essential information.
  134. filename Specifies a pattern, file, or directory.
  135. Used without parameters, COMPACT displays the compression state of
  136. the current directory and any files it contains. You may use multiple
  137. filenames and wildcards. You must put spaces between multiple
  138. parameters.
  139. .