]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/CMD/FDISK/FDISKMSG.C

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / CMD / FDISK / FDISKMSG.C
1 /* FDISK MESSAGE FILE */
2
3 /************************************************************************/
4 /* Please log all modifications to this file: */
5 /*----------------------------------------------------------------------*/
6 /* Date: 04/04/86 */
7 /* Changed by: Mark T */
8 /* Message changed: menu_1 - menu_38 */
9 /* Reason: Creation of file */
10 /*----------------------------------------------------------------------*/
11 /* Date: 05/04/87 */
12 /* Changed by: Dennis M */
13 /* Message changed: menu_1 - menu_44 */
14 /* Reason: DOS 3.3 */
15 /*----------------------------------------------------------------------*/
16 /* Date: */
17 /* Changed by: */
18 /* Message changed: */
19 /* Reason: */
20 /*----------------------------------------------------------------------*/
21 /***********************************************************************/
22
23 /************************************************************************/
24 /* FDISK MESSAGES */
25 /* */
26 /* Portions of the screen that are handled in the msg are indicated on */
27 /* the listing of the screen with the message name given. If the text */
28 /* message is defined in another screen, then the name is followed by */
29 /* a "#" character */
30 /* */
31 /* NOTE TO TRANSLATORS */
32 /* The characters inside the <> and the ^^ are control characters and */
33 /* should not be translated. The Control characters are defined as */
34 /* follows: */
35 /* */
36 /* <H> - Highlight the following text */
37 /* <R> - Regular text */
38 /* <U> - Underline the following text */
39 /* <B> - Blink the following text */
40 /* <O> - Turn off Blink */
41 /* <Y> - Print YES character, as set by define */
42 /* <N> - Print NO character, as set by define */
43 /* <W> - Sound the beep */
44 /* <S> - Save cursor position for later use */
45 /* <G> - Cursor position left justified and regular proceed to right */
46 /* <C> - Clear the screen out from control char to end of line */
47 /* <I> - Insert character from Insert[] string. This string must be set */
48 /* up prior to displaying the message. The first <I> will insert */
49 /* Insert[0], the second Insert[1], etc....This will move the */
50 /* cursor one postition. The Insert%% string will be initialized */
51 /* */
52 /* */
53 /* Multiple control characters can be between the <>. */
54 /* */
55 /* The ^^ indicates Row and column for the text and has the format of */
56 /* ^rrcc^ where the numbers are decimal and zero based .first row/col */
57 /* is 00. The numbers are in decimal, and must be 2 characters, which */
58 /* means rows/cols 0-9 should be listed as 00-09. For example, the 5th */
59 /* row, 3rd column on the screen would be listed as ^0402^. */
60 /* */
61 /* The column number is always the column desired. The row number is */
62 /* an offset from the previous row. For example, if the text just */
63 /* printed is on row 6, and the next text should be printed 2 rows */
64 /* down in column 0, then the control strin would be ^0201^. The first */
65 /* row specified in the message is assumed to be based off of row 0, */
66 /* it would actually specify the actual row for the start of the msg */
67 /* to be printed. */
68 /* */
69 /* NOTE: ALWAYS SAVE THIS FILE WITH NO TABS CHARACTERS */
70 /************************************************************************/
71
72
73 /************************************************************************/
74 /* */
75 /* Define Area for text variables */
76 /* */
77 /************************************************************************/
78
79 #define YES 'Y'
80 #define NO 'N'
81 #define ACTIVE_PART 'A' /* Character to indicate active status */
82 #define DRIVE_INDICATOR ':' /* Character displayed to indicate drive letter */
83
84 /* */
85 /* */
86 /* The following character strings are required to display the */
87 /* menu screens for FDISK. The messages have a label type of: menu_xx */
88 /* */
89 /* */
90
91 /*******************************************************************************************************/
92 /* Screen for DO_MAIN_MENU */
93 /* */
94 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
95 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
96 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
97 /* 00³ IBM Personal Computer ³menu_1 */
98 /* 01³ Fixed Disk Setup Program Version 3.40 ³menu_1 */
99 /* 02³ (C%Copyright IBM Corp. 1983,1988 ³menu_1 */
100 /* 03³ ³ */
101 /* 04³ FDISK Options ³menu_2 */
102 /* 05³ ³ */
103 /* 06³ Current fixed disk drive: # ³menu_5 */
104 /* 07³ ³ */
105 /* 08³ Choose one of the following: ³menu_3 */
106 /* 09³ ³ */
107 /* 10³ 1. Create DOS Partition or Logical DOS Drive ³menu_2 */
108 /* 11³ 2. Set active partition ³menu_2 */
109 /* 12³ 3. Delete DOS Partition or Logical DOS Drive ³menu_2 */
110 /* 13³ 4. Display partition information ³menu_2 */
111 /* 14³ 5. Select next fixed disk drive ³menu_4 */
112 /* 15³ ³ */
113 /* 16³ ³ */
114 /* 17³ Enter choice: [#] ³menu_7 */
115 /* 18³ ³ */
116 /* 19³ ³ */
117 /* 20³ Warning! No partitions are set active - disk 1 is not startable unless ³menu_6 */
118 /* 21³ a partition is set active. ³ */
119 /* 22³ ³ */
120 /* 23³ ³ */
121 /* 24³ Press ESC to exit FDISK ³menu_2 */
122 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
123 /*******************************************************************************************************/
124
125
126 /*-------------------------------------------------------------*/
127 char far *menu_1 =
128
129 "^0029^<R>Microsoft DOS \
130 ^0121^<R>Fixed Disk Setup Program Version 4.00\
131 ^0124^<R>(C)Copyright 1988 Microsoft Corp";
132
133
134
135 /*-------------------------------------------------------------*/
136 char far *menu_2 =
137
138 "^0433^<H>FDISK Options\
139 ^0604^<H>1. <R>Create DOS Partition or Logical DOS Drive\
140 ^0104^<H>2. <R>Set active partition\
141 ^0104^<H>3. <R>Delete DOS Partition or Logical DOS Drive\
142 ^0104^<H>4. <R>Display partition information\
143 ^1104^<R>Press <H>Esc<R> to exit FDISK";
144
145 /*-------------------------------------------------------------*/
146 char far *menu_3 =
147
148 "^0804^<R>Choose one of the following:";
149
150 /*-------------------------------------------------------------*/
151 char far *menu_4 =
152
153 "^1404^<H>5. <R>Select next fixed disk drive";
154
155 /*-------------------------------------------------------------*/
156 char far *menu_5 =
157
158 "^0604^<R>Current fixed disk drive: <H><I>";
159
160 /*-------------------------------------------------------------*/
161 char far *menu_6 =
162
163 "^2004^<H>Warning! <R>No partitions are set active - disk 1 is not startable unless\
164 ^0104^<R>a partition is set active";
165
166 /*-------------------------------------------------------------*/
167 char far *menu_7 =
168
169 "^1704^<H>Enter choice: [<S> ]";
170
171 /*******************************************************************************************************/
172 /* Screen for CREATE_PARTITION */
173 /* */
174 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
175 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
176 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
177 /* 00³ ³ */
178 /* 01³ ³ */
179 /* 02³ ³ */
180 /* 03³ ³ */
181 /* 04³ Create DOS Partition or Logical DOS Drive ³menu_8 */
182 /* 05³ ³ */
183 /* 06³ Current fixed disk drive: # ³menu_5 # */
184 /* 07³ ³ */
185 /* 08³ Choose one of the following: ³menu_3 # */
186 /* 09³ ³ */
187 /* 10³ 1. Create Primary DOS Partition ³menu_9 */
188 /* 11³ 2. Create Extended DOS Partition ³menu_9 */
189 /* 12³ 3. Create logical DOS Drive(s) in the Extended DOS Partition ³menu_10 */
190 /* 13³ ³ */
191 /* 14³ ³ */
192 /* 15³ ³ */
193 /* 16³ ³ */
194 /* 17³ Enter choice: [ ] ³menu_7 # */
195 /* 18³ ³ */
196 /* 19³ ³ */
197 /* 20³ ³ */
198 /* 21³ ³ */
199 /* 22³ ³ */
200 /* 23³ ³ */
201 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
202 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
203 /*******************************************************************************************************/
204
205 /*-------------------------------------------------------------*/
206 char far *menu_8 =
207
208 "^0420^<H>Create DOS Partition or Logical DOS Drive";
209
210 /*-------------------------------------------------------------*/
211 char far *menu_9 =
212
213 "^1004^<H>1. <R>Create Primary DOS Partition\
214 ^0104^<H>2. <R>Create Extended DOS Partition";
215
216 /*-------------------------------------------------------------*/
217 char far *menu_10 =
218
219 "^1204^<H>3. <R>Create Logical DOS Drive(s) in the Extended DOS Partition";
220
221 /*-------------------------------------------------------------*/
222 char far *menu_11 =
223
224 "^2404^<R>Press <H>Esc<R> to return to FDISK Options";
225
226
227 /*******************************************************************************************************/
228 /* Screen for DOS_CREATE_PARTITION */
229 /* */
230 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
231 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
232 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
233 /* 00³ ³ */
234 /* 01³ ³ */
235 /* 02³ ³ */
236 /* 03³ ³ */
237 /* 04³ Create Primary DOS Partition ³menu_12 */
238 /* 05³ ³ */
239 /* 06³ Current fixed disk drive: # ³menu_5 # */
240 /* 07³ ³ */
241 /* 08³ Do you wish to use the maximum available size for a Primary DOS Partition ³menu_13 */
242 /* 09³ and make the partition active (Y/N).....................? [Y] ³menu_13 */
243 /* 10³ ³ */
244 /* 11³ ³ */
245 /* 12³ ³ */
246 /* 13³ ³ */
247 /* 14³ ³ */
248 /* 15³ ³ */
249 /* 16³ ³ */
250 /* 17³ ³ */
251 /* 18³ ³ */
252 /* 19³ ³ */
253 /* 20³ ³ */
254 /* 21³ ³ */
255 /* 22³ ³ */
256 /* 23³ ³ */
257 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
258 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
259 /*******************************************************************************************************/
260
261 /*-------------------------------------------------------------*/
262 char far *menu_12 =
263
264 "^0427^<H>Create Primary DOS Partition";
265
266 /*-------------------------------------------------------------*/
267 char far *menu_13 =
268
269 "^0804^<R>Do you wish to use the maximum available size for a Primary DOS Partition\
270 ^0104^<R>and make the partition active (<Y>/<N>).....................? <H>[<S> ]";
271
272 /*-------------------------------------------------------------*/
273 char far *menu_45 =
274
275 "^0804^<R>Do you wish to use the maximum available size for a Primary DOS Partition\
276 ^0104^<R>(<Y>/<N>)...................................................? <H>[<S> ]";
277
278
279 /*******************************************************************************************************/
280 /* Screen for INPUT_DOS_CREATE */
281 /* */
282 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
283 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
284 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
285 /* 00³ ³ */
286 /* 01³ ³ */
287 /* 02³ ³ */
288 /* 03³ ³ */
289 /* 04³ Create Primary DOS Partition ³menu_12 # */
290 /* 05³ ³ */
291 /* 06³ Current fixed disk drive: # ³menu_5 # */
292 /* 07³ ³ */
293 /* 08³ Partition Status Type Size in Mbytes Percentage of Disk Used ³menu_14 */
294 /* 09³ ## # # ####### #### ###% ³ */
295 /* 10³ ## # # ####### #### ###% ³ */
296 /* 11³ ## # # ####### #### ###% ³ */
297 /* 12³ ## # # ####### #### ###% ³ */
298 /* 13³ ³ */
299 /* 14³ Total disk space is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_15 */
300 /* 15³ Maximum space available for partition is #### Mbytes (###%) ³menu_16 */
301 /* 16³ ³ */
302 /* 17³ ³ */
303 /* 18³ Enter partition size in Mbytes or percent of disk space (%) to ³menu_39 */
304 /* 19³ create a Primary DOS Partition..................................[####] ³ */
305 /* 20³ ³ */
306 /* 21³ ³ */
307 /* 22³ ³ */
308 /* 23³ ³ */
309 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
310 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
311 /****************************************************************/
312
313 /*-------------------------------------------------------------*/
314 char far *menu_14 =
315
316 "^0804^<R>Partition Status Type Size in Mbytes Percentage of Disk Used\
317 ^0104^<R> <II> <I> <I> <IIIIIII> <IIII> <IIII>\
318 ^0104^<R> <II> <I> <I> <IIIIIII> <IIII> <IIII>\
319 ^0104^<R> <II> <I> <I> <IIIIIII> <IIII> <IIII>\
320 ^0104^<R> <II> <I> <I> <IIIIIII> <IIII> <IIII>";
321
322 /*-------------------------------------------------------------*/
323 char far *menu_15 =
324
325 "^1404^<R>Total disk space is <HIIIIR> Mbytes (1 Mbyte = 1048576 bytes)";
326
327 /*-------------------------------------------------------------*/
328 char far *menu_16 =
329
330 "^1504^<RC>Maximum space available for partition is <HIIIIR> Mbytes (<HIIIIR>)";
331
332 /*-------------------------------------------------------------*/
333 char far *menu_39 =
334
335 "^1804^<RC>Enter partition size in Mbytes or percent of disk space (%) to\
336 ^0104^<RC>create a Primary DOS Partition.................................: <H>[<IIISI>]";
337
338
339 /****************************************************************************************************/
340 /* Screen for EXT_CREATE_PARTITION */
341 /* */
342 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
343 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
344 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
345 /* 00³ ³ */
346 /* 01³ ³ */
347 /* 02³ ³ */
348 /* 03³ ³ */
349 /* 04³ Create Extended DOS Partition ³menu_17 */
350 /* 05³ ³ */
351 /* 06³ Current fixed disk drive: # ³menu_5 # */
352 /* 07³ ³ */
353 /* 08³ Partition Status Type Size in Mbytes Percentage of Disk Used ³menu_14 # */
354 /* 09³ ## # # ####### #### ###% ³ */
355 /* 10³ ## # # ####### #### ###% ³ */
356 /* 11³ ## # # ####### #### ###% ³ */
357 /* 12³ ## # # ####### #### ###% ³ */
358 /* 13³ ³ */
359 /* 14³ Total disk space is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_15 # */
360 /* 15³ Maximum space available for partition is #### Mbytes (##%) ³menu_16 # */
361 /* 16³ ³ */
362 /* 17³ ³ */
363 /* 18³ Enter partition size in Mbytes or percent of disk space (%) to ³menu_42 # */
364 /* 19³ create an Extended DOS Partition................................[####] ³ */
365 /* 20³ ³ */
366 /* 21³ ³ */
367 /* 22³ ³ */
368 /* 23³ ³ */
369 /* 24³ Press ESC to continue ³menu_46 */
370 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
371 /***************************************************************/
372
373 /*-------------------------------------------------------------*/
374 char far *menu_17 =
375
376 "^0427^<H>Create Extended DOS Partition";
377
378 /*-------------------------------------------------------------*/
379 char far *menu_42 =
380
381 "^1804^<RC>Enter partition size in Mbytes or percent of disk space (%) to\
382 ^0104^<RC>create an Extended DOS Partition..............................: <H>[<IIISI>]";
383
384
385 /*-------------------------------------------------------------*/
386 char far *menu_46 =
387
388 "^2404^<R>Press <H>Esc<R> to continue";
389
390
391
392
393 /*****************************************************************************************************/
394 /* Screen for VOLUME_CREATE */
395 /* */
396 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
397 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
398 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
399 /* 00³ ³ */
400 /* 01³ Create Logical DOS Drive(s) in the Extended Partition ³menu_18 */
401 /* 02³ ³ */
402 /* 03³Drv Volume Label Mbytes System Usage Drv Volume Label Mbytes System Usage³menu_19/20 */
403 /* 04³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
404 /* 05³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
405 /* 06³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
406 /* 07³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
407 /* 08³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
408 /* 09³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
409 /* 10³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
410 /* 11³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
411 /* 12³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
412 /* 13³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
413 /* 14³## ########### #### ######## ###% ## ########### #### ######## ###%³ */
414 /* 15³## ########### #### ######## ###% ³ */
415 /* 16³ ³ */
416 /* 17³ Total Extended DOS partition size is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_17 */
417 /* 18³ Maximum space available for logical drive is #### Mbytes (###%) ³menu_22 */
418 /* 19³ ³ */
419 /* 20³ Enter logical drive size in Mbytes or percent of disk space (%)...[####] ³menu_40 */
420 /* 21³ ³ */
421 /* 22³ ³ */
422 /* 23³ ³ */
423 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
424 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
425 /***************************************************************/
426
427 /*-------------------------------------------------------------*/
428 char far *menu_18 =
429
430 "^0112^<HC>Create Logical DOS Drive(s) in the Extended DOS Partition";
431
432 /*-------------------------------------------------------------*/
433 char far *menu_19 =
434
435 "^0300^<H>Drv Volume Label Mbytes System Usage\
436 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
437 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
438 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
439 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
440 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
441 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>";
442
443 /*----------------------------------------------------------*/
444 char far *menu_43 =
445
446 "^1000^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
447 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
448 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
449 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
450 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
451 ^0100^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>";
452
453 /*-------------------------------------------------------------*/
454 char far *menu_20 =
455
456 "^0341^<H>Drv Volume Label Mbytes System Usage\
457 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
458 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
459 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
460 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
461 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
462 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>";
463
464 /*---------------------------------------------------------*/
465 char far *menu_44 =
466
467 "^1041^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
468 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
469 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
470 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>\
471 ^0141^<H><II> <RIIIIIIIIIII> <IIII> <IIIIIIII> <IIII>";
472
473 /*-------------------------------------------------------------*/
474 char far *menu_21 =
475
476 "^1704^<RC>Total Extended DOS Partition size is <HIIIIR> Mbytes (1 MByte = 1048576 bytes)";
477
478 /*-------------------------------------------------------------*/
479 char far *menu_22 =
480
481 "^1804^<RC>Maximum space available for logical drive is <HIIIIR> Mbytes <H>(<IIII>)";
482
483 /*-------------------------------------------------------------*/
484 char far *menu_40 =
485
486 "^2004^<RC>Enter logical drive size in Mbytes or percent of disk space (%)...<H>[<IIISI>]";
487
488
489 /*****************************************************************************************************/
490 /* Screen for CHANGE_ACTIVE_PARTITION */
491 /* */
492 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
493 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
494 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
495 /* 00³ ³ */
496 /* 01³ Set Active Partition ³menu_23 */
497 /* 02³ ³ */
498 /* 03³ ³ */
499 /* 04³ ³ */
500 /* 05³ ³ */
501 /* 06³ Current fixed disk drive: # ³menu_5 # */
502 /* 07³ ³ */
503 /* 08³ Partition Status Type Size in Mbytes Percentage of Disk Used ³menu_14 # */
504 /* 09³ ## # # ####### #### ###% ³ */
505 /* 10³ ## # # ####### #### ###% ³ */
506 /* 11³ ## # # ####### #### ###% ³ */
507 /* 12³ ## # # ####### #### ###% ³ */
508 /* 13³ ³ */
509 /* 14³ Total disk space is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_15 # */
510 /* 15³ ³ */
511 /* 16³ Enter the number of the partition you want to make active............:[#] ³menu_24 */
512 /* 17³ ³ */
513 /* 18³ ³ */
514 /* 19³ ³ */
515 /* 20³ ³ */
516 /* 21³ ³ */
517 /* 22³ ³ */
518 /* 23³ ³ */
519 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
520 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
521 /*****************************************************************************************************/
522
523 /*-------------------------------------------------------------*/
524 char far *menu_23 =
525
526 "^0430^<H>Set Active Partition";
527
528 /*-------------------------------------------------------------*/
529 char far *menu_24 =
530
531 "^1604^<R>Enter the number of the partition you want to make active...........: <H>[<S> ]";
532
533
534 /*****************************************************************************************************/
535 /* Screen for DELETE_PARTITION */
536 /* */
537 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
538 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
539 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
540 /* 00³ ³ */
541 /* 01³ ³ */
542 /* 02³ ³ */
543 /* 03³ ³ */
544 /* 04³ Delete DOS Partition or Logical DOS Drive ³menu_25 */
545 /* 05³ ³ */
546 /* 06³ Current fixed disk drive: # ³menu_5 # */
547 /* 07³ ³ */
548 /* 08³ Choose one of the following: ³menu_3 # */
549 /* 09³ ³ */
550 /* 10³ 1. Delete Primary DOS Partition ³menu_26 */
551 /* 11³ 2. Delete Extended DOS Partition ³menu_26 */
552 /* 12³ 3. Delete Logical DOS Drive(s) in the Extended DOS Partition ³menu_27 */
553 /* 13³ ³ */
554 /* 14³ ³ */
555 /* 15³ ³ */
556 /* 16³ ³ */
557 /* 17³ Enter choice: [ ] ³menu_7 # */
558 /* 18³ ³ */
559 /* 19³ ³ */
560 /* 20³ ³ */
561 /* 21³ ³ */
562 /* 22³ ³ */
563 /* 23³ ³ */
564 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
565 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
566 /*****************************************************************************************************/
567
568 /*-------------------------------------------------------------*/
569 char far *menu_25 =
570
571 "^0419^<H>Delete DOS Partition or Logical DOS Drive";
572
573 /*-------------------------------------------------------------*/
574 char far *menu_26 =
575
576 "^1004^<HC>1. <R>Delete Primary DOS Partition\
577 ^0104^<HC>2. <R>Delete Extended DOS Partition";
578
579 /*-------------------------------------------------------------*/
580 char far *menu_27 =
581
582 "^1204^<HC>3. <R>Delete Logical DOS Drive(s) in the Extended DOS Partition";
583
584 /*****************************************************************************************************/
585 /* Screen for DOS_DELETE */
586 /* */
587 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
588 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
589 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
590 /* 00³ ³ */
591 /* 01³ ³ */
592 /* 02³ ³ */
593 /* 03³ ³ */
594 /* 04³ Delete Primary DOS Partition ³menu_28 */
595 /* 05³ ³ */
596 /* 06³ Current fixed disk drive: # ³menu_5 # */
597 /* 07³ ³ */
598 /* 08³ Partition Status Type Size in Mbytes Percentage of Disk Used ³menu_14 # */
599 /* 09³ ## # # ####### #### ###% ³menu_14 # */
600 /* 10³ ## # # ####### #### ###% ³ */
601 /* 11³ ## # # ####### #### ###% ³ */
602 /* 12³ ## # # ####### #### ###% ³ */
603 /* 13³ ³ */
604 /* 14³ Total disk space is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_15 # */
605 /* 15³ ³ */
606 /* 16³ Warning! Data in the deleted Primary DOS Partition will be lost. ³menu_29 */
607 /* 17³ Do you wish to continue (Y/N).................? [N] ³menu_29 */
608 /* 18³ ³ */
609 /* 19³ ³ */
610 /* 20³ ³ */
611 /* 21³ ³ */
612 /* 22³ ³ */
613 /* 23³ ³ */
614 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
615 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
616 /*****************************************************************************************************/
617
618 /*-------------------------------------------------------------*/
619 char far *menu_28 =
620
621 "^0426^<H>Delete Primary DOS Partition";
622
623 /*-------------------------------------------------------------*/
624 char far *menu_29 =
625
626 "^1604^<HBC>Warning! <OR>Data in the deleted Primary DOS Partition will be lost.\
627 ^0104^<RC>Do you wish to continue (<Y>/<N>).................? <H>[<S> ]";
628
629 /*****************************************************************************************************/
630 /* Screen for EXT_DELETE */
631 /* */
632 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
633 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
634 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
635 /* 00³ ³ */
636 /* 01³ ³ */
637 /* 02³ ³ */
638 /* 03³ ³ */
639 /* 04³ Delete Extended DOS Partition ³menu_30 */
640 /* 05³ ³ */
641 /* 06³ Current fixed disk drive: # ³menu_5 # */
642 /* 07³ ³ */
643 /* 08³ Partition Status Type Size in Mbytes Percentage of Disk Used ³menu_14 # */
644 /* 09³ ## # # ####### #### ###% ³menu_14 # */
645 /* 10³ ## # # ####### #### ###% ³ */
646 /* 11³ ## # # ####### #### ###% ³ */
647 /* 12³ ## # # ####### #### ###% ³ */
648 /* 13³ ³ */
649 /* 14³ Total disk space is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_15 # */
650 /* 15³ ³ */
651 /* 16³ Warning! Data in the deleted Extended DOS partition will be lost. ³menu_31 */
652 /* 17³ Do you wish to continue (Y/N).................? [N] ³menu_31 */
653 /* 18³ ³ */
654 /* 19³ ³ */
655 /* 20³ ³ */
656 /* 21³ ³ */
657 /* 22³ ³ */
658 /* 23³ ³ */
659 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
660 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
661 /*****************************************************************************************************/
662
663 /*-------------------------------------------------------------*/
664 char far *menu_30 =
665
666 "^0426^<H>Delete Extended DOS Partition";
667
668 /*-------------------------------------------------------------*/
669 char far *menu_31 =
670
671 "^1604^<HBC>Warning! <OR>Data in the deleted Extended DOS Partition will be lost.\
672 ^0104^<RC>Do you wish to continue (<Y>/<N>).................? <H>[<S> ]";
673
674 /******************************************************************************************************/
675 /* Screen for VOL_DELETE */
676 /* */
677 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
678 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
679 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
680 /* 00³ ³ */
681 /* 01³ Delete Logical DOS Drive(s) in the Extended DOS Partition ³menu_32 */
682 /* 02³ ³ */
683 /* 03³Drv Volume Label MBytes System Usage Drv Volume Label MBytes System Usage³menu_19/20 # */
684 /* 04³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
685 /* 05³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
686 /* 06³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
687 /* 07³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
688 /* 08³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
689 /* 09³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
690 /* 10³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
691 /* 11³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
692 /* 12³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
693 /* 13³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
694 /* 14³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
695 /* 15³## ############# #### ######## ###% ³ */
696 /* 16³ ³ */
697 /* 17³ Total Extended DOS Partition size is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_21 */
698 /* 18³ ³ */
699 /* 19³ Warning! Data in a deleted Logical DOS Drive will be lost. ³menu_33 */
700 /* 20³ What drive do you want to delete...........................? [ ] ³menu_33 */
701 /* 21³ Enter Volume Label.............................? [ ] ³menu_41 */
702 /* 22³ Are you sure (Y/N).............................? [N] ³menu_34 */
703 /* 23³ ³ */
704 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
705 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
706 /******************************************************************************************************/
707
708 /*-------------------------------------------------------------*/
709 char far *menu_32 =
710
711 "^0112^<H>Delete Logical DOS Drive(s) in the Extended DOS Partition";
712
713 /*-------------------------------------------------------------*/
714 char far *menu_33 =
715
716 "^1904^<HBC>Warning! <OR>Data in a deleted Logical DOS Drive will be lost.\
717 ^0104^<RC>What drive do you want to delete...............................? <H>[<S> ]";
718
719 /*-------------------------------------------------------------*/
720 char far *menu_34 =
721
722 "^2204^<R>Are you sure (<Y>/<N>)..............................? <H>[<S> ]";
723
724 /*-------------------------------------------------------------*/
725 char far *menu_41 =
726
727 "^2104^<R>Enter Volume Label..............................? <H>[<S> ]";
728
729 /******************************************************************************************************/
730 /* Screen for DISPLAY_PARTITION_INFORMATION */
731 /* */
732 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
733 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
734 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
735 /* 00³ ³ */
736 /* 01³ ³ */
737 /* 02³ ³ */
738 /* 03³ ³ */
739 /* 04³ Display Partition Information ³menu_35 */
740 /* 05³ ³ */
741 /* 06³ Current fixed disk drive: # ³menu_5 # */
742 /* 07³ ³ */
743 /* 08³ Partition Status Type Size in Mbytes Percentage of Disk Used ³menu_14 # */
744 /* 09³ ## # # ####### #### ###% ³menu_14 # */
745 /* 10³ ## # # ####### #### ###% ³ */
746 /* 11³ ## # # ####### #### ###% ³ */
747 /* 12³ ## # # ####### #### ###% ³ */
748 /* 13³ ³ */
749 /* 14³ Total disk space is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_15 # */
750 /* 15³ ³ */
751 /* 16³ ³ */
752 /* 17³ The Extended DOS partition contains Logical DOS Drives. ³menu_36 */
753 /* 18³ Do you want to display the logical drive information (Y/N)......? [Y] ³menu_36 */
754 /* 19³ ³ */
755 /* 20³ ³ */
756 /* 21³ ³ */
757 /* 22³ ³ */
758 /* 23³ ³ */
759 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
760 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
761 /******************************************************************************************************/
762
763 /*-------------------------------------------------------------*/
764 char far *menu_35 =
765
766 "^0426^<H>Display Partition Information";
767
768 /*-------------------------------------------------------------*/
769 char far *menu_36 =
770
771 "^1704^<RC>The Extended DOS Partition contains Logical DOS Drives.\
772 ^0104^<RC>Do you want to display the logical drive information (<Y>/<N>)......?<H>[<S> ]";
773
774 /*****************************************************************************************************/
775 /* Screen for DISPLAY_VOLUME_INFORMATION */
776 /* */
777 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
778 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
779 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
780 /* 00³ ³ */
781 /* 01³ Display Logical DOS Drive Information ³menu_37 */
782 /* 02³ ³ */
783 /* 03³Drv Volume Label Mbytes System Usage Drv Volume Label Mbytes System Usage³menu_19/20 */
784 /* 04³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
785 /* 05³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
786 /* 16³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
787 /* 17³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
788 /* 18³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
789 /* 19³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
790 /* 10³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
791 /* 11³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
792 /* 12³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
793 /* 13³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
794 /* 14³## ############# #### ######## ###% ## ############# #### ######## ###%³ */
795 /* 15³## ############# #### ######## ###% ³ */
796 /* 16³ ³ */
797 /* 17³ Total Extended DOS partition size is #### Mbytes (1 Mbyte = 1048576 bytes) ³menu_17 */
798 /* 18³ ³ */
799 /* 19³ ³ */
800 /* 20³ ³ */
801 /* 21³ ³ */
802 /* 22³ ³ */
803 /* 23³ ³ */
804 /* 24³ Press ESC to return to FDISK Options ³menu_11 */
805 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
806 /*****************************************************************************************************/
807
808 /*-------------------------------------------------------------*/
809 char far *menu_37 =
810
811 "^0121^<H>Display Logical DOS Drive Information";
812
813 /*****************************************************************************************************/
814 /* Screen for SYSTEM_REBOOT */
815 /* */
816 /* ³00000000001111111111222222222233333333334444444444555555555566666666667777777777³ */
817 /* ³01234567890123456789012345678901234567890123456789012345678901234567890123456789³ */
818 /* ÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´ */
819 /* 00³ ³ */
820 /* 01³ ³ */
821 /* 02³ ³ */
822 /* 03³ ³ */
823 /* 04³ ³ */
824 /* 05³ ³ */
825 /* 06³ ³ */
826 /* 07³ ³ */
827 /* 08³ ³ */
828 /* 09³ ³ */
829 /* 10³ ³ */
830 /* 11³ ³ */
831 /* 12³ ³ */
832 /* 13³ System will now restart ³menu_38 */
833 /* 14³ ³ */
834 /* 15³ Insert DOS diskette in drive A: ³menu_38 */
835 /* 16³ Press any key when ready . . . ³menu_38 */
836 /* 17³ ³ */
837 /* 18³ ³ */
838 /* 19³ ³ */
839 /* 20³ ³ */
840 /* 21³ ³ */
841 /* 22³ ³ */
842 /* 23³ ³ */
843 /* 24³ ³ */
844 /* ÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ */
845 /*****************************************************************************************************/
846
847 /*-------------------------------------------------------------*/
848 char far *menu_38 =
849
850 "^1304^<H>System will now restart\
851 ^0204^<R>Insert DOS Startup diskette in drive A:\
852 ^0104^<R>Press any key when ready . . .<S>";
853
854
855 /* */
856 /* */
857 /* The following character strings are required to display the */
858 /* status messages indicating successful operation. These messages */
859 /* have the form: status_xx */
860 /* */
861 /* Note: In order to overlay any previous message on the screen, these */
862 /* messages are all 2 lines long. The second line may only be */
863 /* a blank line. If 2 lines are needed for translation, use the */
864 /* second line for text. Exceptions are those msgs on line 0, */
865 /* and status_3. */
866 /* */
867
868 /*-------------------------------------------------------------*/
869 char far *status_1 =
870
871 "^2104^<CH>Primary DOS Partition deleted\
872 ^0100^<CW>";
873
874 /*-------------------------------------------------------------*/
875 char far *status_2 =
876
877 "^2104^<CH>Extended DOS Partition deleted\
878 ^0100^<CW>";
879
880 /*-------------------------------------------------------------*/
881 char far *status_3 =
882
883 "^0004^<H>Drive deleted";
884 /* NOTE - the ^rrcc^ must be the first thing in this string */
885
886 /*-------------------------------------------------------------*/
887 char far *status_4 =
888
889 "^2104^<CH>Partition <I> made active\
890 ^0100^<CW>";
891
892 /*-------------------------------------------------------------*/
893 char far *status_5 =
894
895 "^2104^<CH>Primary DOS Partition created\
896 ^0100^<CW>";
897
898 /*-------------------------------------------------------------*/
899 char far *status_6 =
900
901 "^2104^<CH>Extended DOS Partition created\
902 ^0100^<CW>";
903
904 /*-------------------------------------------------------------*/
905 char far *status_7 =
906
907 "^2204^<CH>Logical DOS Drive created, drive letters changed or added<W>";
908
909 /*-------------------------------------------------------------*/
910 char far *status_8 =
911
912 "^2104^<CH>No partitions defined\
913 ^0100^<C>";
914
915 /*-------------------------------------------------------------*/
916 char far *status_9 =
917
918 "^1004^<CH>No logical drives defined\
919 ^0100^<C>";
920
921 /*-------------------------------------------------------------*/
922 char far *status_10 =
923
924 "^1804^<CH>Drive letters have been changed or deleted<W>";
925
926 /*-------------------------------------------------------------*/
927 char far *status_11 =
928
929 "^0004^<H>Drive redirected";
930 /* NOTE - the ^rrcc^ must be the first thing in this string */
931
932 /*-------------------------------------------------------------*/
933 char far *status_12 =
934
935 "^2104^<CH>Primary DOS Partition created, drive letters changed or added\
936 ^0100^<CW>";
937
938 /*-------------------------------------------------------------*/
939
940 /* */
941 /* */
942 /* The following character strings are required to display the */
943 /* error messages. These have form: error_xx */
944 /* */
945 /* Note: In order to overlay any previous message on the screen, these */
946 /* messages are all 2 lines long. The second line may only be */
947 /* a blank line. If 2 lines are needed for translation, use the */
948 /* second line for text. Exceptions are those msgs on line 0. */
949 /* and those messages that start on line 23 */
950 /* */
951
952
953 /*-------------------------------------------------------------*/
954 char far *error_1 =
955
956 "^0004^<CH>No fixed disks present.\
957 ^0100^<CW>";
958
959 /*-------------------------------------------------------------*/
960 char far *error_2 =
961
962 "^2204^<CH>Error reading fixed disk.\
963 ^0100^<CW>";
964
965 /*-------------------------------------------------------------*/
966 char far *error_3 =
967
968 "^2204^<CH>Error writing fixed disk.\
969 ^0100^<CW>";
970
971 /*-------------------------------------------------------------*/
972 char far *error_4 =
973
974 "^0004^<CHW>Incorrect DOS version.";
975
976 /*-------------------------------------------------------------*/
977 char far *error_5 =
978
979 "^0004^<CHW>Cannot FDISK with network loaded.";
980
981 /*-------------------------------------------------------------*/
982 char far *error_6 =
983
984 "^2204^<CH>No Primary DOS Partition to delete.\
985 ^0100^<CW>";
986
987 /*-------------------------------------------------------------*/
988 char far *error_7 =
989
990 "^2204^<CH>No Extended DOS Partition to delete.\
991 ^0100^<CW>";
992
993 /*-------------------------------------------------------------*/
994 char far *error_8 =
995
996 "^2204^<CH>Primary DOS Partition already exists.\
997 ^0100^<CW>";
998
999 /*-------------------------------------------------------------*/
1000 char far *error_9 =
1001
1002 "^2204^<CH>Extended DOS Partition already exists.\
1003 ^0100^<CW>";
1004
1005 /*-------------------------------------------------------------*/
1006 char far *error_10 =
1007
1008 "^2204^<CH>No space to create a DOS partition.\
1009 ^0100^<CW>";
1010
1011 /*-------------------------------------------------------------*/
1012 char far *error_12 =
1013
1014 "^2204^<CH>Requested logical drive size exceeds the maximum available space.<W>\
1015 ^0100^<CW>";
1016
1017 /*-------------------------------------------------------------*/
1018 char far *error_13 =
1019
1020 "^2204^<CH>Requested partition size exceeds the maximum available space.<W>\
1021 ^0100^<CW>";
1022
1023 /*-------------------------------------------------------------*/
1024 char far *error_14 =
1025
1026 "^2204^<CH>No partitions to delete.\
1027 ^0100^<CW>";
1028
1029 /*-------------------------------------------------------------*/
1030 char far *error_15 =
1031
1032 "^2204^<CH>The only startable partition on Drive 1 is already set active.<W>\
1033 ^0100^<CW>";
1034
1035 /*-------------------------------------------------------------*/
1036 char far *error_16 =
1037
1038 "^2204^<CH>No partitions to make active.\
1039 ^0100^<CW>";
1040
1041 /*-------------------------------------------------------------*/
1042 char far *error_17 =
1043
1044 "^2204^<CH>Partition selected (<I>) is not startable, active partition not changed.<W>";
1045
1046 /*-------------------------------------------------------------*/
1047 char far *error_19 =
1048
1049 "^2204^<CH>Cannot create Extended DOS Partition without\
1050 ^0104^<CH>Primary DOS Partition on disk 1.<W>";
1051
1052 /*-------------------------------------------------------------*/
1053 char far *error_20 =
1054
1055 "^2204^<CH>All available space in the Extended DOS Partition\
1056 ^0104^<CH>is assigned to logical drives.<W>";
1057
1058 /*-------------------------------------------------------------*/
1059 char far *error_21 =
1060
1061 "^2204^<CH>Cannot delete Extended DOS Partition while logical drives exist.<W>";
1062
1063 /*-------------------------------------------------------------*/
1064 char far *error_22 =
1065
1066 "^2204^<CH>All logical drives deleted in the Extended DOS Partition.<W>";
1067
1068 /*-------------------------------------------------------------*/
1069 char far *error_23 =
1070
1071 "^2204^<C>\
1072 ^0104^<CHI> is not a choice. Please enter <III>.<W>";
1073
1074 /*-------------------------------------------------------------*/
1075 char far *error_24 =
1076
1077 "^2204^<CH>Warning! The partition set active is not startable.<W>";
1078
1079 /*-------------------------------------------------------------*/
1080 char far *error_25 =
1081
1082 "^2204^<CH> Only non-startable partitions exist.\
1083 ^0100^<CW>";
1084
1085 /*-------------------------------------------------------------*/
1086 char far *error_26 =
1087
1088 "^2204^<CH>Only partitions on Drive 1 can be made active.<W>";
1089
1090 /*-------------------------------------------------------------*/
1091 char far *error_27 =
1092
1093 "^2204^<CH>Maximum number of Logical DOS Drives installed.<W>";
1094
1095 /*-------------------------------------------------------------*/
1096 char far *error_28 =
1097
1098 "^2204^<CH>Cannot create a zero size partition.\
1099 ^0100^<CW>";
1100
1101 /*-------------------------------------------------------------*/
1102 char far *error_29 =
1103
1104 "^2204^<CH>Drive <II> already deleted.\
1105 ^0100^<CW>";
1106
1107 /*-------------------------------------------------------------*/
1108 char far *error_30 =
1109
1110 "^2204^<CHB>Unable to access Drive <I>.<OW>";
1111
1112 /*-------------------------------------------------------------*/
1113 char far *error_31 =
1114
1115 "^2304^<CH>Invalid entry, please enter <III>.<W>";
1116
1117 /*-------------------------------------------------------------*/
1118 char far *error_32 =
1119
1120 "^2204^<CH>Cannot delete Primary DOS Partition on drive 1 \
1121 ^0104^<CH>when an Extended DOS Partition exists.<W>";
1122
1123 /*-------------------------------------------------------------*/
1124 char far *error_33 =
1125
1126 "^2200^<C>\
1127 ^0104^<CH>Invalid entry, please press Enter.<W>";
1128
1129 /*-------------------------------------------------------------*/
1130 char far *error_34 =
1131
1132 "^2204^<CH>Volume label does not match.<W>";
1133
1134 /*-------------------------------------------------------------*/
1135 char far *error_35 =
1136
1137 "^2204^<CH>Cannot create Logical DOS Drive without\
1138 ^0104^<CH>an Extended DOS Partition on the current drive.<W>";
1139
1140 /*-------------------------------------------------------------*/
1141 char far *error_36 =
1142
1143 "^2204^<CH>No Logical DOS Drive(s) to delete.\
1144 ^0100^<CW>";
1145
1146 /*-------------------------------------------------------------*/
1147
1148
1149 /* */
1150 /* */
1151 /* The following message is only included as an aide to debug message */
1152 /* strings during translations. The FDISK message formatter will attempt*/
1153 /* to the best of its ability to catch invalid message strings and */
1154 /* print the error. This message should NEVER appear for a user, so it */
1155 /* is not neccessary to translate this message */
1156 /* */
1157 /* */
1158
1159
1160 /*-------------------------------------------------------------*/
1161 char far *debug_msg =
1162
1163 "^2200^<HWB>Message string error <I>. See header of FDISKC.MSG for error definition";
1164
1165 /*-------------------------------------------------------------*/
1166 char far *internal_error =
1167
1168 "^2204^<HBW>Internal error";
1169
1170 /* */
1171 /* The following are not translatable. They are the partition names */
1172 /* */
1173
1174 char *DOS_part = "PRI DOS";
1175 char *XENIX_part = " XENIX ";
1176 char *EXTENDED_part = "EXT DOS";
1177 char *BAD_BLOCK_part= " Table ";
1178 char *PCIX_part = " PC/IX ";
1179 char *NON_DOS_part = "Non-DOS";
1180
1181