mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00
[USETUP]
- Implement creation of extended partitions. - Add creation checks for primary and extended partitions. svn path=/trunk/; revision=63392
This commit is contained in:
parent
6a96b1732b
commit
8cbded8053
28 changed files with 1498 additions and 88 deletions
|
@ -28,7 +28,8 @@
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
ERROR_NOT_INSTALLED = 0,
|
NOT_AN_ERROR = 0,
|
||||||
|
ERROR_NOT_INSTALLED,
|
||||||
ERROR_NO_HDD,
|
ERROR_NO_HDD,
|
||||||
ERROR_NO_SOURCE_DRIVE,
|
ERROR_NO_SOURCE_DRIVE,
|
||||||
ERROR_LOAD_TXTSETUPSIF,
|
ERROR_LOAD_TXTSETUPSIF,
|
||||||
|
@ -67,6 +68,12 @@ typedef enum
|
||||||
ERROR_UPDATE_GEOID,
|
ERROR_UPDATE_GEOID,
|
||||||
ERROR_INSUFFICIENT_DISKSPACE,
|
ERROR_INSUFFICIENT_DISKSPACE,
|
||||||
|
|
||||||
|
ERROR_PARTITION_TABLE_FULL,
|
||||||
|
ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
ERROR_EXTENDED_NOT_LAST,
|
||||||
|
|
||||||
|
|
||||||
ERROR_LAST_ERROR_CODE
|
ERROR_LAST_ERROR_CODE
|
||||||
}ERROR_NUMBER;
|
}ERROR_NUMBER;
|
||||||
|
|
||||||
|
|
|
@ -1463,12 +1463,14 @@ IsDiskSizeValid(PPARTENTRY PartEntry)
|
||||||
static PAGE_NUMBER
|
static PAGE_NUMBER
|
||||||
SelectPartitionPage(PINPUT_RECORD Ir)
|
SelectPartitionPage(PINPUT_RECORD Ir)
|
||||||
{
|
{
|
||||||
|
ULONG Error;
|
||||||
|
|
||||||
MUIDisplayPage(SELECT_PARTITION_PAGE);
|
MUIDisplayPage(SELECT_PARTITION_PAGE);
|
||||||
|
|
||||||
if (PartitionList == NULL)
|
if (PartitionList == NULL)
|
||||||
{
|
{
|
||||||
PartitionList = CreatePartitionList(2,
|
PartitionList = CreatePartitionList(2,
|
||||||
19,
|
21,
|
||||||
xScreen - 3,
|
xScreen - 3,
|
||||||
yScreen - 3);
|
yScreen - 3);
|
||||||
if (PartitionList == NULL)
|
if (PartitionList == NULL)
|
||||||
|
@ -1521,7 +1523,7 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
||||||
return SELECT_PARTITION_PAGE; /* let the user select another partition */
|
return SELECT_PARTITION_PAGE; /* let the user select another partition */
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
CreateNewPartition(PartitionList,
|
CreatePrimaryPartition(PartitionList,
|
||||||
PartitionList->CurrentPartition->SectorCount.QuadPart,
|
PartitionList->CurrentPartition->SectorCount.QuadPart,
|
||||||
TRUE);
|
TRUE);
|
||||||
|
|
||||||
|
@ -1553,6 +1555,10 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
||||||
{
|
{
|
||||||
CONSOLE_SetStatusText(MUIGetString(STRING_INSTALLCREATEPARTITION));
|
CONSOLE_SetStatusText(MUIGetString(STRING_INSTALLCREATEPARTITION));
|
||||||
}
|
}
|
||||||
|
else if (IsContainerPartition(PartitionList->CurrentPartition->PartitionType))
|
||||||
|
{
|
||||||
|
CONSOLE_SetStatusText(MUIGetString(STRING_DELETEPARTITION));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
CONSOLE_SetStatusText(MUIGetString(STRING_INSTALLDELETEPARTITION));
|
CONSOLE_SetStatusText(MUIGetString(STRING_INSTALLDELETEPARTITION));
|
||||||
|
@ -1591,10 +1597,13 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
||||||
return SELECT_PARTITION_PAGE; /* let the user select another partition */
|
return SELECT_PARTITION_PAGE; /* let the user select another partition */
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
if (IsContainerPartition(PartitionList->CurrentPartition->PartitionType))
|
||||||
|
continue; //return SELECT_PARTITION_PAGE;
|
||||||
|
|
||||||
if (PartitionList->CurrentPartition == NULL ||
|
if (PartitionList->CurrentPartition == NULL ||
|
||||||
PartitionList->CurrentPartition->IsPartitioned == FALSE)
|
PartitionList->CurrentPartition->IsPartitioned == FALSE)
|
||||||
{
|
{
|
||||||
CreateNewPartition(PartitionList,
|
CreatePrimaryPartition(PartitionList,
|
||||||
0ULL,
|
0ULL,
|
||||||
TRUE);
|
TRUE);
|
||||||
}
|
}
|
||||||
|
@ -1603,15 +1612,27 @@ SelectPartitionPage(PINPUT_RECORD Ir)
|
||||||
|
|
||||||
return SELECT_FILE_SYSTEM_PAGE;
|
return SELECT_FILE_SYSTEM_PAGE;
|
||||||
}
|
}
|
||||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'C') /* C */
|
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'P') /* P */
|
||||||
{
|
{
|
||||||
if (PartitionList->CurrentPartition->IsPartitioned == TRUE)
|
Error = PrimaryPartitionCreationChecks(PartitionList);
|
||||||
|
if (Error != NOT_AN_ERROR)
|
||||||
{
|
{
|
||||||
MUIDisplayError(ERROR_NEW_PARTITION, Ir, POPUP_WAIT_ANY_KEY);
|
MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY);
|
||||||
return SELECT_PARTITION_PAGE;
|
return SELECT_PARTITION_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
return CREATE_PARTITION_PAGE;
|
return CREATE_PRIMARY_PARTITION_PAGE;
|
||||||
|
}
|
||||||
|
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'E') /* E */
|
||||||
|
{
|
||||||
|
Error = ExtendedPartitionCreationChecks(PartitionList);
|
||||||
|
if (Error != NOT_AN_ERROR)
|
||||||
|
{
|
||||||
|
MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY);
|
||||||
|
return SELECT_PARTITION_PAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CREATE_EXTENDED_PARTITION_PAGE;
|
||||||
}
|
}
|
||||||
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'D') /* D */
|
else if (Ir->Event.KeyEvent.wVirtualKeyCode == 'D') /* D */
|
||||||
{
|
{
|
||||||
|
@ -1773,7 +1794,7 @@ ShowPartitionSizeInputBox(SHORT Left,
|
||||||
|
|
||||||
|
|
||||||
static PAGE_NUMBER
|
static PAGE_NUMBER
|
||||||
CreatePartitionPage(PINPUT_RECORD Ir)
|
CreatePrimaryPartitionPage(PINPUT_RECORD Ir)
|
||||||
{
|
{
|
||||||
PDISKENTRY DiskEntry;
|
PDISKENTRY DiskEntry;
|
||||||
PPARTENTRY PartEntry;
|
PPARTENTRY PartEntry;
|
||||||
|
@ -1907,7 +1928,7 @@ CreatePartitionPage(PINPUT_RECORD Ir)
|
||||||
|
|
||||||
DPRINT ("Partition size: %I64u bytes\n", PartSize);
|
DPRINT ("Partition size: %I64u bytes\n", PartSize);
|
||||||
|
|
||||||
CreateNewPartition(PartitionList,
|
CreatePrimaryPartition(PartitionList,
|
||||||
SectorCount,
|
SectorCount,
|
||||||
FALSE);
|
FALSE);
|
||||||
|
|
||||||
|
@ -1915,7 +1936,153 @@ CreatePartitionPage(PINPUT_RECORD Ir)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return CREATE_PARTITION_PAGE;
|
return CREATE_PRIMARY_PARTITION_PAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PAGE_NUMBER
|
||||||
|
CreateExtendedPartitionPage(PINPUT_RECORD Ir)
|
||||||
|
{
|
||||||
|
PDISKENTRY DiskEntry;
|
||||||
|
PPARTENTRY PartEntry;
|
||||||
|
BOOLEAN Quit;
|
||||||
|
BOOLEAN Cancel;
|
||||||
|
CHAR InputBuffer[50];
|
||||||
|
ULONG MaxSize;
|
||||||
|
ULONGLONG PartSize;
|
||||||
|
ULONGLONG DiskSize;
|
||||||
|
ULONGLONG SectorCount;
|
||||||
|
PCHAR Unit;
|
||||||
|
|
||||||
|
if (PartitionList == NULL ||
|
||||||
|
PartitionList->CurrentDisk == NULL ||
|
||||||
|
PartitionList->CurrentPartition == NULL)
|
||||||
|
{
|
||||||
|
/* FIXME: show an error dialog */
|
||||||
|
return QUIT_PAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
DiskEntry = PartitionList->CurrentDisk;
|
||||||
|
PartEntry = PartitionList->CurrentPartition;
|
||||||
|
|
||||||
|
CONSOLE_SetStatusText(MUIGetString(STRING_PLEASEWAIT));
|
||||||
|
|
||||||
|
CONSOLE_SetTextXY(6, 8, MUIGetString(STRING_CHOOSE_NEW_EXTENDED_PARTITION));
|
||||||
|
|
||||||
|
DiskSize = DiskEntry->SectorCount.QuadPart * DiskEntry->BytesPerSector;
|
||||||
|
#if 0
|
||||||
|
if (DiskSize >= 10737418240) /* 10 GB */
|
||||||
|
{
|
||||||
|
DiskSize = DiskSize / 1073741824;
|
||||||
|
Unit = MUIGetString(STRING_GB);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
DiskSize = DiskSize / 1048576;
|
||||||
|
if (DiskSize == 0)
|
||||||
|
DiskSize = 1;
|
||||||
|
|
||||||
|
Unit = MUIGetString(STRING_MB);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DiskEntry->DriverName.Length > 0)
|
||||||
|
{
|
||||||
|
CONSOLE_PrintTextXY(6, 10,
|
||||||
|
MUIGetString(STRING_HDINFOPARTCREATE),
|
||||||
|
DiskSize,
|
||||||
|
Unit,
|
||||||
|
DiskEntry->DiskNumber,
|
||||||
|
DiskEntry->Port,
|
||||||
|
DiskEntry->Bus,
|
||||||
|
DiskEntry->Id,
|
||||||
|
&DiskEntry->DriverName);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CONSOLE_PrintTextXY(6, 10,
|
||||||
|
MUIGetString(STRING_HDDINFOUNK1),
|
||||||
|
DiskSize,
|
||||||
|
Unit,
|
||||||
|
DiskEntry->DiskNumber,
|
||||||
|
DiskEntry->Port,
|
||||||
|
DiskEntry->Bus,
|
||||||
|
DiskEntry->Id);
|
||||||
|
}
|
||||||
|
|
||||||
|
CONSOLE_SetTextXY(6, 12, MUIGetString(STRING_HDDSIZE));
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
CONSOLE_PrintTextXY(8, 10, "Maximum size of the new partition is %I64u MB",
|
||||||
|
PartitionList->CurrentPartition->SectorCount * DiskEntry->BytesPerSector / 1048576);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
CONSOLE_SetStatusText(MUIGetString(STRING_CREATEPARTITION));
|
||||||
|
|
||||||
|
PartEntry = PartitionList->CurrentPartition;
|
||||||
|
while (TRUE)
|
||||||
|
{
|
||||||
|
MaxSize = (PartEntry->SectorCount.QuadPart * DiskEntry->BytesPerSector) / 1048576; /* in MBytes (rounded) */
|
||||||
|
|
||||||
|
if (MaxSize > PARTITION_MAXSIZE)
|
||||||
|
MaxSize = PARTITION_MAXSIZE;
|
||||||
|
|
||||||
|
ShowPartitionSizeInputBox(12, 14, xScreen - 12, 17, /* left, top, right, bottom */
|
||||||
|
MaxSize, InputBuffer, &Quit, &Cancel);
|
||||||
|
|
||||||
|
if (Quit == TRUE)
|
||||||
|
{
|
||||||
|
if (ConfirmQuit (Ir) == TRUE)
|
||||||
|
{
|
||||||
|
return QUIT_PAGE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (Cancel == TRUE)
|
||||||
|
{
|
||||||
|
return SELECT_PARTITION_PAGE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
PartSize = atoi(InputBuffer);
|
||||||
|
|
||||||
|
if (PartSize < 1)
|
||||||
|
{
|
||||||
|
/* Too small */
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PartSize > MaxSize)
|
||||||
|
{
|
||||||
|
/* Too large */
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Convert to bytes */
|
||||||
|
if (PartSize == MaxSize)
|
||||||
|
{
|
||||||
|
/* Use all of the unpartitioned disk space */
|
||||||
|
SectorCount = PartEntry->SectorCount.QuadPart;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Calculate the sector count from the size in MB */
|
||||||
|
SectorCount = PartSize * 1048576 / DiskEntry->BytesPerSector;
|
||||||
|
|
||||||
|
/* But never get larger than the unpartitioned disk space */
|
||||||
|
if (SectorCount > PartEntry->SectorCount.QuadPart)
|
||||||
|
SectorCount = PartEntry->SectorCount.QuadPart;
|
||||||
|
}
|
||||||
|
|
||||||
|
DPRINT ("Partition size: %I64u bytes\n", PartSize);
|
||||||
|
|
||||||
|
CreateExtendedPartition(PartitionList,
|
||||||
|
SectorCount);
|
||||||
|
|
||||||
|
return SELECT_PARTITION_PAGE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return CREATE_EXTENDED_PARTITION_PAGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -3848,8 +4015,12 @@ RunUSetup(VOID)
|
||||||
Page = SelectPartitionPage(&Ir);
|
Page = SelectPartitionPage(&Ir);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CREATE_PARTITION_PAGE:
|
case CREATE_PRIMARY_PARTITION_PAGE:
|
||||||
Page = CreatePartitionPage(&Ir);
|
Page = CreatePrimaryPartitionPage(&Ir);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case CREATE_EXTENDED_PARTITION_PAGE:
|
||||||
|
Page = CreateExtendedPartitionPage(&Ir);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DELETE_PARTITION_PAGE:
|
case DELETE_PARTITION_PAGE:
|
||||||
|
|
|
@ -828,12 +828,19 @@ static MUI_ENTRY bgBGSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 <20> ق<C2A0>ف<D981>ق<EFBFBD> C <20> في<D981>¤ <C2A4> <C2A0> <><C2AD> ¤ُ<C2A4>.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 <20> â¨á¥â¥ C § áꧤ ¢ ¥ ®¢ ¤ï«.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 <20> â¨á¥â¥ D § ¨§âਢ ¥ áêé¥áâ¢ã¢ é ¤ï«.",
|
"\x07 <20> â¨á¥â¥ D § ¨§âਢ ¥ áêé¥áâ¢ã¢ é ¤ï«.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1288,6 +1295,10 @@ static MUI_ENTRY bgBGRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR bgBGErrorEntries[] =
|
MUI_ERROR bgBGErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"<EFBFBD>¥ ªâŽ‘ ¥ ¥ ¯ê«® á«®¦¥ ª®¬¯îâêà \n"
|
"<EFBFBD>¥ ªâŽ‘ ¥ ¥ ¯ê«® á«®¦¥ ª®¬¯îâêà \n"
|
||||||
|
@ -1500,6 +1511,32 @@ MUI_ERROR bgBGErrorEntries[] =
|
||||||
" * <20> â¨á¥â¥ ª« ¢¨è, § ¤ ¯à®¤ê«¦¨â¥.",
|
" * <20> â¨á¥â¥ ª« ¢¨è, § ¤ ¯à®¤ê«¦¨â¥.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1612,13 +1649,19 @@ MUI_STRING bgBGStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" <20>®ç ª ©â¥..."},
|
" <20>®ç ª ©â¥..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = <20><> <EFBFBD> <C2A0> C = <20>ي<EFBFBD>¤ <C2A4> <C2A0> ¤ُ<C2A4> F3 = <20><>م<EFBFBD>¤"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = ‘« £ ¥ C = ‘ꧤ ¢ ¥ ¤ï« F3 = ˆ§å®¤"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = ‘« £ ¥ D = ˆ§âਢ ¥ ¤ï« F3 = ˆ§å®¤"},
|
" ENTER = ‘« £ ¥ D = ˆ§âਢ ¥ ¤ï« F3 = ˆ§å®¤"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"<EFBFBD> §¬¥à ®¢¨ï ¤ï«:"},
|
"<EFBFBD> §¬¥à ®¢¨ï ¤ï«:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"<EFBFBD><EFBFBD><EFBFBD>ـ <EFBFBD><EFBFBD> فق<D981> ¤ في<D981>¤ ¤<C2A0>ق<EFBFBD> <><C2AD> ¤ُ<C2A4> "},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "ˆ§¡à «¨ á⥠¤ áꧤ ¤¥â¥ ®¢ ¤ï« "},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"‚ꢥ¤¥â¥ à §¬¥à ®¢¨ï ¤ï« (¢ ¬¥£ ¡ ©â¨)."},
|
"‚ꢥ¤¥â¥ à §¬¥à ®¢¨ï ¤ï« (¢ ¬¥£ ¡ ©â¨)."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1701,6 +1744,8 @@ MUI_STRING bgBGStrings[] =
|
||||||
" <20>¥à §¯à¥¤¥«¥® ¬ïáâ® %6lu %s"},
|
" <20>¥à §¯à¥¤¥«¥® ¬ïáâ® %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"Œ<EFBFBD> (¤® %lu Œ<>)"},
|
"Œ<EFBFBD> (¤® %lu Œ<>)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"<EFBFBD>®¢ (<28>¥ä®à¬ â¨à )"},
|
"<EFBFBD>®¢ (<28>¥ä®à¬ â¨à )"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -827,12 +827,19 @@ static MUI_ENTRY csCZSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Stisknutˇm C umo§nˇte vytvoýenˇ nov‚ho oddˇlu.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Stisknut¡m C umo§n¡te vytvoýen¡ nov‚ho odd¡lu.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Stisknut¡m D umo§n¡te smaz n¡ existuj¡c¡ho odd¡lu.",
|
"\x07 Stisknut¡m D umo§n¡te smaz n¡ existuj¡c¡ho odd¡lu.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1286,6 +1293,10 @@ static MUI_ENTRY csCZRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR csCZErrorEntries[] =
|
MUI_ERROR csCZErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS nen¡ ve vaçem poŸ¡taŸi kompletnØ nainstalov n.\n"
|
"ReactOS nen¡ ve vaçem poŸ¡taŸi kompletnØ nainstalov n.\n"
|
||||||
|
@ -1496,6 +1507,32 @@ MUI_ERROR csCZErrorEntries[] =
|
||||||
" * PokraŸujte stisknut¡m libovoln‚ kl vesy.",
|
" * PokraŸujte stisknut¡m libovoln‚ kl vesy.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1608,13 +1645,19 @@ MUI_STRING csCZStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" ¬ekejte, pros¡m..."},
|
" ¬ekejte, pros¡m..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Instalovat C = Vytvoýit oddˇl F3 = Ukonźit"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Instalovat C = Vytvoýit odd¡l F3 = UkonŸit"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Instalovat D = Odstranit odd¡l F3 = UkonŸit"},
|
" ENTER = Instalovat D = Odstranit odd¡l F3 = UkonŸit"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Velikost nov‚ho odd¡lu:"},
|
"Velikost nov‚ho odd¡lu:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Zvolili jste vytvoýenˇ nov‚ho oddˇlu na"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Zvolili jste vytvoýen¡ nov‚ho odd¡lu na"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Zadejte velikost nov‚ho odd¡lu v megabajtech."},
|
"Zadejte velikost nov‚ho odd¡lu v megabajtech."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1697,6 +1740,8 @@ MUI_STRING csCZStrings[] =
|
||||||
" M¡sto bez odd¡l… %6lu %s"},
|
" M¡sto bez odd¡l… %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Novì (Nenaform tovanì)"},
|
"Novì (Nenaform tovanì)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -814,12 +814,18 @@ static MUI_ENTRY deDESelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 C erstellt eine neue Partition.",
|
"\x07 P erstellt eine prim„re Partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 E erstellt eine erweiterte Partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 D l”scht eine vorhandene Partition.",
|
"\x07 D l”scht eine vorhandene Partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1279,6 +1285,10 @@ static MUI_ENTRY deDERegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR deDEErrorEntries[] =
|
MUI_ERROR deDEErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Erfolg\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS wurde nicht vollst„ndig auf Ihrem System installiert.\n"
|
"ReactOS wurde nicht vollst„ndig auf Ihrem System installiert.\n"
|
||||||
|
@ -1493,6 +1503,32 @@ MUI_ERROR deDEErrorEntries[] =
|
||||||
" * Eine beliebige Taste zum Fortsetzen dr<64>cken.",
|
" * Eine beliebige Taste zum Fortsetzen dr<64>cken.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"Sie k”nnen keine weitere prim„re oder erweiterte Partition in\n"
|
||||||
|
"der Partitionstabelle erstellen, weil die Tabelle voll ist.\n"
|
||||||
|
"\n"
|
||||||
|
" * Eine beliebige Taste zum Fortsetzen dr<64>cken."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"Sie k”nnen nur eine erweiterte Partition auf jeder Festplatte anlegen.\n"
|
||||||
|
"\n"
|
||||||
|
" * Eine beliebige Taste zum Fortsetzen dr<64>cken."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"Sie k”nnen hinter einer erweiterten Partition keine weitere Partition anlegen.\n"
|
||||||
|
"\n"
|
||||||
|
" * Eine beliebige Taste zum Fortsetzen dr<64>cken."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"Eine erweiterte Partition muss immer die letzte Partition in \n"
|
||||||
|
"einer Partitionstabelle sein.\n"
|
||||||
|
"\n"
|
||||||
|
" * Eine beliebige Taste zum Fortsetzen dr<64>cken."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1605,13 +1641,17 @@ MUI_STRING deDEStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Bitte warten..."},
|
" Bitte warten..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" EINGABETASTE = Installieren C = Partition erstellen F3 = Installation abbr."},
|
" EINGABETASTE = Installieren P = Prim„re E = Erweiterte F3 = Installation abbr."},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" EINGABETASTE = Installieren D = Partition l”schen F3 = Installation abbr."},
|
" EINGABETASTE = Installieren D = Partition l”schen F3 = Installation abbr."},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Partition l”schen F3 = Installation abbrechen"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"GrӇe der neuen Partition:"},
|
"GrӇe der neuen Partition:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Eine neue Partition soll hier erstellt werden:"},
|
"Eine prim„re Partition soll hier erstellt werden:"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"Eine erweiterte Partition soll hier erstellt werden:"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Bitte geben Sie die GrӇe der neuen Partition in Megabyte ein."},
|
"Bitte geben Sie die GrӇe der neuen Partition in Megabyte ein."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1694,6 +1734,8 @@ MUI_STRING deDEStrings[] =
|
||||||
" Unpartitionierter Speicher %6lu %s"},
|
" Unpartitionierter Speicher %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Erweiterte Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Neu (Unformatiert)"},
|
"Neu (Unformatiert)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -837,12 +837,19 @@ static MUI_ENTRY elGRSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 <20>˜«ã©«œ C š ˜ ¤˜ ›ž£ ¦¬¨šã©œ«œ ⤘ ¤â¦ › ˜£â¨ ©£˜.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 <20>˜«ã©«œ C š ˜ ¤˜ ›ž£ ¦¬¨šã©œ«œ ⤘ ¤â¦ › ˜£â¨ ©£˜.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 <20>˜«ã©«œ D š ˜ ¤˜ › ˜š¨á¯œ«œ ⤘ ¬§á¨®¦¤ › ˜£â¨ ©£˜.",
|
"\x07 <20>˜«ã©«œ D š ˜ ¤˜ › ˜š¨á¯œ«œ ⤘ ¬§á¨®¦¤ › ˜£â¨ ©£˜.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1308,6 +1315,10 @@ static MUI_ENTRY elGRRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR elGRErrorEntries[] =
|
MUI_ERROR elGRErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"’¦ ReactOS ›œ¤ œš¡˜«˜©«áŸž¡œ §¢ã¨àª ©«¦¤\n"
|
"’¦ ReactOS ›œ¤ œš¡˜«˜©«áŸž¡œ §¢ã¨àª ©«¦¤\n"
|
||||||
|
@ -1512,6 +1523,32 @@ MUI_ERROR elGRErrorEntries[] =
|
||||||
"Setup could not set the geo id.\n"
|
"Setup could not set the geo id.\n"
|
||||||
"ENTER = Reboot computer"
|
"ENTER = Reboot computer"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1624,13 +1661,19 @@ MUI_STRING elGRStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" <20>˜¨˜¡˜¢é §œ¨ £â¤œ«œ..."},
|
" <20>˜¨˜¡˜¢é §œ¨ £â¤œ«œ..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = „š¡˜«á©«˜©ž C = ƒž£ ¦¬¨šå˜ Partition F3 = €§¦®é¨ž©ž"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = „š¡˜«á©«˜©ž C = ƒž£ ¦¬¨šå˜ Partition F3 = €§¦®é¨ž©ž"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = „š¡˜«á©«˜©ž D = ƒ ˜š¨˜ã Partition F3 = €§¦®é¨ž©ž"},
|
" ENTER = „š¡˜«á©«˜©ž D = ƒ ˜š¨˜ã Partition F3 = €§¦®é¨ž©ž"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"‹âšœŸ¦ª «¦¬ ¤â¦¬ partition:"},
|
"‹âšœŸ¦ª «¦¬ ¤â¦¬ partition:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"„§ ¢â¥˜«œ ¤˜ ›ž£ ¦¬¨šã©œ«œ ⤘ ¤â¦ partition on"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "„§ ¢â¥˜«œ ¤˜ ›ž£ ¦¬¨šã©œ«œ ⤘ ¤â¦ partition on"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"<EFBFBD>˜¨˜¡˜¢é ›é©«œ «¦ £âšœŸ¦ª «¦¬ partition ©œ megabytes."},
|
"<EFBFBD>˜¨˜¡˜¢é ›é©«œ «¦ £âšœŸ¦ª «¦¬ partition ©œ megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1713,6 +1756,8 @@ MUI_STRING elGRStrings[] =
|
||||||
" Unpartitioned space %6lu %s"},
|
" Unpartitioned space %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (£œš. %lu MB)"},
|
"MB (£œš. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Œâ¦ (‹ž › ˜£¦¨à£â¤¦)"},
|
"Œâ¦ (‹ž › ˜£¦¨à£â¤¦)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -819,12 +819,18 @@ static MUI_ENTRY enUSSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Press C to create a new partition.",
|
"\x07 Press P to create a primary partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Press D to delete an existing partition.",
|
"\x07 Press D to delete an existing partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1278,6 +1284,10 @@ static MUI_ENTRY enUSRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR enUSErrorEntries[] =
|
MUI_ERROR enUSErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS is not completely installed on your\n"
|
"ReactOS is not completely installed on your\n"
|
||||||
|
@ -1488,6 +1498,32 @@ MUI_ERROR enUSErrorEntries[] =
|
||||||
" * Press any key to continue.",
|
" * Press any key to continue.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1599,13 +1635,17 @@ MUI_STRING enUSStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Please wait..."},
|
" Please wait..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Install C = Create Partition F3 = Quit"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Install D = Delete Partition F3 = Quit"},
|
" ENTER = Install D = Delete Partition F3 = Quit"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Size of new partition:"},
|
"Size of new partition:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"You have chosen to create a new partition on"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Please enter the size of the new partition in megabytes."},
|
"Please enter the size of the new partition in megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1688,6 +1728,8 @@ MUI_STRING enUSStrings[] =
|
||||||
" Unpartitioned space %6lu %s"},
|
" Unpartitioned space %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"New (Unformatted)"},
|
"New (Unformatted)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -826,12 +826,19 @@ static MUI_ENTRY esESSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Presione C para crear una nueva partici¢n.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Presione C para crear una nueva partici¢n.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Presione D para borrar una partici¢n existente.",
|
"\x07 Presione D para borrar una partici¢n existente.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1285,6 +1292,10 @@ static MUI_ENTRY esESRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR esESErrorEntries[] =
|
MUI_ERROR esESErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS no est completamente instalado en su\n"
|
"ReactOS no est completamente instalado en su\n"
|
||||||
|
@ -1495,6 +1506,32 @@ MUI_ERROR esESErrorEntries[] =
|
||||||
" * Presione una tecla para continuar.",
|
" * Presione una tecla para continuar.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1606,13 +1643,19 @@ MUI_STRING esESStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Por favor, espere..."},
|
" Por favor, espere..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Instalar C = Crear Partici¢n F3 = Salir"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Instalar C = Crear Partici¢n F3 = Salir"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Borrar Partici¢n F3 = Salir"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Instalar D = Borrar Partici¢n F3 = Salir"},
|
" ENTER = Instalar D = Borrar Partici¢n F3 = Salir"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Tama¤o de la nueva partici¢n:"},
|
"Tama¤o de la nueva partici¢n:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Ha elegido crear una nueva partici¢n en"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Ha elegido crear una nueva partici¢n en"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Por favor, introduzca el tama¤o de la nueva partici¢n en megabytes."},
|
"Por favor, introduzca el tama¤o de la nueva partici¢n en megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1695,6 +1738,8 @@ MUI_STRING esESStrings[] =
|
||||||
" Espacio sin particionar %6lu %s"},
|
" Espacio sin particionar %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Nuevo (sin formato)"},
|
"Nuevo (sin formato)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -819,12 +819,19 @@ static MUI_ENTRY etEESelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Vajuta C, et teha uus partitsioon.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Vajuta C, et teha uus partitsioon.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Vajuta D, et kustutada olemasolev partitsioon.",
|
"\x07 Vajuta D, et kustutada olemasolev partitsioon.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1278,6 +1285,10 @@ static MUI_ENTRY etEERegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR etEEErrorEntries[] =
|
MUI_ERROR etEEErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS ei ole t„ielikult paigaldatud.\n"
|
"ReactOS ei ole t„ielikult paigaldatud.\n"
|
||||||
|
@ -1485,6 +1496,32 @@ MUI_ERROR etEEErrorEntries[] =
|
||||||
" * Vajuta suvalist klahvi, et j„tkata.",
|
" * Vajuta suvalist klahvi, et j„tkata.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1597,13 +1634,19 @@ MUI_STRING etEEStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Palun oota..."},
|
" Palun oota..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Paigalda C = Loo partitsioon F3 = V„lju"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Paigalda C = Loo partitsioon F3 = V„lju"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Paigalda D = Kustuta partitsioon F3 = V„lju"},
|
" ENTER = Paigalda D = Kustuta partitsioon F3 = V„lju"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Uue partitsiooni suurus:"},
|
"Uue partitsiooni suurus:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Oled valinud kettale uue partitsiooni loomise"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Oled valinud kettale uue partitsiooni loomise"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Sisesta uue partitsiooni suurus megabaitides."},
|
"Sisesta uue partitsiooni suurus megabaitides."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1686,6 +1729,8 @@ MUI_STRING etEEStrings[] =
|
||||||
" Kasutamata kettaruum %6lu %s"},
|
" Kasutamata kettaruum %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (maks. %lu MB)"},
|
"MB (maks. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Uus (Vormindamata)"},
|
"Uus (Vormindamata)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -832,12 +832,19 @@ static MUI_ENTRY frFRSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Appuyer sur C pour creer une nouvelle partition.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Appuyer sur C pour creer une nouvelle partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Appuyer sur D pour effacer une partition.",
|
"\x07 Appuyer sur D pour effacer une partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1291,6 +1298,10 @@ static MUI_ENTRY frFRRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR frFRErrorEntries[] =
|
MUI_ERROR frFRErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS n'est pas complŠtement install‚ sur votre\n"
|
"ReactOS n'est pas complŠtement install‚ sur votre\n"
|
||||||
|
@ -1501,6 +1512,32 @@ MUI_ERROR frFRErrorEntries[] =
|
||||||
" * Appuyez sur n'importe quelle touche pour continuer.",
|
" * Appuyez sur n'importe quelle touche pour continuer.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1613,13 +1650,19 @@ MUI_STRING frFRStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Veuillez patienter..."},
|
" Veuillez patienter..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTR<54>E = Installer C = Cr‚er Partition F3 = Quitter"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTR<54>E = Installer C = Cr‚er Partition F3 = Quitter"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTR<54>E = Installer D = Supprimer Partition F3 = Quitter"},
|
" ENTR<54>E = Installer D = Supprimer Partition F3 = Quitter"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Taille de la nouvelle partition :"},
|
"Taille de la nouvelle partition :"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Vous avez choisi de cr‚er une nouvelle partition sur"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Vous avez choisi de cr‚er une nouvelle partition sur"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Veuillez entrer la taille de la nouvelle partition en m‚gaoctets."},
|
"Veuillez entrer la taille de la nouvelle partition en m‚gaoctets."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1702,6 +1745,8 @@ MUI_STRING frFRStrings[] =
|
||||||
" Espace non partitionn‚ %6lu %s"},
|
" Espace non partitionn‚ %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"Mo (max. %lu Mo)"},
|
"Mo (max. %lu Mo)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Nouveau (non format‚)"},
|
"Nouveau (non format‚)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -820,12 +820,18 @@ static MUI_ENTRY heILSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Press C to create a new partition.",
|
"\x07 Press P to create a primary partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Press D to delete an existing partition.",
|
"\x07 Press D to delete an existing partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1279,6 +1285,10 @@ static MUI_ENTRY heILRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR heILErrorEntries[] =
|
MUI_ERROR heILErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS is not completely installed on your\n"
|
"ReactOS is not completely installed on your\n"
|
||||||
|
@ -1489,6 +1499,32 @@ MUI_ERROR heILErrorEntries[] =
|
||||||
" * Press any key to continue.",
|
" * Press any key to continue.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1600,13 +1636,18 @@ MUI_STRING heILStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" <20>€ Œ‡‹…š..."},
|
" <20>€ Œ‡‹…š..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = „š—<C5A1> C = –…˜ އ‰–„ F3 = <20>ˆŒ „š—<C5A1>„"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = „š—<C5A1> C = –…˜ އ‰–„ F3 = <20>ˆŒ „š—<C5A1>„"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = „š—<C5A1> D = އ— އ‰–„ F3 = <20>ˆŒ „š—<C5A1>„"},
|
" ENTER = „š—<C5A1> D = އ— އ‰–„ F3 = <20>ˆŒ „š—<C5A1>„"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"‚…ƒŒ „އ‰–„ „‡ƒ™„:"},
|
"‚…ƒŒ „އ‰–„ „‡ƒ™„:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"You have chosen to create a new partition on"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Please enter the size of the new partition in megabytes."},
|
"Please enter the size of the new partition in megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1689,6 +1730,8 @@ MUI_STRING heILStrings[] =
|
||||||
" Unpartitioned space %6lu %s"},
|
" Unpartitioned space %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"New (Unformatted)"},
|
"New (Unformatted)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -820,12 +820,19 @@ static MUI_ENTRY itITSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Premere C per creare una nuova partizione.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Premere C per creare una nuova partizione.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Premere D per cancellare una partizione esistente.",
|
"\x07 Premere D per cancellare una partizione esistente.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1279,6 +1286,10 @@ static MUI_ENTRY itITRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR itITErrorEntries[] =
|
MUI_ERROR itITErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS non Š installato completamente nel vostro\n"
|
"ReactOS non Š installato completamente nel vostro\n"
|
||||||
|
@ -1489,6 +1500,32 @@ MUI_ERROR itITErrorEntries[] =
|
||||||
" * Premere un tasto qualsiasi per continuare.",
|
" * Premere un tasto qualsiasi per continuare.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1601,13 +1638,19 @@ MUI_STRING itITStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Attendere..."},
|
" Attendere..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" INVIO = Installa C = Crea Partizione F3 = Esci"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " INVIO = Installa C = Crea Partizione F3 = Esci"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" INVIO = Installa D = Rimuovi Partizione F3 = Esci"},
|
" INVIO = Installa D = Rimuovi Partizione F3 = Esci"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Dimensione della nuova partizione:"},
|
"Dimensione della nuova partizione:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Avete scelto di creare una nuova partizione su"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Avete scelto di creare una nuova partizione su"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Indicare la dimensione della nuova partizione in megabyte."},
|
"Indicare la dimensione della nuova partizione in megabyte."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
|
|
@ -820,12 +820,19 @@ static MUI_ENTRY jaJPSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 ±À×¼² Ê߰è¼®Ý ¦ »¸¾² ½ÙÆÊ C ·°¦ µ¼Ã ¸ÀÞ»²¡",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 ±À×¼² Ê߰è¼®Ý ¦ »¸¾² ½ÙÆÊ C ·°¦ µ¼Ã ¸ÀÞ»²¡",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 ·¿ÝÉ Ê߰輮ݦ »¸¼Þ® ½ÙÆÊ D ·°¦ µ¼Ã ¸ÀÞ»²¡",
|
"\x07 ·¿ÝÉ Ê߰輮ݦ »¸¼Þ® ½ÙÆÊ D ·°¦ µ¼Ã ¸ÀÞ»²¡",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1279,6 +1286,10 @@ static MUI_ENTRY jaJPRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR jaJPErrorEntries[] =
|
MUI_ERROR jaJPErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS Ê ºÝËß°ÀÆ ¶Ý¾ÞÝÆ ²Ý½Ä°Ù\n"
|
"ReactOS Ê ºÝËß°ÀÆ ¶Ý¾ÞÝÆ ²Ý½Ä°Ù\n"
|
||||||
|
@ -1489,6 +1500,32 @@ MUI_ERROR jaJPErrorEntries[] =
|
||||||
" * Press any key to continue.",
|
" * Press any key to continue.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1600,13 +1637,19 @@ MUI_STRING jaJPStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" µÏÁ ¸ÀÞ»²..."},
|
" µÏÁ ¸ÀÞ»²..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = ²Ý½Ä°Ù C = Ê߰è¼®Ý »¸¾² F3 = Á³¼"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = ²Ý½Ä°Ù C = Ê߰è¼®Ý »¸¾² F3 = Á³¼"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = ²Ý½Ä°Ù D = Ê߰è¼®Ý »¸¼Þ® F3 = Á³¼"},
|
" ENTER = ²Ý½Ä°Ù D = Ê߰è¼®Ý »¸¼Þ® F3 = Á³¼"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"±À×¼² Ê߰è¼®ÝÉ »²½Þ:"},
|
"±À×¼² Ê߰è¼®ÝÉ »²½Þ:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"±À×¼² Ê߰輮ݦ Â·ÞÆ »¸¾²½Ù ºÄ¶Þ ¾ÝÀ¸ »ÚϼÀ:"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "±À×¼² Ê߰輮ݦ Â·ÞÆ »¸¾²½Ù ºÄ¶Þ ¾ÝÀ¸ »ÚϼÀ:"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"±À×¼² Ê߰è¼®ÝÉ »²½Þ¦ Ò¶ÞÊÞ²Ä ÀݲÃÞ Æ³Ø®¸ ¼Ã¸ÀÞ»²¡"},
|
"±À×¼² Ê߰è¼®ÝÉ »²½Þ¦ Ò¶ÞÊÞ²Ä ÀݲÃÞ Æ³Ø®¸ ¼Ã¸ÀÞ»²¡"},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1689,6 +1732,8 @@ MUI_STRING jaJPStrings[] =
|
||||||
" ÐÌÞݶÂÉ ½Íß°½ %6lu %s"},
|
" ÐÌÞݶÂÉ ½Íß°½ %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (»²ÀÞ². %lu MB)"},
|
"MB (»²ÀÞ². %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"¼Ý· (ÐÌ«°Ï¯Ä)"},
|
"¼Ý· (ÐÌ«°Ï¯Ä)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -829,12 +829,18 @@ static MUI_ENTRY ltLTSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Press C to create a new partition.",
|
"\x07 Press P to create a primary partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Press D to delete an existing partition.",
|
"\x07 Press D to delete an existing partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1288,6 +1294,10 @@ static MUI_ENTRY ltLTRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR ltLTErrorEntries[] =
|
MUI_ERROR ltLTErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS is not completely installed on your\n"
|
"ReactOS is not completely installed on your\n"
|
||||||
|
@ -1498,6 +1508,32 @@ MUI_ERROR ltLTErrorEntries[] =
|
||||||
" * Press any key to continue.",
|
" * Press any key to continue.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1610,13 +1646,17 @@ MUI_STRING ltLTStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Please wait..."},
|
" Please wait..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Install C = Create Partition F3 = Quit"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Install D = Delete Partition F3 = Quit"},
|
" ENTER = Install D = Delete Partition F3 = Quit"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Size of new partition:"},
|
"Size of new partition:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"You have chosen to create a new partition on"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Please enter the size of the new partition in megabytes."},
|
"Please enter the size of the new partition in megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1699,6 +1739,8 @@ MUI_STRING ltLTStrings[] =
|
||||||
" Unpartitioned space %6lu %s"},
|
" Unpartitioned space %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"New (Unformatted)"},
|
"New (Unformatted)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -854,12 +854,19 @@ static MUI_ENTRY nlNLSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Druk op C om een nieuwe partitie aan te maken.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Druk op C om een nieuwe partitie aan te maken.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Druk op D om een bestaande partitie te verwijderen.",
|
"\x07 Druk op D om een bestaande partitie te verwijderen.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1319,6 +1326,10 @@ static MUI_ENTRY nlNLRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR nlNLErrorEntries[] =
|
MUI_ERROR nlNLErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS is niet geheel ge\x8Bnstalleerd op uw\n"
|
"ReactOS is niet geheel ge\x8Bnstalleerd op uw\n"
|
||||||
|
@ -1533,6 +1544,32 @@ MUI_ERROR nlNLErrorEntries[] =
|
||||||
" * Druk op een toets om door te gaan.",
|
" * Druk op een toets om door te gaan.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1645,13 +1682,19 @@ MUI_STRING nlNLStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Een ogenblik geduld..."},
|
" Een ogenblik geduld..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Installeren C = Partitie aanmaken F3 = Afsluiten"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Installeren C = Partitie aanmaken F3 = Afsluiten"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Installeren D = Partitie verwijderen F3 = Afsluiten"},
|
" ENTER = Installeren D = Partitie verwijderen F3 = Afsluiten"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Grootte nieuwe partitie:"},
|
"Grootte nieuwe partitie:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"U wilt een nieuwe partitie aanmaken op"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "U wilt een nieuwe partitie aanmaken op"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Voert u de grootte van de nieuwe partitie in in megabytes."},
|
"Voert u de grootte van de nieuwe partitie in in megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1734,6 +1777,8 @@ MUI_STRING nlNLStrings[] =
|
||||||
" Niet gepartitioneerde ruimte %6lu %s"},
|
" Niet gepartitioneerde ruimte %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Nieuw (Ongeformatteerd)"},
|
"Nieuw (Ongeformatteerd)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -828,12 +828,19 @@ static MUI_ENTRY plPLSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Naci<63>nij C, by stworzy† nowĄ partycj©.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Naci˜nij C, by stworzy† now¥ partycj©.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Naci˜nij D, by skasowa† istniej¥c¥ partycj©.",
|
"\x07 Naci˜nij D, by skasowa† istniej¥c¥ partycj©.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1287,6 +1294,10 @@ static MUI_ENTRY plPLRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR plPLErrorEntries[] =
|
MUI_ERROR plPLErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS nie zostaˆ w peˆni zainstalowany na twoim\n"
|
"ReactOS nie zostaˆ w peˆni zainstalowany na twoim\n"
|
||||||
|
@ -1497,6 +1508,32 @@ MUI_ERROR plPLErrorEntries[] =
|
||||||
" * Naci˜nij dowolny klawisz, aby kontynuowa†.",
|
" * Naci˜nij dowolny klawisz, aby kontynuowa†.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1609,13 +1646,19 @@ MUI_STRING plPLStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Prosz© czeka†..."},
|
" Prosz© czeka†..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Instalacja C = Utworzenie Partycji F3 = Wyj<79>cie"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Instalacja C = Utworzenie Partycji F3 = Wyj˜cie"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Instalacja D = Skasowanie Partycji F3 = Wyj˜cie"},
|
" ENTER = Instalacja D = Skasowanie Partycji F3 = Wyj˜cie"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Rozmiar nowej partycji:"},
|
"Rozmiar nowej partycji:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Wybrane: utworzenie nowej partycji na"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Wybrane: utworzenie nowej partycji na"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Prosz© wprowadzi† rozmiar nowej partycji w megabajtach."},
|
"Prosz© wprowadzi† rozmiar nowej partycji w megabajtach."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
|
|
@ -838,12 +838,19 @@ static MUI_ENTRY ptBRSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Para criar uma parti‡Æo no espa‡o nÆo particionado, pressione C.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Para criar uma parti‡Æo no espa‡o nÆo particionado, pressione C.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Para excluir a parti‡Æo selecionada, pressione D.",
|
"\x07 Para excluir a parti‡Æo selecionada, pressione D.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1315,6 +1322,10 @@ static MUI_ENTRY ptBRRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR ptBRErrorEntries[] =
|
MUI_ERROR ptBRErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"O ReactOS nÆo est completamente instalado no computador.\n"
|
"O ReactOS nÆo est completamente instalado no computador.\n"
|
||||||
|
@ -1525,6 +1536,32 @@ MUI_ERROR ptBRErrorEntries[] =
|
||||||
" * Pressione qualquer tecla para continuar.",
|
" * Pressione qualquer tecla para continuar.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1636,13 +1673,19 @@ MUI_STRING ptBRStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Por favor, aguarde..."},
|
" Por favor, aguarde..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER=Instalar C=Criar parti‡Æo F3=Sair"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER=Instalar C=Criar parti‡Æo F3=Sair"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER=Instalar D=Apagar parti‡Æo F3=Sair"},
|
" ENTER=Instalar D=Apagar parti‡Æo F3=Sair"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Tamanho da nova parti‡Æo:"},
|
"Tamanho da nova parti‡Æo:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Vocˆ solicitou a cria‡Æo de uma nova parti‡Æo em"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Vocˆ solicitou a cria‡Æo de uma nova parti‡Æo em"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Por favor, insira o tamanho da nova parti‡Æo em megabytes (MB)."},
|
"Por favor, insira o tamanho da nova parti‡Æo em megabytes (MB)."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1725,6 +1768,8 @@ MUI_STRING ptBRStrings[] =
|
||||||
" Espa‡o nÆo particionado %6lu %s"},
|
" Espa‡o nÆo particionado %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Novo (sem formato)"},
|
"Novo (sem formato)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -881,12 +881,19 @@ static MUI_ENTRY roROSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Tastaîi C pentru a crea o nouÇ partiîie.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Tastaîi C pentru a crea o nouÇ partiîie.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Tastaîi D pentru a terge o partiîie existentÇ.",
|
"\x07 Tastaîi D pentru a terge o partiîie existentÇ.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1340,6 +1347,10 @@ static MUI_ENTRY roRORegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR roROErrorEntries[] =
|
MUI_ERROR roROErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS nu a fost instalat complet Œn calculatorul\n"
|
"ReactOS nu a fost instalat complet Œn calculatorul\n"
|
||||||
|
@ -1566,6 +1577,32 @@ MUI_ERROR roROErrorEntries[] =
|
||||||
" * Tastaîi pentru a continua.",
|
" * Tastaîi pentru a continua.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1677,13 +1714,19 @@ MUI_STRING roROStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Ateptaîi..."},
|
" Ateptaîi..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Instalare C = Creare partiîie F3 = Ieire"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Instalare C = Creare partiîie F3 = Ieire"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Instalare D = ¸tergere partiîie F3 = Ieire"},
|
" ENTER = Instalare D = ¸tergere partiîie F3 = Ieire"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"MÇrimea noii partiîii:"},
|
"MÇrimea noii partiîii:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Aîi ales crearea unei noi partiîii pe"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Aîi ales crearea unei noi partiîii pe"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Introduceîi mÇrimea noii partiîii Œn megaocteîi."},
|
"Introduceîi mÇrimea noii partiîii Œn megaocteîi."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1766,6 +1809,8 @@ MUI_STRING roROStrings[] =
|
||||||
" Spaîiu nepartiîionat %6lu %s"},
|
" Spaîiu nepartiîionat %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"Mo (max. %lu Mo)"},
|
"Mo (max. %lu Mo)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Part. nouÇ (neformatatÇ)"},
|
"Part. nouÇ (neformatatÇ)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -820,12 +820,19 @@ static MUI_ENTRY ruRUSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 <20> ¦¬¨â¥ C ¤«ï á®§¤ ¨ï ®¢®£® à §¤¥« .",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 <20> ¦¬¨â¥ C ¤«ï á®§¤ ¨ï ®¢®£® à §¤¥« .",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 <20> ¦¬¨â¥ D ¤«ï 㤠«¥¨ï áãé¥áâ¢ãî饣® à §¤¥« .",
|
"\x07 <20> ¦¬¨â¥ D ¤«ï 㤠«¥¨ï áãé¥áâ¢ãî饣® à §¤¥« .",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1279,6 +1286,10 @@ static MUI_ENTRY ruRURegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR ruRUErrorEntries[] =
|
MUI_ERROR ruRUErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS ¥ ¡ë« ¯®«®áâìî ãáâ ®¢«¥ ¢ è\n"
|
"ReactOS ¥ ¡ë« ¯®«®áâìî ãáâ ®¢«¥ ¢ è\n"
|
||||||
|
@ -1489,6 +1500,32 @@ MUI_ERROR ruRUErrorEntries[] =
|
||||||
" * Press any key to continue.",
|
" * Press any key to continue.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1601,13 +1638,19 @@ MUI_STRING ruRUStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" <20>®¦ «ã©áâ , ¯®¤®¦¤¨â¥..."},
|
" <20>®¦ «ã©áâ , ¯®¤®¦¤¨â¥..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = “áâ ®¢¨âì C = ‘®§¤ âì à §¤¥« F3 = ‚ë室"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = “áâ ®¢¨âì C = ‘®§¤ âì à §¤¥« F3 = ‚ë室"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = “áâ ®¢¨âì D = “¤ «¨âì à §¤¥« F3 = ‚ë室"},
|
" ENTER = “áâ ®¢¨âì D = “¤ «¨âì à §¤¥« F3 = ‚ë室"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"<EFBFBD> §¬¥à ®¢®£® à §¤¥« :"},
|
"<EFBFBD> §¬¥à ®¢®£® à §¤¥« :"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"‚ë å®â¨â¥ á®§¤ âì ®¢ë© à §¤¥« "},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "‚ë å®â¨â¥ á®§¤ âì ®¢ë© à §¤¥« "},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"<EFBFBD>®¦ «ã©áâ , ¢¢¥¤¨â¥ à §¬¥à ®¢®£® à §¤¥« ¢ ¬¥£ ¡ ©â å."},
|
"<EFBFBD>®¦ «ã©áâ , ¢¢¥¤¨â¥ à §¬¥à ®¢®£® à §¤¥« ¢ ¬¥£ ¡ ©â å."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1690,6 +1733,8 @@ MUI_STRING ruRUStrings[] =
|
||||||
" <20>¥à §¬¥ç¥®¥ ¯à®áâà á⢮ %6lu %s"},
|
" <20>¥à §¬¥ç¥®¥ ¯à®áâà á⢮ %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"Œ<EFBFBD> (¬ ªá. %lu Œ<>)"},
|
"Œ<EFBFBD> (¬ ªá. %lu Œ<>)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"<EFBFBD>®¢ë© (¥®âä®à¬ â¨à®¢ ë©)"},
|
"<EFBFBD>®¢ë© (¥®âä®à¬ â¨à®¢ ë©)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -827,12 +827,19 @@ static MUI_ENTRY skSKSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 StlaŸte C pre vytvorenie novej oblasti.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 StlaŸte C pre vytvorenie novej oblasti.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 StlaŸte D pre vymazanie existuj£cej oblasti.",
|
"\x07 StlaŸte D pre vymazanie existuj£cej oblasti.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1286,6 +1293,10 @@ static MUI_ENTRY skSKRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR skSKErrorEntries[] =
|
MUI_ERROR skSKErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"Syst‚m ReactOS nie je kompletne nainçtalovanì na Vaçom\n"
|
"Syst‚m ReactOS nie je kompletne nainçtalovanì na Vaçom\n"
|
||||||
|
@ -1499,6 +1510,32 @@ MUI_ERROR skSKErrorEntries[] =
|
||||||
" * PokraŸujte stlaŸen¡m –ubovo–n‚ho kl vesu.",
|
" * PokraŸujte stlaŸen¡m –ubovo–n‚ho kl vesu.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1611,13 +1648,19 @@ MUI_STRING skSKStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" PoŸkajte, pros¡m ..."},
|
" PoŸkajte, pros¡m ..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Inçtalovaœ C = Vytvoriœ oblasœ F3 = SkonŸiœ"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Inçtalovaœ C = Vytvoriœ oblasœ F3 = SkonŸiœ"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Inçtalovaœ D = Odstr niœ oblasœ F3 = SkonŸiœ"},
|
" ENTER = Inçtalovaœ D = Odstr niœ oblasœ F3 = SkonŸiœ"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Ve–kosœ novej oblasti:"},
|
"Ve–kosœ novej oblasti:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Zvolili ste vytvorenie novej oblasti na"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Zvolili ste vytvorenie novej oblasti na"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Zadajte, pros¡m, ve–kosœ novej oblasti v megabajtoch."},
|
"Zadajte, pros¡m, ve–kosœ novej oblasti v megabajtoch."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1700,6 +1743,8 @@ MUI_STRING skSKStrings[] =
|
||||||
" Miesto bez oblast¡ %6lu %s"},
|
" Miesto bez oblast¡ %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Nov (Nenaform tovan )"},
|
"Nov (Nenaform tovan )"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -823,12 +823,19 @@ static MUI_ENTRY sqALSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Kiko C p‰r t‰ krijuar nj‰ particion t‰ ri.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Kiko C p‰r t‰ krijuar nj‰ particion t‰ ri.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Kliko D p‰r t‰ fshir‰ nj‰ particion ekzistues.",
|
"\x07 Kliko D p‰r t‰ fshir‰ nj‰ particion ekzistues.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1282,6 +1289,10 @@ static MUI_ENTRY sqALRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR sqALErrorEntries[] =
|
MUI_ERROR sqALErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS nuk ‰shte instaluar plotesisht ne kompjuterin\n"
|
"ReactOS nuk ‰shte instaluar plotesisht ne kompjuterin\n"
|
||||||
|
@ -1492,6 +1503,32 @@ MUI_ERROR sqALErrorEntries[] =
|
||||||
" * Shtypni nj‰ tast cfar‰do p‰r t‰ vazhduar.",
|
" * Shtypni nj‰ tast cfar‰do p‰r t‰ vazhduar.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1603,13 +1640,19 @@ MUI_STRING sqALStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Ju lutem prisni..."},
|
" Ju lutem prisni..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Instalo C = Krijo Particion F3 = Dil"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Instalo C = Krijo Particion F3 = Dil"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Instalo D = Fshi Particion F3 = Dil"},
|
" ENTER = Instalo D = Fshi Particion F3 = Dil"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Madh‰sia e particionit t‰ ri:"},
|
"Madh‰sia e particionit t‰ ri:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
|
// "You have chosen to create a primary partition on"},
|
||||||
"Ju keni zgjedhur p‰r t‰ krijuar nj‰ ndarje t‰ re n‰"},
|
"Ju keni zgjedhur p‰r t‰ krijuar nj‰ ndarje t‰ re n‰"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"Ju lutem, jepini madh‰sin‰ e particionit t‰ ri n‰ megabajt."},
|
"Ju lutem, jepini madh‰sin‰ e particionit t‰ ri n‰ megabajt."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1692,6 +1735,8 @@ MUI_STRING sqALStrings[] =
|
||||||
" Hap‰sire e papjesesezuar %6lu %s"},
|
" Hap‰sire e papjesesezuar %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"I ri (papjesesezuar)"},
|
"I ri (papjesesezuar)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -826,12 +826,19 @@ static MUI_ENTRY svSESelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Tryck C f”r att skapa en ny partition.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Tryck C f”r att skapa en ny partition.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Tryck D f”r att ta bort en befintlig partititon.",
|
"\x07 Tryck D f”r att ta bort en befintlig partititon.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1285,6 +1292,10 @@ static MUI_ENTRY svSERegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR svSEErrorEntries[] =
|
MUI_ERROR svSEErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS installerades inte fullst„ndigt p† din\n"
|
"ReactOS installerades inte fullst„ndigt p† din\n"
|
||||||
|
@ -1495,6 +1506,32 @@ MUI_ERROR svSEErrorEntries[] =
|
||||||
" * Tryck valfri tangent f”r att forts„tta.",
|
" * Tryck valfri tangent f”r att forts„tta.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1606,13 +1643,19 @@ MUI_STRING svSEStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" Var v„nlig v„nta..."},
|
" Var v„nlig v„nta..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = Installera C = Skapa Partition F3 = Avsluta"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = Installera C = Skapa Partition F3 = Avsluta"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = Installera D = Ta bort Partition F3 = Avsluta"},
|
" ENTER = Installera D = Ta bort Partition F3 = Avsluta"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"Storlek p† den nya partitionen:"},
|
"Storlek p† den nya partitionen:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Du har valt att skapa en ny partiton p†"},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Du har valt att skapa en ny partiton p†"},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"V„nligen skriv in storleken av den nya partitionen i megabytes."},
|
"V„nligen skriv in storleken av den nya partitionen i megabytes."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1695,6 +1738,8 @@ MUI_STRING svSEStrings[] =
|
||||||
" Opartitionerat utrymme %6lu %s"},
|
" Opartitionerat utrymme %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (max. %lu MB)"},
|
"MB (max. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Ny (Oformaterad)"},
|
"Ny (Oformaterad)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -807,12 +807,19 @@ static MUI_ENTRY trTRSelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 Se‡ili boŸluktan yeni bir b”l<E2809D>m oluŸturmak i‡in C d<>§mesine bas<61>n<EFBFBD>z.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 Se‡ili boŸluktan yeni bir b”l<E2809D>m oluŸturmak i‡in C d<>§mesine bas<61>n<EFBFBD>z.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 Se‡ili b”l<E2809D>m<EFBFBD> silmek i‡in D d<>§mesine bas<61>n<EFBFBD>z.",
|
"\x07 Se‡ili b”l<E2809D>m<EFBFBD> silmek i‡in D d<>§mesine bas<61>n<EFBFBD>z.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1254,6 +1261,10 @@ static MUI_ENTRY trTRRegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR trTRErrorEntries[] =
|
MUI_ERROR trTRErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS, bilgisayara b<>t<EFBFBD>n<EFBFBD>yle kurulmad<61>.\n"
|
"ReactOS, bilgisayara b<>t<EFBFBD>n<EFBFBD>yle kurulmad<61>.\n"
|
||||||
|
@ -1463,6 +1474,32 @@ MUI_ERROR trTRErrorEntries[] =
|
||||||
" * S<>rd<72>rmek i‡in bir d<>§meye bas<61>n<EFBFBD>z.",
|
" * S<>rd<72>rmek i‡in bir d<>§meye bas<61>n<EFBFBD>z.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1574,13 +1611,19 @@ MUI_STRING trTRStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" L<>tfen bekleyiniz..."},
|
" L<>tfen bekleyiniz..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" GiriŸ = Kur C = B”l<E2809D>m OluŸtur F3 = €<>k<EFBFBD>Ÿ"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " GiriŸ = Kur C = B”l<E2809D>m OluŸtur F3 = €<>k<EFBFBD>Ÿ"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" GiriŸ = Kur D = B”l<E2809D>m<EFBFBD> Sil F3 = €<>k<EFBFBD>Ÿ"},
|
" GiriŸ = Kur D = B”l<E2809D>m<EFBFBD> Sil F3 = €<>k<EFBFBD>Ÿ"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"B<EFBFBD>y<EFBFBD>kl<EFBFBD>§<EFBFBD> giriniz:"},
|
"B<EFBFBD>y<EFBFBD>kl<EFBFBD>§<EFBFBD> giriniz:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"Yeni bir b”l<E2809D>m oluŸturmay<61> se‡tiniz."},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "Yeni bir b”l<E2809D>m oluŸturmay<61> se‡tiniz."},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"OluŸturulacak b”l<E2809D>m<EFBFBD>n b<>y<EFBFBD>kl<6B>§<EFBFBD>n<EFBFBD> mega‡oklu olarak giriniz."},
|
"OluŸturulacak b”l<E2809D>m<EFBFBD>n b<>y<EFBFBD>kl<6B>§<EFBFBD>n<EFBFBD> mega‡oklu olarak giriniz."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1663,6 +1706,8 @@ MUI_STRING trTRStrings[] =
|
||||||
" Kullan<61>lmayan BoŸluk %6lu %s"},
|
" Kullan<61>lmayan BoŸluk %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (En ‡ok %lu MB)"},
|
"MB (En ‡ok %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"Yeni (Bi‡imlendirilmemiŸ)"},
|
"Yeni (Bi‡imlendirilmemiŸ)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -825,12 +825,19 @@ static MUI_ENTRY ukUASelectPartitionEntries[] =
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
15,
|
15,
|
||||||
"\x07 <20> â¨áiâì C 鮡 á⢮à¨â¨ ®¢¨© à®§¤i«.",
|
"\x07 Press P to create a primary partition.",
|
||||||
|
// "\x07 <20> â¨áiâì C 鮡 á⢮à¨â¨ ®¢¨© à®§¤i«.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
8,
|
8,
|
||||||
17,
|
17,
|
||||||
|
"\x07 Press E to create an extended partition.",
|
||||||
|
TEXT_STYLE_NORMAL
|
||||||
|
},
|
||||||
|
{
|
||||||
|
8,
|
||||||
|
19,
|
||||||
"\x07 <20> â¨áiâì D 鮡 ¢¨¤ «¨â¨ iáãî稩 à®§¤i«.",
|
"\x07 <20> â¨áiâì D 鮡 ¢¨¤ «¨â¨ iáãî稩 à®§¤i«.",
|
||||||
TEXT_STYLE_NORMAL
|
TEXT_STYLE_NORMAL
|
||||||
},
|
},
|
||||||
|
@ -1284,6 +1291,10 @@ static MUI_ENTRY ukUARegistryEntries[] =
|
||||||
|
|
||||||
MUI_ERROR ukUAErrorEntries[] =
|
MUI_ERROR ukUAErrorEntries[] =
|
||||||
{
|
{
|
||||||
|
{
|
||||||
|
// NOT_AN_ERROR
|
||||||
|
"Success\n"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
//ERROR_NOT_INSTALLED
|
//ERROR_NOT_INSTALLED
|
||||||
"ReactOS ¥ ¡ã¢ ¯®¢iáâî ¢áâ ®¢«¥¨© ‚ è\n"
|
"ReactOS ¥ ¡ã¢ ¯®¢iáâî ¢áâ ®¢«¥¨© ‚ è\n"
|
||||||
|
@ -1495,6 +1506,32 @@ MUI_ERROR ukUAErrorEntries[] =
|
||||||
" * <20> â¨áiâì ¡ã¤ì-ïªã ª« ¢ièã ¤«ï ¯à®¤®¢¦¥ï.",
|
" * <20> â¨áiâì ¡ã¤ì-ïªã ª« ¢ièã ¤«ï ¯à®¤®¢¦¥ï.",
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
//ERROR_PARTITION_TABLE_FULL,
|
||||||
|
"You can not create a new primary or extended partition in the\n"
|
||||||
|
"partition table of this disk because the partition table is full.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_ONLY_ONE_EXTENDED,
|
||||||
|
"You can not create more than one extended partition per disk.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_NOT_BEHIND_EXTENDED,
|
||||||
|
"You can not create a partition behind an extended partition.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
//ERROR_EXTENDED_NOT_LAST,
|
||||||
|
"An extended partition must always be the last\n"
|
||||||
|
"partition in a partition table.\n"
|
||||||
|
"\n"
|
||||||
|
" * Press any key to continue."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -1606,13 +1643,19 @@ MUI_STRING ukUAStrings[] =
|
||||||
{STRING_PLEASEWAIT,
|
{STRING_PLEASEWAIT,
|
||||||
" <20>ã¤ì-« ᪠, § 祪 ©â¥..."},
|
" <20>ã¤ì-« ᪠, § 祪 ©â¥..."},
|
||||||
{STRING_INSTALLCREATEPARTITION,
|
{STRING_INSTALLCREATEPARTITION,
|
||||||
" ENTER = ‚áâ ®¢¨â¨ C = ‘⢮à¨â¨ <20>®§¤i« F3 = ‚¨©â¨"},
|
" ENTER = Install P = Create Primary E = Create Extended F3 = Quit"},
|
||||||
|
// " ENTER = ‚áâ ®¢¨â¨ C = ‘⢮à¨â¨ <20>®§¤i« F3 = ‚¨©â¨"},
|
||||||
{STRING_INSTALLDELETEPARTITION,
|
{STRING_INSTALLDELETEPARTITION,
|
||||||
" ENTER = ‚áâ ®¢¨â¨ D = ‚¨¤ «¨â¨ <20>®§¤i« F3 = ‚¨©â¨"},
|
" ENTER = ‚áâ ®¢¨â¨ D = ‚¨¤ «¨â¨ <20>®§¤i« F3 = ‚¨©â¨"},
|
||||||
|
{STRING_DELETEPARTITION,
|
||||||
|
" D = Delete Partition F3 = Quit"},
|
||||||
{STRING_PARTITIONSIZE,
|
{STRING_PARTITIONSIZE,
|
||||||
"<EFBFBD>®§¬ià ®¢®£® à®§¤i«ã:"},
|
"<EFBFBD>®§¬ià ®¢®£® à®§¤i«ã:"},
|
||||||
{STRING_CHOOSENEWPARTITION,
|
{STRING_CHOOSENEWPARTITION,
|
||||||
"‚¨ å®ç¥â¥ á⢮à¨â¨ ®¢¨© à®§¤i« "},
|
"You have chosen to create a primary partition on"},
|
||||||
|
// "‚¨ å®ç¥â¥ á⢮à¨â¨ ®¢¨© à®§¤i« "},
|
||||||
|
{STRING_CHOOSE_NEW_EXTENDED_PARTITION,
|
||||||
|
"You have chosen to create an extended partition on"},
|
||||||
{STRING_HDDSIZE,
|
{STRING_HDDSIZE,
|
||||||
"<EFBFBD>ã¤ì-« ᪠, ¢¢¥¤iâì à®§¬ià ®¢®£® à®§¤i«ã ¢ ¬¥£ ¡ ©â å."},
|
"<EFBFBD>ã¤ì-« ᪠, ¢¢¥¤iâì à®§¬ià ®¢®£® à®§¤i«ã ¢ ¬¥£ ¡ ©â å."},
|
||||||
{STRING_CREATEPARTITION,
|
{STRING_CREATEPARTITION,
|
||||||
|
@ -1695,6 +1738,8 @@ MUI_STRING ukUAStrings[] =
|
||||||
" <20>¥à®§¬iç¥ ®¡« áâì %6lu %s"},
|
" <20>¥à®§¬iç¥ ®¡« áâì %6lu %s"},
|
||||||
{STRING_MAXSIZE,
|
{STRING_MAXSIZE,
|
||||||
"MB (¬ ªá. %lu MB)"},
|
"MB (¬ ªá. %lu MB)"},
|
||||||
|
{STRING_EXTENDED_PARTITION,
|
||||||
|
"Extended Partition"},
|
||||||
{STRING_UNFORMATTED,
|
{STRING_UNFORMATTED,
|
||||||
"<EFBFBD>®¢¨© (<28>¥ä®à¬ ⮢ ¨©)"},
|
"<EFBFBD>®¢¨© (<28>¥ä®à¬ ⮢ ¨©)"},
|
||||||
{STRING_FORMATUNUSED,
|
{STRING_FORMATUNUSED,
|
||||||
|
|
|
@ -100,8 +100,10 @@ MUIGetString(
|
||||||
#define STRING_PLEASEWAIT 1
|
#define STRING_PLEASEWAIT 1
|
||||||
#define STRING_INSTALLCREATEPARTITION 2
|
#define STRING_INSTALLCREATEPARTITION 2
|
||||||
#define STRING_INSTALLDELETEPARTITION 3
|
#define STRING_INSTALLDELETEPARTITION 3
|
||||||
|
#define STRING_DELETEPARTITION 59
|
||||||
#define STRING_PARTITIONSIZE 4
|
#define STRING_PARTITIONSIZE 4
|
||||||
#define STRING_CHOOSENEWPARTITION 5
|
#define STRING_CHOOSENEWPARTITION 5
|
||||||
|
#define STRING_CHOOSE_NEW_EXTENDED_PARTITION 57
|
||||||
#define STRING_HDDSIZE 6
|
#define STRING_HDDSIZE 6
|
||||||
#define STRING_CREATEPARTITION 7
|
#define STRING_CREATEPARTITION 7
|
||||||
#define STRING_PARTFORMAT 8
|
#define STRING_PARTFORMAT 8
|
||||||
|
@ -144,6 +146,7 @@ MUIGetString(
|
||||||
#define STRING_UNPSPACE 48
|
#define STRING_UNPSPACE 48
|
||||||
#define STRING_MAXSIZE 49
|
#define STRING_MAXSIZE 49
|
||||||
#define STRING_UNFORMATTED 50
|
#define STRING_UNFORMATTED 50
|
||||||
|
#define STRING_EXTENDED_PARTITION 58
|
||||||
#define STRING_FORMATUNUSED 51
|
#define STRING_FORMATUNUSED 51
|
||||||
#define STRING_FORMATUNKNOWN 52
|
#define STRING_FORMATUNKNOWN 52
|
||||||
#define STRING_KB 53
|
#define STRING_KB 53
|
||||||
|
|
|
@ -1373,6 +1373,11 @@ PrintPartitionData(
|
||||||
{
|
{
|
||||||
PartType = "NTFS"; /* FIXME: Not quite correct! */
|
PartType = "NTFS"; /* FIXME: Not quite correct! */
|
||||||
}
|
}
|
||||||
|
else if ((PartEntry->PartitionType == PARTITION_EXTENDED) ||
|
||||||
|
(PartEntry->PartitionType == PARTITION_XINT13_EXTENDED))
|
||||||
|
{
|
||||||
|
PartType = MUIGetString(STRING_EXTENDED_PARTITION);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PartSize.QuadPart = PartEntry->SectorCount.QuadPart * DiskEntry->BytesPerSector;
|
PartSize.QuadPart = PartEntry->SectorCount.QuadPart * DiskEntry->BytesPerSector;
|
||||||
|
@ -2095,7 +2100,7 @@ GetNextUnpartitionedEntry(
|
||||||
|
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
CreateNewPartition(
|
CreatePrimaryPartition(
|
||||||
PPARTLIST List,
|
PPARTLIST List,
|
||||||
ULONGLONG SectorCount,
|
ULONGLONG SectorCount,
|
||||||
BOOLEAN AutoCreate)
|
BOOLEAN AutoCreate)
|
||||||
|
@ -2104,7 +2109,7 @@ CreateNewPartition(
|
||||||
PPARTENTRY PartEntry;
|
PPARTENTRY PartEntry;
|
||||||
PPARTENTRY NewPartEntry;
|
PPARTENTRY NewPartEntry;
|
||||||
|
|
||||||
DPRINT1("CreateNewPartition(%I64u)\n", SectorCount);
|
DPRINT1("CreatePrimaryPartition(%I64u)\n", SectorCount);
|
||||||
|
|
||||||
if (List == NULL ||
|
if (List == NULL ||
|
||||||
List->CurrentDisk == NULL ||
|
List->CurrentDisk == NULL ||
|
||||||
|
@ -2180,6 +2185,102 @@ DPRINT1("Total Sectors: %I64u\n", NewPartEntry->SectorCount.QuadPart);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
VOID
|
||||||
|
CreateExtendedPartition(
|
||||||
|
PPARTLIST List,
|
||||||
|
ULONGLONG SectorCount)
|
||||||
|
{
|
||||||
|
PDISKENTRY DiskEntry;
|
||||||
|
PPARTENTRY PartEntry;
|
||||||
|
PPARTENTRY NewPartEntry;
|
||||||
|
|
||||||
|
DPRINT1("CreatePrimaryPartition(%I64u)\n", SectorCount);
|
||||||
|
|
||||||
|
if (List == NULL ||
|
||||||
|
List->CurrentDisk == NULL ||
|
||||||
|
List->CurrentPartition == NULL ||
|
||||||
|
List->CurrentPartition->IsPartitioned == TRUE)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
DiskEntry = List->CurrentDisk;
|
||||||
|
PartEntry = List->CurrentPartition;
|
||||||
|
|
||||||
|
DPRINT1("Current partition sector count: %I64u\n", PartEntry->SectorCount.QuadPart);
|
||||||
|
|
||||||
|
if (Align(PartEntry->StartSector.QuadPart + SectorCount, DiskEntry->SectorAlignment) - PartEntry->StartSector.QuadPart == PartEntry->SectorCount.QuadPart)
|
||||||
|
{
|
||||||
|
DPRINT1("Convert existing partition entry\n");
|
||||||
|
/* Convert current entry to 'new (unformatted)' */
|
||||||
|
PartEntry->IsPartitioned = TRUE;
|
||||||
|
// PartEntry->PartitionType = PARTITION_ENTRY_UNUSED;
|
||||||
|
PartEntry->FormatState = Formatted;
|
||||||
|
PartEntry->AutoCreate = FALSE;
|
||||||
|
PartEntry->New = FALSE;
|
||||||
|
PartEntry->BootIndicator = FALSE; /* FIXME */
|
||||||
|
|
||||||
|
DPRINT1("First Sector: %I64u\n", PartEntry->StartSector.QuadPart);
|
||||||
|
DPRINT1("Last Sector: %I64u\n", PartEntry->StartSector.QuadPart + PartEntry->SectorCount.QuadPart - 1);
|
||||||
|
DPRINT1("Total Sectors: %I64u\n", PartEntry->SectorCount.QuadPart);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DPRINT1("Add new partition entry\n");
|
||||||
|
|
||||||
|
/* Insert and initialize a new partition entry */
|
||||||
|
NewPartEntry = RtlAllocateHeap(ProcessHeap,
|
||||||
|
HEAP_ZERO_MEMORY,
|
||||||
|
sizeof(PARTENTRY));
|
||||||
|
if (NewPartEntry == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Insert the new entry into the list */
|
||||||
|
InsertTailList(&PartEntry->ListEntry,
|
||||||
|
&NewPartEntry->ListEntry);
|
||||||
|
|
||||||
|
NewPartEntry->DiskEntry = DiskEntry;
|
||||||
|
|
||||||
|
NewPartEntry->IsPartitioned = TRUE;
|
||||||
|
NewPartEntry->StartSector.QuadPart = PartEntry->StartSector.QuadPart;
|
||||||
|
NewPartEntry->SectorCount.QuadPart = Align(NewPartEntry->StartSector.QuadPart + SectorCount, DiskEntry->SectorAlignment) -
|
||||||
|
NewPartEntry->StartSector.QuadPart;
|
||||||
|
|
||||||
|
// NewPartEntry->PartitionType = PARTITION_ENTRY_UNUSED;
|
||||||
|
|
||||||
|
DPRINT1("First Sector: %I64u\n", NewPartEntry->StartSector.QuadPart);
|
||||||
|
DPRINT1("Last Sector: %I64u\n", NewPartEntry->StartSector.QuadPart + NewPartEntry->SectorCount.QuadPart - 1);
|
||||||
|
DPRINT1("Total Sectors: %I64u\n", NewPartEntry->SectorCount.QuadPart);
|
||||||
|
|
||||||
|
NewPartEntry->New = FALSE;
|
||||||
|
NewPartEntry->FormatState = Formatted;
|
||||||
|
NewPartEntry->BootIndicator = FALSE; /* FIXME */
|
||||||
|
|
||||||
|
PartEntry->StartSector.QuadPart = NewPartEntry->StartSector.QuadPart + NewPartEntry->SectorCount.QuadPart;
|
||||||
|
PartEntry->SectorCount.QuadPart -= (PartEntry->StartSector.QuadPart - NewPartEntry->StartSector.QuadPart);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (NewPartEntry->StartSector.QuadPart < 1450560)
|
||||||
|
{
|
||||||
|
/* Partition starts below the 8.4GB boundary ==> CHS partition */
|
||||||
|
NewPartEntry->PartitionType = PARTITION_EXTENDED;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Partition starts above the 8.4GB boundary ==> LBA partition */
|
||||||
|
NewPartEntry->PartitionType = PARTITION_XINT13_EXTENDED;
|
||||||
|
}
|
||||||
|
|
||||||
|
UpdateDiskLayout(DiskEntry);
|
||||||
|
|
||||||
|
DiskEntry->Dirty = TRUE;
|
||||||
|
|
||||||
|
UpdatePartitionNumbers(DiskEntry);
|
||||||
|
|
||||||
|
AssignDriveLetters(List);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
DeleteCurrentPartition(
|
DeleteCurrentPartition(
|
||||||
PPARTLIST List)
|
PPARTLIST List)
|
||||||
|
@ -2561,4 +2662,143 @@ SetMountedDeviceValues(
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static
|
||||||
|
BOOLEAN
|
||||||
|
IsLastPrimaryPartiton(
|
||||||
|
IN PPARTENTRY PartEntry)
|
||||||
|
{
|
||||||
|
return (PartEntry->ListEntry.Flink == &PartEntry->DiskEntry->PrimaryPartListHead);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static
|
||||||
|
BOOLEAN
|
||||||
|
IsPreviousPartitionExtended(
|
||||||
|
IN PPARTENTRY PartEntry,
|
||||||
|
IN PDISKENTRY DiskEntry)
|
||||||
|
{
|
||||||
|
PPARTENTRY PrevPartEntry;
|
||||||
|
PLIST_ENTRY Entry;
|
||||||
|
|
||||||
|
Entry = PartEntry->ListEntry.Blink;
|
||||||
|
|
||||||
|
while (Entry != &DiskEntry->PrimaryPartListHead)
|
||||||
|
{
|
||||||
|
PrevPartEntry = CONTAINING_RECORD(Entry, PARTENTRY, ListEntry);
|
||||||
|
|
||||||
|
if (IsContainerPartition(PrevPartEntry->PartitionType))
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
|
Entry = Entry->Blink;
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static
|
||||||
|
ULONG
|
||||||
|
GetPrimaryPartitionCount(
|
||||||
|
IN PDISKENTRY DiskEntry)
|
||||||
|
{
|
||||||
|
PLIST_ENTRY Entry;
|
||||||
|
PPARTENTRY PartEntry;
|
||||||
|
UINT nCount = 0;
|
||||||
|
|
||||||
|
Entry = DiskEntry->PrimaryPartListHead.Flink;
|
||||||
|
while (Entry != &DiskEntry->PrimaryPartListHead)
|
||||||
|
{
|
||||||
|
PartEntry = CONTAINING_RECORD(Entry, PARTENTRY, ListEntry);
|
||||||
|
if (PartEntry->IsPartitioned == TRUE)
|
||||||
|
nCount++;
|
||||||
|
|
||||||
|
Entry = Entry->Flink;
|
||||||
|
}
|
||||||
|
|
||||||
|
return nCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static
|
||||||
|
ULONG
|
||||||
|
GetExtendedPartitionCount(
|
||||||
|
IN PDISKENTRY DiskEntry)
|
||||||
|
{
|
||||||
|
PLIST_ENTRY Entry;
|
||||||
|
PPARTENTRY PartEntry;
|
||||||
|
UINT nCount = 0;
|
||||||
|
|
||||||
|
Entry = DiskEntry->PrimaryPartListHead.Flink;
|
||||||
|
while (Entry != &DiskEntry->PrimaryPartListHead)
|
||||||
|
{
|
||||||
|
PartEntry = CONTAINING_RECORD(Entry, PARTENTRY, ListEntry);
|
||||||
|
if (PartEntry->IsPartitioned == TRUE &&
|
||||||
|
IsContainerPartition(PartEntry->PartitionType))
|
||||||
|
nCount++;
|
||||||
|
|
||||||
|
Entry = Entry->Flink;
|
||||||
|
}
|
||||||
|
|
||||||
|
return nCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ULONG
|
||||||
|
PrimaryPartitionCreationChecks(
|
||||||
|
IN PPARTLIST List)
|
||||||
|
{
|
||||||
|
PDISKENTRY DiskEntry;
|
||||||
|
PPARTENTRY PartEntry;
|
||||||
|
|
||||||
|
DiskEntry = List->CurrentDisk;
|
||||||
|
PartEntry = List->CurrentPartition;
|
||||||
|
|
||||||
|
/* Fail if partition is already in use */
|
||||||
|
if (PartEntry->IsPartitioned == TRUE)
|
||||||
|
return ERROR_NEW_PARTITION;
|
||||||
|
|
||||||
|
/* Fail if there are more than 4 partitions in the list */
|
||||||
|
if (GetPrimaryPartitionCount(DiskEntry) > 4)
|
||||||
|
return ERROR_PARTITION_TABLE_FULL;
|
||||||
|
|
||||||
|
/* FIXME: Fail if this partiton is located behind an extended partition */
|
||||||
|
if (IsPreviousPartitionExtended(PartEntry, DiskEntry))
|
||||||
|
return ERROR_NOT_BEHIND_EXTENDED;
|
||||||
|
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ULONG
|
||||||
|
ExtendedPartitionCreationChecks(
|
||||||
|
IN PPARTLIST List)
|
||||||
|
{
|
||||||
|
PDISKENTRY DiskEntry;
|
||||||
|
PPARTENTRY PartEntry;
|
||||||
|
|
||||||
|
DiskEntry = List->CurrentDisk;
|
||||||
|
PartEntry = List->CurrentPartition;
|
||||||
|
|
||||||
|
/* Fail if partition is already in use */
|
||||||
|
if (PartEntry->IsPartitioned == TRUE)
|
||||||
|
return ERROR_NEW_PARTITION;
|
||||||
|
|
||||||
|
/* Fail if there are more than 4 partitions in the list */
|
||||||
|
if (GetPrimaryPartitionCount(DiskEntry) > 4)
|
||||||
|
return ERROR_PARTITION_TABLE_FULL;
|
||||||
|
|
||||||
|
/* Fail if there is another extended partition in the list */
|
||||||
|
if (GetExtendedPartitionCount(DiskEntry) != 0)
|
||||||
|
return ERROR_ONLY_ONE_EXTENDED;
|
||||||
|
|
||||||
|
/* Fail if the partition is not the last list entry */
|
||||||
|
if (!IsLastPrimaryPartiton(PartEntry))
|
||||||
|
return ERROR_EXTENDED_NOT_LAST;
|
||||||
|
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -216,11 +216,16 @@ ScrollUpPartitionList(
|
||||||
PPARTLIST List);
|
PPARTLIST List);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
CreateNewPartition(
|
CreatePrimaryPartition(
|
||||||
PPARTLIST List,
|
PPARTLIST List,
|
||||||
ULONGLONG PartitionSize,
|
ULONGLONG PartitionSize,
|
||||||
BOOLEAN AutoCreate);
|
BOOLEAN AutoCreate);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
CreateExtendedPartition(
|
||||||
|
PPARTLIST List,
|
||||||
|
ULONGLONG PartitionSize);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
DeleteCurrentPartition(
|
DeleteCurrentPartition(
|
||||||
PPARTLIST List);
|
PPARTLIST List);
|
||||||
|
@ -237,4 +242,12 @@ BOOLEAN
|
||||||
WritePartitionsToDisk(
|
WritePartitionsToDisk(
|
||||||
PPARTLIST List);
|
PPARTLIST List);
|
||||||
|
|
||||||
|
ULONG
|
||||||
|
PrimaryPartitionCreationChecks(
|
||||||
|
IN PPARTLIST List);
|
||||||
|
|
||||||
|
ULONG
|
||||||
|
ExtendedPartitionCreationChecks(
|
||||||
|
IN PPARTLIST List);
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -128,7 +128,8 @@ typedef enum _PAGE_NUMBER
|
||||||
LAYOUT_SETTINGS_PAGE,
|
LAYOUT_SETTINGS_PAGE,
|
||||||
|
|
||||||
SELECT_PARTITION_PAGE,
|
SELECT_PARTITION_PAGE,
|
||||||
CREATE_PARTITION_PAGE,
|
CREATE_PRIMARY_PARTITION_PAGE,
|
||||||
|
CREATE_EXTENDED_PARTITION_PAGE,
|
||||||
DELETE_PARTITION_PAGE,
|
DELETE_PARTITION_PAGE,
|
||||||
|
|
||||||
SELECT_FILE_SYSTEM_PAGE,
|
SELECT_FILE_SYSTEM_PAGE,
|
||||||
|
|
Loading…
Reference in a new issue