xref: /reactos/base/system/diskpart/lang/en-US.rc (revision 6881d8c6)
1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3/* Basic application information */
4STRINGTABLE
5BEGIN
6    IDS_APP_HEADER "ReactOS DiskPart"
7    IDS_APP_USAGE "\nDisk Partitioning Interpreter.\n\n\
8Usage: DISKPART [/S filename] [/T timeout] [/?]\n\n\
9/S filename\tRuns the given script.\n\
10/T timeout\tTimeout in seconds to prevent DiskPart usage overlap.\n\
11/?\t\tDisplay this help message.\n\n"
12    IDS_APP_LICENSE "Licensed under the GNU GPLv2\n"
13    IDS_APP_CURR_COMPUTER "On computer: %s\n\n"
14    IDS_APP_LEAVING "\nLeaving DiskPart...\n"
15    IDS_APP_PROMPT "DISKPART> "
16END
17
18STRINGTABLE
19BEGIN
20    IDS_ACTIVE_FAIL "\nDiskPart was unable to mark the partition active.\nMake sure the partition is valid.\n"
21    IDS_ACTIVE_SUCCESS "\nDiskPart marked the current partition as active.\n"
22    IDS_ACTIVE_ALREADY "\nThe current partition is already marked as active.\n"
23END
24
25STRINGTABLE
26BEGIN
27    IDS_CLEAN_FAIL "\nDiskPart was unable to clean the disk.\nThe data on this disk may be unrecoverable.\n"
28    IDS_CLEAN_SUCCESS "\nDiskPart succeeded in cleaning the disk.\n"
29    IDS_CLEAN_SYSTEM "\nThe selected disk is neccessary to the operation of your computer, and may not be cleaned.\n"
30END
31
32STRINGTABLE
33BEGIN
34    IDS_CREATE_PARTITION_FAIL "\nDiskPart was unable to create the specified partition.\n"
35    IDS_CREATE_PARTITION_SUCCESS "\nDiskPart succeeded in creating the specified partition.\n"
36END
37
38STRINGTABLE
39BEGIN
40    IDS_DELETE_PARTITION_FAIL "\nDiskPart failed to delete the selected partition.\nPlease make sure the selected partition is valid to delete.\n"
41    IDS_DELETE_PARTITION_SUCCESS "\nDiskPart successfully deleted the selected partition.\n"
42END
43
44/* Disk Information Labels */
45STRINGTABLE
46BEGIN
47    IDS_DETAIL_INFO_DISK_ID "Disk ID: %08lx\n"
48    IDS_DETAIL_INFO_TYPE "Type"
49    IDS_DETAIL_INFO_STATUS "Status"
50    IDS_DETAIL_INFO_PATH   "Path   : %hu\n"
51    IDS_DETAIL_INFO_TARGET "Target : %hu\n"
52    IDS_DETAIL_INFO_LUN_ID "Lun ID : %hu\n"
53    IDS_DETAIL_INFO_LOC_PATH "Location Path"
54    IDS_DETAIL_INFO_CURR_RO_STATE "Current Read-only State"
55    IDS_DETAIL_INFO_RO "Read-only"
56    IDS_DETAIL_INFO_BOOT_DSK "Boot Disk"
57    IDS_DETAIL_INFO_PAGE_FILE_DSK "Pagefile Disk"
58    IDS_DETAIL_INFO_HIBER_FILE_DSK "Hibernation File Disk"
59    IDS_DETAIL_INFO_CRASH_DSK "Crashdump Disk"
60    IDS_DETAIL_INFO_CLST_DSK "Clustered Disk"
61    IDS_DETAIL_PARTITION_NUMBER "Partition %lu\n"
62    IDS_DETAIL_PARTITION_TYPE   "Type          : %02x\n"
63    IDS_DETAIL_PARTITION_HIDDEN "Hidden        : %s\n"
64    IDS_DETAIL_PARTITION_ACTIVE "Active        : %s\n"
65    IDS_DETAIL_PARTITION_OFFSET "Offset in Byte: %I64u\n"
66    IDS_DETAIL_NO_DISKS "\nThere are no disks attached to this volume.\n"
67    IDS_DETAIL_NO_VOLUME "\nThere is no volume associated with this partition.\n"
68END
69
70STRINGTABLE
71BEGIN
72    IDS_FILESYSTEMS_CURRENT "Current Filesystem\n"
73    IDS_FILESYSTEMS_FORMATTING "Filesystems available for formatting\n"
74    IDS_FILESYSTEMS_TYPE "Type        : %s\n"
75    IDS_FILESYSTEMS_CLUSTERSIZE "Cluster size: %lu\n"
76END
77
78STRINGTABLE
79BEGIN
80    IDS_HELP_FORMAT_STRING "%-11.11s - %s"
81END
82
83STRINGTABLE
84BEGIN
85    IDS_INACTIVE_FAIL "\nDiskPart was unable to mark the partition inactive.\nMake sure the partition is valid.\n"
86    IDS_INACTIVE_SUCCESS "\nDiskPart marked the current partition as inactive.\n"
87    IDS_INACTIVE_ALREADY "\nThe current partition is already marked as inactive.\n"
88END
89
90/* Detail header titles */
91STRINGTABLE
92BEGIN
93    IDS_LIST_DISK_HEAD "  Disk ###  Status      Size     Free     Dyn  Gpt\n"
94    IDS_LIST_DISK_LINE "  --------  ----------  -------  -------  ---  ---\n"
95    IDS_LIST_DISK_FORMAT "%c Disk %-3lu  %-10s  %4I64u %-2s  %4I64u %-2s   %1s    %1s\n"
96    IDS_LIST_PARTITION_HEAD "  Partition ###  Type              Size     Offset\n"
97    IDS_LIST_PARTITION_LINE "  -------------  ----------------  -------  -------\n"
98    IDS_LIST_PARTITION_FORMAT "%c Partition %-3lu  %-16s  %4I64u %-2s  %4I64u %-2s\n"
99    IDS_LIST_PARTITION_NO_DISK "\nThere is no disk to list partitions.\nPlease select a disk and try again.\n\n"
100    IDS_LIST_VOLUME_HEAD "  Volume ###  Ltr  Label        FS     Type        Size     Status   Info\n"
101    IDS_LIST_VOLUME_LINE "  ----------  ---  -----------  -----  ----------  -------  -------  --------\n"
102    IDS_LIST_VOLUME_FORMAT "%c Volume %-3lu   %c   %-11.11s  %-5s  %-10.10s  %4I64u %-2s\n"
103END
104
105/* RESCAN command string */
106STRINGTABLE
107BEGIN
108    IDS_RESCAN_START "\nPlease wait while DiskPart scans your configuration...\n"
109    IDS_RESCAN_END "\nDiskPart has finished scanning your configuration.\n\n"
110END
111
112/* Select command strings */
113STRINGTABLE
114BEGIN
115    IDS_SELECT_NO_DISK "\nThere is no disk currently selected.\nPlease select a disk and try again.\n\n"
116    IDS_SELECT_DISK "\nDisk %lu is now the selected disk.\n\n"
117    IDS_SELECT_DISK_INVALID "\nInvalid disk.\n\n"
118    IDS_SELECT_NO_PARTITION "\nThere is no partition currently selected.\nPlease select a disk and try again.\n\n"
119    IDS_SELECT_PARTITION "\nPartition %lu is now the selected partition.\n\n"
120    IDS_SELECT_PARTITION_NO_DISK "\nThere is no disk for selecting a partition.\nPlease select a disk and try again.\n\n"
121    IDS_SELECT_PARTITION_INVALID "\nInvalid partition.\n\n"
122    IDS_SELECT_NO_VOLUME "\nThere is no volume currently selected.\nPlease select a disk and try again.\n\n"
123    IDS_SELECT_VOLUME "\nVolume %lu is now the selected volume.\n\n"
124    IDS_SELECT_VOLUME_INVALID "\nInvalid volume.\n\n"
125END
126
127STRINGTABLE
128BEGIN
129    IDS_SETID_FAIL "\nDiskPart was unable to change the partition type.\n"
130    IDS_SETID_SUCCESS "\nThe partition type was changed successfully.\n"
131    IDS_SETID_INVALID_FORMAT "\nThe format of the partition type is invalid.\n"
132    IDS_SETID_INVALID_TYPE "\nThe partition type is invalid.\n"
133END
134
135/* Disk Status */
136STRINGTABLE
137BEGIN
138    IDS_STATUS_YES "Yes"
139    IDS_STATUS_NO "No"
140    IDS_STATUS_DISK_HEALTHY "Healthy"
141    IDS_STATUS_DISK_SICK "Sick"
142    IDS_STATUS_UNAVAILABLE "UNAVAILABLE"
143    IDS_STATUS_ONLINE "Online"
144    IDS_STATUS_OFFLINE "Offline"
145    IDS_STATUS_NO_MEDIA "No Media"
146END
147
148/* CMD Messages for commands */
149STRINGTABLE
150BEGIN
151    IDS_MSG_ARG_SYNTAX_ERROR "The argument(s) specified for this command are not valid.\nFor more information on the command type:"
152END
153
154/* Help Command Descriptions */
155STRINGTABLE
156BEGIN
157    IDS_HELP_ACTIVE                    "Mark the selected partition as active.\n"
158    IDS_HELP_ADD                       "Add a mirror to a simple volume.\n"
159    IDS_HELP_ASSIGN                    "Assign a drive letter or mount point to the selected volume.\n"
160    IDS_HELP_ATTACH                    "Attaches a virtual disk file.\n"
161    IDS_HELP_ATTRIBUTES                "Manipulate volume or disk attributes.\n"
162    IDS_HELP_AUTOMOUNT                 "Enable and Disable automatic mounting of basic volumes.\n"
163    IDS_HELP_BREAK                     "Break a mirror set.\n"
164    IDS_HELP_CLEAN                     "Clear the configuration information, or all information, off\n              the disk.\n"
165    IDS_HELP_COMPACT                   "Attempts to reduce the physical size of the file.\n"
166    IDS_HELP_CONVERT                   "Convert between different disk formats.\n"
167
168    IDS_HELP_CREATE                    "Create a volume, partition, or virtual disk.\n"
169    IDS_HELP_CREATE_PARTITION          "Create a partition.\n"
170    IDS_HELP_CREATE_PARTITION_EFI      "Create an EFI system partition.\n"
171    IDS_HELP_CREATE_PARTITION_EXTENDED "Create an extended partition.\n"
172    IDS_HELP_CREATE_PARTITION_LOGICAL  "Create a logical drive.\n"
173    IDS_HELP_CREATE_PARTITION_MSR      "Create an MSR partition.\n"
174    IDS_HELP_CREATE_PARTITION_PRIMARY  "Create a primary partition.\n"
175    IDS_HELP_CREATE_VOLUME             "Create a volume.\n"
176    IDS_HELP_CREATE_VDISK              "Create a virtual disk file.\n"
177
178    IDS_HELP_DELETE                    "Delete an object.\n"
179    IDS_HELP_DELETE_DISK               "Delete a disk.\n"
180    IDS_HELP_DELETE_PARTITION          "Delete a partition.\n"
181    IDS_HELP_DELETE_VOLUME             "Delete a volume.\n"
182
183    IDS_HELP_DETACH                    "Detaches a virtual disk file.\n"
184
185    IDS_HELP_DETAIL                    "Provide details about an object.\n"
186    IDS_HELP_DETAIL_DISK               "Print disk details.\n"
187    IDS_HELP_DETAIL_PARTITION          "Print partition details.\n"
188    IDS_HELP_DETAIL_VOLUME             "Print volume details.\n"
189
190    IDS_HELP_EXIT                      "Exit DiskPart.\n"
191    IDS_HELP_EXPAND                    "Expands the maximum size available on a virtual disk.\n"
192    IDS_HELP_EXTEND                    "Extend a volume.\n"
193    IDS_HELP_FILESYSTEMS               "Display current and supported file systems on the volume.\n"
194    IDS_HELP_FORMAT                    "Format the volume or partition.\n"
195    IDS_HELP_GPT                       "Assign attributes to the selected GPT partition.\n"
196    IDS_HELP_HELP                      "Display a list of commands.\n"
197    IDS_HELP_IMPORT                    "Import a disk group.\n"
198    IDS_HELP_INACTIVE                  "Mark the selected partition as inactive.\n"
199
200    IDS_HELP_LIST                      "Display a list of objects.\n"
201    IDS_HELP_LIST_DISK                 "List disks.\n"
202    IDS_HELP_LIST_PARTITION            "List partitions.\n"
203    IDS_HELP_LIST_VOLUME               "List volumes.\n"
204    IDS_HELP_LIST_VDISK                "List virtual disk files.\n"
205
206    IDS_HELP_MERGE                     "Merges a child disk with its parents.\n"
207    IDS_HELP_OFFLINE                   "Offline an object that is currently marked as online.\n"
208    IDS_HELP_ONLINE                    "Online an object that is currently marked as offline.\n"
209    IDS_HELP_RECOVER                   "Refreshes the state of all disks in the invalid pack,\n              and resynchronizes mirrored volumes and RAID5 volumes\n              that have stale plex or parity data.\n"
210    IDS_HELP_REM                       "Does nothing. This is used to comment scripts.\n"
211    IDS_HELP_REMOVE                    "Remove a drive letter or mount point assignment.\n"
212    IDS_HELP_REPAIR                    "Repair a RAID-5 volume with a failed member.\n"
213    IDS_HELP_RESCAN                    "Rescan the computer looking for disks and volumes.\n"
214    IDS_HELP_RETAIN                    "Place a retained partition under a simple volume.\n"
215    IDS_HELP_SAN                       "Display or set the SAN policy for the currently booted OS.\n"
216
217    IDS_HELP_SELECT                    "Shift the focus to an object.\n"
218    IDS_HELP_SELECT_DISK               "Moves the focus to the disk.\n"
219    IDS_HELP_SELECT_PARTITION          "Moves the focus to the partition.\n"
220    IDS_HELP_SELECT_VOLUME             "Moves the focus to the volume.\n"
221    IDS_HELP_SELECT_VDISK              "Moves the focus to the virtual disk.\n"
222
223    IDS_HELP_SETID                     "Change the partition type.\n"
224    IDS_HELP_SHRINK                    "Reduce the size of the selected volume.\n"
225
226    IDS_HELP_UNIQUEID                  "Displays or sets the GUID partition table (GPT) identifier\n              or master boot record (MBR) signature of a disk.\n"
227    IDS_HELP_UNIQUEID_DISK             "Displays or sets the GUID partition table (GPT) identifier\n              or master boot record (MBR) signature of a disk.\n"
228END
229
230/* Common Error Messages */
231STRINGTABLE
232BEGIN
233    IDS_ERROR_MSG_NO_SCRIPT "Error opening script: %s\n"
234    IDS_ERROR_MSG_BAD_ARG "Error processing argument: %s\n"
235    IDS_ERROR_INVALID_ARGS "Invalid arguments\n"
236    IDS_ERROR_NO_MEDIUM "No medium in device.\n"
237END
238