xref: /reactos/base/system/diskpart/lang/en-US.rc (revision a4cad7be)
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
18/* Disk Information Labels */
19STRINGTABLE
20BEGIN
21    IDS_DETAIL_INFO_DISK_ID "Disk"
22    IDS_DETAIL_INFO_TYPE "Type"
23    IDS_DETAIL_INFO_STATUS "Status"
24    IDS_DETAIL_INFO_PATH "Path"
25    IDS_DETAIL_INFO_TARGET "Target"
26    IDS_DETAIL_INFO_LUN_ID "LUN ID"
27    IDS_DETAIL_INFO_LOC_PATH "Location Path"
28    IDS_DETAIL_INFO_CURR_RO_STATE "Current Read-only State"
29    IDS_DETAIL_INFO_RO "Read-only"
30    IDS_DETAIL_INFO_BOOT_DSK "Boot Disk"
31    IDS_DETAIL_INFO_PAGE_FILE_DSK "Pagefile Disk"
32    IDS_DETAIL_INFO_HIBER_FILE_DSK "Hibernation File Disk"
33    IDS_DETAIL_INFO_CRASH_DSK "Crashdump Disk"
34    IDS_DETAIL_INFO_CLST_DSK "Clustered Disk"
35END
36
37/* Detail header titles */
38STRINGTABLE
39BEGIN
40    IDS_LIST_DISK_HEAD "\n  Disk ###  Status      Size     Free     Dyn  Gpt\n"
41    IDS_LIST_DISK_LINE "  --------  ----------  -------  -------  ---  ---\n"
42    IDS_LIST_DISK_FORMAT "%c %7lu   %-10s  %4I64u %-2s  %4I64u %-2s   %1s    %1s\n"
43    IDS_LIST_PARTITION_HEAD "\n  Partition      Type              Size     Offset\n"
44    IDS_LIST_PARTITION_LINE "  -------------  ----------------  -------  -------\n"
45    IDS_LIST_PARTITION_FORMAT "%c Partition %2lu   %-16s  %4I64u %-2s  %4I64u %-2s\n"
46    IDS_LIST_PARTITION_NO_DISK "\nThere is no disk to list partitions.\nPlease select a disk and try again.\n\n"
47    IDS_LIST_VOLUME_HEAD "  Volume ###  Ltr  Label        FS     Type        Size     Status   Info\n"
48    IDS_LIST_VOLUME_LINE "  ----------  ---  -----------  -----  ----------  -------  -------  --------\n"
49    IDS_LIST_VOLUME_FORMAT "  Volume %3lu   %c   %-11s  %-5s  %10u  %4I64u %-2s\n"
50END
51
52/* RESCAN command string */
53STRINGTABLE
54BEGIN
55    IDS_RESCAN_START "\nPlease wait while DiskPart scans your configuration...\n"
56    IDS_RESCAN_END "\nDiskPart has finished scanning your configuration.\n\n"
57END
58
59/* Select command strings */
60STRINGTABLE
61BEGIN
62    IDS_SELECT_NO_DISK "\nThere is no disk currently selected.\nPlease select a disk and try again.\n\n"
63    IDS_SELECT_DISK "\nDisk %lu is now the selected disk.\n\n"
64    IDS_SELECT_DISK_INVALID "\nInvalid disk.\n\n"
65    IDS_SELECT_NO_PARTITION "\nThere is no partition currently selected.\nPlease select a disk and try again.\n\n"
66    IDS_SELECT_PARTITION "\nPartition %lu is now the selected partition.\n\n"
67    IDS_SELECT_PARTITION_NO_DISK "\nThere is no disk for selecting a partition.\nPlease select a disk and try again.\n\n"
68    IDS_SELECT_PARTITION_INVALID "\nInvalid partition.\n\n"
69    IDS_SELECT_NO_VOLUME "\nThere is no volume currently selected.\nPlease select a disk and try again.\n\n"
70    IDS_SELECT_VOLUME "\nVolume %lu is now the selected volume.\n\n"
71    IDS_SELECT_VOLUME_INVALID "\nInvalid volume.\n\n"
72END
73
74/* Disk Status */
75STRINGTABLE
76BEGIN
77    IDS_STATUS_YES "Yes"
78    IDS_STATUS_NO "No"
79    IDS_STATUS_DISK_HEALTHY "Healthy"
80    IDS_STATUS_DISK_SICK "Sick"
81    IDS_STATUS_UNAVAILABLE "UNAVAILABLE"
82    IDS_STATUS_ONLINE "Online"
83    IDS_STATUS_OFFLINE "Offline"
84    IDS_STATUS_NO_MEDIA "No Media"
85END
86
87/* CMD Messages for commands */
88STRINGTABLE
89BEGIN
90    IDS_MSG_ARG_SYNTAX_ERROR "The argument(s) specified for this command are not valid.\nFor more information on the command type:"
91END
92
93/* Help Command Descriptions */
94STRINGTABLE
95BEGIN
96    IDS_HELP_CMD_DESC_ACTIVE "ACTIVE\t\t- Mark the selected partition as active.\n"
97    IDS_HELP_CMD_DESC_ADD "ADD\t\t- Add a mirror to a simple volume.\n"
98    IDS_HELP_CMD_DESC_ASSIGN "ASSIGN\t\t- Assign a drive letter or mount point to the selected volume.\n"
99    IDS_HELP_CMD_DESC_ATTACH "ATTACH\t\t- Attaches a virtual disk file.\n"
100    IDS_HELP_CMD_DESC_ATTRIBUTES "ATTRIBUTES\t- Manipulate volume or disk attributes.\n"
101    IDS_HELP_CMD_DESC_AUTOMOUNT "AUTOMOUNT\t- Enable and Disable automatic mounting of basic volumes.\n"
102    IDS_HELP_CMD_DESC_BREAK "BREAK\t\t- Break a mirror set.\n"
103    IDS_HELP_CMD_DESC_CLEAN "CLEAN\t\t- Clear the configuration information, or all information, off\n\t\t  the disk.\n"
104    IDS_HELP_CMD_DESC_COMPACT "COMPACT\t\t- Attempts to reduce the physical size of the file.\n"
105    IDS_HELP_CMD_DESC_CONVERT "CONVERT\t\t- Convert between different disk formats.\n"
106    IDS_HELP_CMD_DESC_CREATE "CREATE\t\t- Create a volume, partition, or virtual disk.\n"
107    IDS_HELP_CMD_DESC_DELETE "DELETE\t\t- Delete an object.\n"
108    IDS_HELP_CMD_DESC_DETACH "DETACH\t\t- Detaches a virtual disk file.\n"
109    IDS_HELP_CMD_DESC_DETAIL "DETAIL\t\t- Provide details about an object.\n"
110    IDS_HELP_CMD_DESC_EXIT "EXIT\t\t- Exit DiskPart.\n"
111    IDS_HELP_CMD_DESC_EXPAND "EXPAND\t\t- Expands the maximum size available on a virtual disk.\n"
112    IDS_HELP_CMD_DESC_EXTEND "EXTEND\t\t- Extend a volume.\n"
113    IDS_HELP_CMD_DESC_FS "FILESYSTEMS\t- Display current and supported file systems on the volume.\n"
114    IDS_HELP_CMD_DESC_FORMAT "FORMAT\t\t- Format the volume or partition.\n"
115    IDS_HELP_CMD_DESC_GPT "GPT\t\t- Assign attributes to the selected GPT partition.\n"
116    IDS_HELP_CMD_DESC_HELP "HELP\t\t- Display a list of commands.\n"
117    IDS_HELP_CMD_DESC_IMPORT "IMPORT\t\t- Import a disk group.\n"
118    IDS_HELP_CMD_DESC_INACTIVE "INACTIVE\t- Mark the selected partition as inactive.\n"
119    IDS_HELP_CMD_DESC_LIST "LIST\t\t- Display a list of objects.\n"
120    IDS_HELP_CMD_DESC_MERGE "MERGE\t\t- Merges a child disk with its parents.\n"
121    IDS_HELP_CMD_DESC_OFFLINE "OFFLINE\t\t- Offline an object that is currently marked as online.\n"
122    IDS_HELP_CMD_DESC_ONLINE "ONLINE\t\t- Online an object that is currently marked as offline.\n"
123    IDS_HELP_CMD_DESC_RECOVER "RECOVER\t\t- Refreshes the state of all disks in the invalid pack,\n\t\t  and resynchronizes mirrored volumes and RAID5 volumes\n\t\t  that have stale plex or parity data.\n"
124    IDS_HELP_CMD_DESC_REM "REM\t\t- Does nothing. This is used to comment scripts.\n"
125    IDS_HELP_CMD_DESC_REMOVE "REMOVE\t\t- Remove a drive letter or mount point assignment.\n"
126    IDS_HELP_CMD_DESC_REPAIR "REPAIR\t\t- Repair a RAID-5 volume with a failed member.\n"
127    IDS_HELP_CMD_DESC_RESCAN "RESCAN\t\t- Rescan the computer looking for disks and volumes.\n"
128    IDS_HELP_CMD_DESC_RETAIN "RETAIN\t\t- Place a retained partition under a simple volume.\n"
129    IDS_HELP_CMD_DESC_SAN "SAN\t\t- Display or set the SAN policy for the currently booted OS.\n"
130    IDS_HELP_CMD_DESC_SELECT "SELECT\t\t- Shift the focus to an object.\n"
131    IDS_HELP_CMD_DESC_SETID "SETID\t\t- Change the partition type.\n"
132    IDS_HELP_CMD_DESC_SHRINK "SHRINK\t\t- Reduce the size of the selected volume.\n"
133    IDS_HELP_CMD_DESC_UNIQUEID "UNIQUEID\t- Displays or sets the GUID partition table (GPT) identifier\n\t\t  or master boot record (MBR) signature of a disk."
134END
135
136/* Common Error Messages */
137STRINGTABLE
138BEGIN
139    IDS_ERROR_MSG_NO_SCRIPT "Error opening script: %s\n"
140    IDS_ERROR_MSG_BAD_ARG "Error processing argument: %s\n"
141    IDS_ERROR_INVALID_ARGS "Invalid arguments\n"
142END
143
144/* Active help descriptions */
145STRINGTABLE
146BEGIN
147    IDS_HELP_CMD_ACTIVE "\n\
148<Add active command help text here>\n\n"
149END
150
151/* Add help descriptions */
152STRINGTABLE
153BEGIN
154    IDS_HELP_CMD_ADD "\n\
155<Add add command help text here>\n\n"
156END
157
158/* Assign help descriptions */
159STRINGTABLE
160BEGIN
161    IDS_HELP_CMD_ASSIGN "\n\
162<Add assign command help text here>\n\n"
163END
164
165/* Attach help description */
166STRINGTABLE
167BEGIN
168    IDS_HELP_CMD_ATTACH "\n\
169<Add attach command help text here>\n\n"
170END
171
172/* Attributes Command Messages */
173STRINGTABLE
174BEGIN
175    IDS_HELP_CMD_ATTRIBUTES "\n\
176<Add attributes command help text here>\n\n"
177END
178
179/* Automount help descriptions */
180STRINGTABLE
181BEGIN
182    IDS_HELP_CMD_AUTOMOUNT "\n\
183<Add automount command help text here>\n\n"
184END
185
186/* Break help descriptions */
187STRINGTABLE
188BEGIN
189    IDS_HELP_CMD_BREAK "\n\
190<Add break command help text here>\n\n"
191END
192
193/* Clean help descriptions */
194STRINGTABLE
195BEGIN
196    IDS_HELP_CMD_CLEAN "\n\
197<Add clean command help text here>\n\n"
198END
199
200/* Compact help description */
201STRINGTABLE
202BEGIN
203    IDS_HELP_CMD_COMPACT "\n\
204<Add compact command help text here>\n\n"
205END
206
207/* Convert help description */
208STRINGTABLE
209BEGIN
210    IDS_HELP_CMD_CONVERT "\n\
211<Add convert command help text here>\n\n"
212END
213
214/* Convert help description */
215STRINGTABLE
216BEGIN
217    IDS_HELP_CMD_CREATE "\n\
218<Add create command help text here>\n\n"
219END
220
221/* Delete help description */
222STRINGTABLE
223BEGIN
224    IDS_HELP_CMD_DELETE "\n\
225<Add delete command help text here>\n\n"
226END
227
228/* Delete help description */
229STRINGTABLE
230BEGIN
231    IDS_HELP_CMD_DETAIL "\n\
232<Add detail command help text here>\n\n"
233END
234
235/* Detach help description */
236STRINGTABLE
237BEGIN
238    IDS_HELP_CMD_DETACH "\n\
239<Add detach command help text here>\n\n"
240END
241
242/* Expand help description */
243STRINGTABLE
244BEGIN
245    IDS_HELP_CMD_EXPAND "\n\
246<Add expand command help text here>\n\n"
247END
248
249/* Extend help description */
250STRINGTABLE
251BEGIN
252    IDS_HELP_CMD_EXTEND "\n\
253<Add extend command help text here>\n\n"
254END
255
256/* Filesystems help description */
257STRINGTABLE
258BEGIN
259    IDS_HELP_CMD_FILESYSTEMS "\n\
260<Add filesystems command help text here>\n\n"
261END
262
263/* Format help description */
264STRINGTABLE
265BEGIN
266    IDS_HELP_CMD_FORMAT "\n\
267<Add format command help text here>\n\n"
268END
269
270/* GPT help description */
271STRINGTABLE
272BEGIN
273    IDS_HELP_CMD_GPT "\n\
274<Add gpt command help text here>\n\n"
275END
276
277/* Help help descriptions */
278STRINGTABLE
279BEGIN
280    IDS_HELP_CMD_HELP "\n\
281<Add help command help text here>\n\n"
282END
283
284/* Import help descriptions */
285STRINGTABLE
286BEGIN
287    IDS_HELP_CMD_IMPORT "\n\
288<Add import command help text here>\n\n"
289END
290
291/* Inactive help descriptions */
292STRINGTABLE
293BEGIN
294    IDS_HELP_CMD_INACTIVE "\n\
295<Add inactive command help text here>\n\n"
296END
297
298/* List help descriptions */
299STRINGTABLE
300BEGIN
301    IDS_HELP_CMD_LIST "\n\
302<Add list command help text here>\n\n"
303END
304
305/* Merge help descriptions */
306STRINGTABLE
307BEGIN
308    IDS_HELP_CMD_MERGE "\n\
309<Add merge command help text here>\n\n"
310END
311
312/* Offline help descriptions */
313STRINGTABLE
314BEGIN
315    IDS_HELP_CMD_OFFLINE "\n\
316<Add OFFLINE command help text here>\n\n"
317END
318
319/* Online help descriptions */
320STRINGTABLE
321BEGIN
322    IDS_HELP_CMD_ONLINE "\n\
323<Add ONLINE command help text here>\n\n"
324END
325
326/* Recover help descriptions */
327STRINGTABLE
328BEGIN
329    IDS_HELP_CMD_RECOVER "\n\
330<Add RECOVER command help text here>\n\n"
331END
332
333/* Remove help descriptions */
334STRINGTABLE
335BEGIN
336    IDS_HELP_CMD_REMOVE "\n\
337<Add REMOVE command help text here>\n\n"
338END
339
340/* Repair help descriptions */
341STRINGTABLE
342BEGIN
343    IDS_HELP_CMD_REPAIR "\n\
344<Add REPAIR command help text here>\n\n"
345END
346
347/* Rescan help descriptions */
348STRINGTABLE
349BEGIN
350    IDS_HELP_CMD_RESCAN "\n\
351<Add RESCAN command help text here>\n\n"
352END
353
354/* Retain help descriptions */
355STRINGTABLE
356BEGIN
357    IDS_HELP_CMD_RETAIN "\n\
358<Add RETAIN command help text here>\n\n"
359END
360
361/* San help descriptions */
362STRINGTABLE
363BEGIN
364    IDS_HELP_CMD_SAN "\n\
365<Add SAN command help text here>\n\n"
366END
367
368/* Select help descriptions */
369STRINGTABLE
370BEGIN
371    IDS_HELP_CMD_SELECT "\n\
372<Add SELECT command help text here>\n\n"
373END
374
375/* Setid help descriptions */
376STRINGTABLE
377BEGIN
378    IDS_HELP_CMD_SETID "\n\
379<Add SETID command help text here>\n\n"
380END
381
382/* Setid help descriptions */
383STRINGTABLE
384BEGIN
385    IDS_HELP_CMD_SHRINK "\n\
386<Add SHRINK command help text here>\n\n"
387END
388
389/* Uniqueid help descriptions */
390STRINGTABLE
391BEGIN
392    IDS_HELP_CMD_UNIQUEID "\n\
393<Add UNIQUEID command help text here>\n\n"
394END
395