Bug 3070: Ukrainian translation update by Artem Reznikov - temarez@yandex.ru

Bug 3078: czech translation for solitaire by radekliska@gmail.com
Bug 3083: usetup update by Paolo Devoti - devotip@tiscali.it
Added the English Strings to all USETUP Resources and activated these. This makes translating easier.
Renamed German to Deutsch and Russian to Russkij, which seems like it does not work... (thx to Caemyr anyway)

svn path=/trunk/; revision=32406
This commit is contained in:
Daniel Reimer 2008-02-17 18:05:08 +00:00
parent 750bf31ad3
commit 5ff1cb40f4
20 changed files with 939 additions and 153 deletions

View file

@ -0,0 +1,87 @@
/*
* PROJECT: Solitaire
* LICENSE: Freeware, permission to use under Public Domain
* FILE: base/applications/games/solitaire/lang/cs-CZ.rc
* PURPOSE: Czech Language File for Solitaire
* TRANSLATOR: Black_Fox <radekliska at gmail dot com>
* DATE OF TR.: 13-07-2007
* PROGRAMMERS: Daniel "EmuandCo" Reimer (reimer.daniel@freenet.de)
*/
#include "resource.h"
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
/* Dialogs */
IDD_OPTIONS DIALOGEX DISCARDABLE 0, 0, 186, 118
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | DS_SHELLFONT
CAPTION "Možnosti"
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX "Obrátit", -1, 7, 7, 65, 40
AUTORADIOBUTTON "&Jednu kartu", IDC_OPT_DRAWONE, 14, 19, 52, 10, WS_GROUP | WS_TABSTOP
AUTORADIOBUTTON "&Tøi karty", IDC_OPT_DRAWTHREE, 14, 32, 52, 10
AUTOCHECKBOX "È&asovì neomezená hra", IDC_OPT_SHOWTIME, 7 ,51 ,65 ,10, WS_TABSTOP | WS_DISABLED
AUTOCHECKBOX "Stavový øád&ek", IDC_OPT_STATUSBAR, 7, 66, 64, 10, WS_TABSTOP
DEFPUSHBUTTON "OK", IDOK, 35, 97, 50, 14
PUSHBUTTON "Storno", IDCANCEL, 101, 97, 50, 14
END
IDD_CARDBACK DIALOGEX 6, 6, 221, 96
CAPTION "Vybrat rub karet"
FONT 8, "MS Shell Dlg"
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | DS_SHELLFONT
BEGIN
CONTROL "", IDC_CARDBACK1, "Static", SS_NOTIFY, 4, 7, 50, 61
CONTROL "", IDC_CARDBACK2, "Static", SS_NOTIFY, 58, 7, 50, 61
CONTROL "", IDC_CARDBACK3, "Static", SS_NOTIFY, 112, 7, 50, 61
CONTROL "", IDC_CARDBACK4, "Static", SS_NOTIFY, 166, 7, 50, 61
DEFPUSHBUTTON "OK", IDOK, 104, 77, 54, 13
PUSHBUTTON "Storno", IDCANCEL, 162, 77, 54, 13
END
/* Strings */
STRINGTABLE
BEGIN
IDS_SOL_NAME "Solitaire"
IDS_SOL_ABOUT "Solitaire by J Brown\n\nCardLib verze 1.0."
IDS_SOL_QUIT "Ukonèit rozehranou hru?"
IDS_SOL_WIN "Gratulujeme, zvítìzili jste!!"
END
/* Menus */
IDR_MENU1 MENU DISCARDABLE
BEGIN
POPUP "&Hra"
BEGIN
MENUITEM "&Rozdat\tF2", IDM_GAME_NEW
MENUITEM SEPARATOR
MENUITEM "Rub& karet...", IDM_GAME_DECK
MENUITEM "&Možnosti...", IDM_GAME_OPTIONS
MENUITEM SEPARATOR
MENUITEM "&Konec", IDM_GAME_EXIT
END
POPUP "Nápo&vìda"
BEGIN
MENUITEM "&Obsah\tF1", IDM_HELP_CONTENTS
MENUITEM "O høe &Solitaire", IDM_HELP_ABOUT
END
END
/* Accelerator */
IDR_ACCELERATOR1 ACCELERATORS DISCARDABLE
BEGIN
VK_F1, IDM_HELP_CONTENTS, VIRTKEY, NOINVERT
VK_F2, IDM_GAME_NEW, VIRTKEY, NOINVERT
END

View file

@ -7,6 +7,7 @@ IDI_SOLITAIRE ICON DISCARDABLE "solitaire.ico"
#include "lang/bg-BG.rc" #include "lang/bg-BG.rc"
#include "lang/ca-ES.rc" #include "lang/ca-ES.rc"
#include "lang/cs-CZ.rc"
#include "lang/de-DE.rc" #include "lang/de-DE.rc"
#include "lang/el-GR.rc" #include "lang/el-GR.rc"
#include "lang/en-US.rc" #include "lang/en-US.rc"

View file

@ -1628,7 +1628,7 @@ CreatePartitionPage (PINPUT_RECORD Ir)
if (DiskEntry->DriverName.Length > 0) if (DiskEntry->DriverName.Length > 0)
{ {
CONSOLE_PrintTextXY(6, 10, CONSOLE_PrintTextXY(6, 10,
MUIGetString(STRING_HDDINFO1), MUIGetString(STRING_HDINFOPARTCREATE),
DiskSize, DiskSize,
Unit, Unit,
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
@ -1640,7 +1640,7 @@ CreatePartitionPage (PINPUT_RECORD Ir)
else else
{ {
CONSOLE_PrintTextXY(6, 10, CONSOLE_PrintTextXY(6, 10,
MUIGetString(STRING_HDDINFO2), MUIGetString(STRING_HDDINFOUNK1),
DiskSize, DiskSize,
Unit, Unit,
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
@ -1798,7 +1798,7 @@ DeletePartitionPage (PINPUT_RECORD Ir)
if (PartType == NULL) if (PartType == NULL)
{ {
CONSOLE_PrintTextXY(6, 10, CONSOLE_PrintTextXY(6, 10,
MUIGetString(STRING_HDDINFO3), MUIGetString(STRING_HDDINFOUNK2),
(PartEntry->DriveLetter == 0) ? '-' : PartEntry->DriveLetter, (PartEntry->DriveLetter == 0) ? '-' : PartEntry->DriveLetter,
(PartEntry->DriveLetter == 0) ? '-' : ':', (PartEntry->DriveLetter == 0) ? '-' : ':',
PartEntry->PartInfo[0].PartitionType, PartEntry->PartInfo[0].PartitionType,
@ -1836,7 +1836,7 @@ DeletePartitionPage (PINPUT_RECORD Ir)
if (DiskEntry->DriverName.Length > 0) if (DiskEntry->DriverName.Length > 0)
{ {
CONSOLE_PrintTextXY(6, 12, CONSOLE_PrintTextXY(6, 12,
MUIGetString(STRING_HDDINFO4), MUIGetString(STRING_HDINFOPARTDELETE),
DiskSize, DiskSize,
Unit, Unit,
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
@ -1848,7 +1848,7 @@ DeletePartitionPage (PINPUT_RECORD Ir)
else else
{ {
CONSOLE_PrintTextXY(6, 12, CONSOLE_PrintTextXY(6, 12,
MUIGetString(STRING_HDDINFO5), MUIGetString(STRING_HDDINFOUNK3),
DiskSize, DiskSize,
Unit, Unit,
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
@ -1975,7 +1975,7 @@ SelectFileSystemPage (PINPUT_RECORD Ir)
PartType); PartType);
#endif #endif
CONSOLE_PrintTextXY(8, 10, MUIGetString(STRING_HDDINFO6), CONSOLE_PrintTextXY(8, 10, MUIGetString(STRING_HDINFOPARTZEROED),
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
DiskSize, DiskSize,
DiskUnit, DiskUnit,
@ -2001,7 +2001,7 @@ SelectFileSystemPage (PINPUT_RECORD Ir)
if (PartType == NULL) if (PartType == NULL)
{ {
CONSOLE_PrintTextXY(8, 10, CONSOLE_PrintTextXY(8, 10,
MUIGetString(STRING_HDDINFO7), MUIGetString(STRING_HDDINFOUNK4),
(PartEntry->DriveLetter == 0) ? '-' : PartEntry->DriveLetter, (PartEntry->DriveLetter == 0) ? '-' : PartEntry->DriveLetter,
(PartEntry->DriveLetter == 0) ? '-' : ':', (PartEntry->DriveLetter == 0) ? '-' : ':',
PartEntry->PartInfo[0].PartitionType, PartEntry->PartInfo[0].PartitionType,
@ -2019,7 +2019,7 @@ SelectFileSystemPage (PINPUT_RECORD Ir)
PartUnit); PartUnit);
} }
CONSOLE_PrintTextXY(6, 12, MUIGetString(STRING_HDDINFO8), CONSOLE_PrintTextXY(6, 12, MUIGetString(STRING_HDINFOPARTEXISTS),
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
DiskSize, DiskSize,
DiskUnit, DiskUnit,

View file

@ -1577,4 +1577,105 @@ MUI_PAGE bgBGPages[] =
} }
}; };
MUI_STRING bgBGStrings[] =
{
{STRING_PLEASEWAIT,
" Please wait..."},
{STRING_INSTALLCREATEPARTITION,
" ENTER = Install C = Create Partition F3 = Quit"},
{STRING_INSTALLDELETEPARTITION,
" ENTER = Install D = Delete Partition F3 = Quit"},
{STRING_PARTITIONSIZE,
"Size of new partition:"},
{STRING_CHOOSENEWPARTITION,
"You have chosen to create a new partition on"},
{STRING_HDDSIZE,
"Please enter the size of the new partition in megabytes."},
{STRING_CREATEPARTITION,
" ENTER = Create Partition ESC = Cancel F3 = Quit"},
{STRING_PARTFORMAT,
"This Partition will be formatted next."},
{STRING_NONFORMATTEDPART,
"You chose to install ReactOS on a new or unformatted Partition."},
{STRING_INSTALLONPART,
"Setup install ReactOS onto Partition"},
{STRING_CHECKINGPART,
"Setup is now checking the selected partition."},
{STRING_QUITCONTINUE,
"F3= Quit ENTER = Continue"},
{STRING_REBOOTCOMPUTER,
"ENTER = Reboot computer"},
{STRING_TXTSETUPFAILED,
"Setup failed to find the '%S' section\nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copying file: %S"},
{STRING_SETUPCOPYINGFILES,
"Setup is copying files..."},
{STRING_PAGEDMEM,
"Paged Memory"},
{STRING_NONPAGEDMEM,
"Nonpaged Memory"},
{STRING_FREEMEM,
"Free Memory"},
{STRING_REGHIVEUPDATE,
" Updating registry hives..."},
{STRING_IMPORTFILE,
" Importing %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Updating display registry settings..."},
{STRING_LOCALESETTINGSUPDATE,
" Updating locale settings..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Updating keyboard layout settings..."},
{STRING_CODEPAGEINFOUPDATE,
" Adding codepage information to registry..."},
{STRING_DONE,
" Done..."},
{STRING_REBOOTCOMPUTER2,
" ENTER = Reboot computer"},
{STRING_CONSOLEFAIL1,
"Unable to open the console\n\n"},
{STRING_CONSOLEFAIL2,
"The most common cause of this is using an USB keyboard\n"},
{STRING_CONSOLEFAIL3,
"USB keyboards are not fully supported yet\n"},
{STRING_FORMATTINGDISK,
"Setup is formatting your disk"},
{STRING_CHECKINGDISK,
"Setup is checking your disk"},
{STRING_FORMATDISK1,
" Format partition as %S file system (quick format) "},
{STRING_FORMATDISK2,
" Format partition as %S file system "},
{STRING_KEEPFORMAT,
" Keep current file system (no changes) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE,
" Unpartitioned space %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -1646,27 +1646,27 @@ MUI_STRING deDEStrings[] =
" Formatiere Partition als %S Dateisystem "}, " Formatiere Partition als %S Dateisystem "},
{STRING_KEEPFORMAT, {STRING_KEEPFORMAT,
" Dateisystem beibehalten (Keine Ver„nderungen) "}, " Dateisystem beibehalten (Keine Ver„nderungen) "},
{STRING_HDDINFO1, {STRING_HDINFOPARTCREATE,
"%I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu) auf %wZ."}, "%I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu) auf %wZ."},
{STRING_HDDINFO2, {STRING_HDDINFOUNK1,
"%I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "%I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO3, {STRING_HDDINFOUNK2,
" %c%c Typ %lu %I64u %s"}, " %c%c Typ %lu %I64u %s"},
{STRING_HDDINFO4, {STRING_HDINFOPARTDELETE,
"auf %I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu) auf %wZ."}, "auf %I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu) auf %wZ."},
{STRING_HDDINFO5, {STRING_HDDINFOUNK3,
"auf %I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "auf %I64u %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO6, {STRING_HDINFOPARTZEROED,
"Festplatte %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "Festplatte %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO7, {STRING_HDDINFOUNK4,
"%c%c Typ %lu %I64u %s"}, "%c%c Typ %lu %I64u %s"},
{STRING_HDDINFO8, {STRING_HDINFOPARTEXISTS,
"auf Festplatte %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "auf Festplatte %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO9, {STRING_HDDINFOUNK5,
"%c%c Typ %-3u %6lu %s"}, "%c%c Typ %-3u %6lu %s"},
{STRING_HDDINFO10, {STRING_HDINFOPARTSELECT,
"%6lu %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu) auf %S"}, "%6lu %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu) auf %S"},
{STRING_HDDINFO11, {STRING_HDDINFOUNK6,
"%6lu %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu)"}, "%6lu %s Festplatte %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION, {STRING_NEWPARTITION,
"Setup erstellte eine neue Partition auf"}, "Setup erstellte eine neue Partition auf"},

View file

@ -1568,4 +1568,105 @@ MUI_PAGE elGRPages[] =
} }
}; };
MUI_STRING elGRStrings[] =
{
{STRING_PLEASEWAIT,
" Please wait..."},
{STRING_INSTALLCREATEPARTITION,
" ENTER = Install C = Create Partition F3 = Quit"},
{STRING_INSTALLDELETEPARTITION,
" ENTER = Install D = Delete Partition F3 = Quit"},
{STRING_PARTITIONSIZE,
"Size of new partition:"},
{STRING_CHOOSENEWPARTITION,
"You have chosen to create a new partition on"},
{STRING_HDDSIZE,
"Please enter the size of the new partition in megabytes."},
{STRING_CREATEPARTITION,
" ENTER = Create Partition ESC = Cancel F3 = Quit"},
{STRING_PARTFORMAT,
"This Partition will be formatted next."},
{STRING_NONFORMATTEDPART,
"You chose to install ReactOS on a new or unformatted Partition."},
{STRING_INSTALLONPART,
"Setup install ReactOS onto Partition"},
{STRING_CHECKINGPART,
"Setup is now checking the selected partition."},
{STRING_QUITCONTINUE,
"F3= Quit ENTER = Continue"},
{STRING_REBOOTCOMPUTER,
"ENTER = Reboot computer"},
{STRING_TXTSETUPFAILED,
"Setup failed to find the '%S' section\nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copying file: %S"},
{STRING_SETUPCOPYINGFILES,
"Setup is copying files..."},
{STRING_PAGEDMEM,
"Paged Memory"},
{STRING_NONPAGEDMEM,
"Nonpaged Memory"},
{STRING_FREEMEM,
"Free Memory"},
{STRING_REGHIVEUPDATE,
" Updating registry hives..."},
{STRING_IMPORTFILE,
" Importing %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Updating display registry settings..."},
{STRING_LOCALESETTINGSUPDATE,
" Updating locale settings..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Updating keyboard layout settings..."},
{STRING_CODEPAGEINFOUPDATE,
" Adding codepage information to registry..."},
{STRING_DONE,
" Done..."},
{STRING_REBOOTCOMPUTER2,
" ENTER = Reboot computer"},
{STRING_CONSOLEFAIL1,
"Unable to open the console\n\n"},
{STRING_CONSOLEFAIL2,
"The most common cause of this is using an USB keyboard\n"},
{STRING_CONSOLEFAIL3,
"USB keyboards are not fully supported yet\n"},
{STRING_FORMATTINGDISK,
"Setup is formatting your disk"},
{STRING_CHECKINGDISK,
"Setup is checking your disk"},
{STRING_FORMATDISK1,
" Format partition as %S file system (quick format) "},
{STRING_FORMATDISK2,
" Format partition as %S file system "},
{STRING_KEEPFORMAT,
" Keep current file system (no changes) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE,
" Unpartitioned space %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -1640,27 +1640,27 @@ MUI_STRING enUSStrings[] =
" Format partition as %S file system "}, " Format partition as %S file system "},
{STRING_KEEPFORMAT, {STRING_KEEPFORMAT,
" Keep current file system (no changes) "}, " Keep current file system (no changes) "},
{STRING_HDDINFO1, {STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO2, {STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO3, {STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"}, " %c%c Type %lu %I64u %s"},
{STRING_HDDINFO4, {STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO5, {STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO6, {STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO7, {STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"}, "%c%c Type %lu %I64u %s"},
{STRING_HDDINFO8, {STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO9, {STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"}, "%c%c Type %-3u %6lu %s"},
{STRING_HDDINFO10, {STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFO11, {STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION, {STRING_NEWPARTITION,
"Setup created a new partition on"}, "Setup created a new partition on"},

View file

@ -1567,4 +1567,105 @@ MUI_PAGE esESPages[] =
} }
}; };
MUI_STRING esESStrings[] =
{
{STRING_PLEASEWAIT,
" Please wait..."},
{STRING_INSTALLCREATEPARTITION,
" ENTER = Install C = Create Partition F3 = Quit"},
{STRING_INSTALLDELETEPARTITION,
" ENTER = Install D = Delete Partition F3 = Quit"},
{STRING_PARTITIONSIZE,
"Size of new partition:"},
{STRING_CHOOSENEWPARTITION,
"You have chosen to create a new partition on"},
{STRING_HDDSIZE,
"Please enter the size of the new partition in megabytes."},
{STRING_CREATEPARTITION,
" ENTER = Create Partition ESC = Cancel F3 = Quit"},
{STRING_PARTFORMAT,
"This Partition will be formatted next."},
{STRING_NONFORMATTEDPART,
"You chose to install ReactOS on a new or unformatted Partition."},
{STRING_INSTALLONPART,
"Setup install ReactOS onto Partition"},
{STRING_CHECKINGPART,
"Setup is now checking the selected partition."},
{STRING_QUITCONTINUE,
"F3= Quit ENTER = Continue"},
{STRING_REBOOTCOMPUTER,
"ENTER = Reboot computer"},
{STRING_TXTSETUPFAILED,
"Setup failed to find the '%S' section\nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copying file: %S"},
{STRING_SETUPCOPYINGFILES,
"Setup is copying files..."},
{STRING_PAGEDMEM,
"Paged Memory"},
{STRING_NONPAGEDMEM,
"Nonpaged Memory"},
{STRING_FREEMEM,
"Free Memory"},
{STRING_REGHIVEUPDATE,
" Updating registry hives..."},
{STRING_IMPORTFILE,
" Importing %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Updating display registry settings..."},
{STRING_LOCALESETTINGSUPDATE,
" Updating locale settings..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Updating keyboard layout settings..."},
{STRING_CODEPAGEINFOUPDATE,
" Adding codepage information to registry..."},
{STRING_DONE,
" Done..."},
{STRING_REBOOTCOMPUTER2,
" ENTER = Reboot computer"},
{STRING_CONSOLEFAIL1,
"Unable to open the console\n\n"},
{STRING_CONSOLEFAIL2,
"The most common cause of this is using an USB keyboard\n"},
{STRING_CONSOLEFAIL3,
"USB keyboards are not fully supported yet\n"},
{STRING_FORMATTINGDISK,
"Setup is formatting your disk"},
{STRING_CHECKINGDISK,
"Setup is checking your disk"},
{STRING_FORMATDISK1,
" Format partition as %S file system (quick format) "},
{STRING_FORMATDISK2,
" Format partition as %S file system "},
{STRING_KEEPFORMAT,
" Keep current file system (no changes) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE,
" Unpartitioned space %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -1652,27 +1652,27 @@ MUI_STRING frFRStrings[] =
" Format partition as %S file system "}, " Format partition as %S file system "},
{STRING_KEEPFORMAT, {STRING_KEEPFORMAT,
" Keep current file system (no changes) "}, " Keep current file system (no changes) "},
{STRING_HDDINFO1, {STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO2, {STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO3, {STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"}, " %c%c Type %lu %I64u %s"},
{STRING_HDDINFO4, {STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO5, {STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO6, {STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO7, {STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"}, "%c%c Type %lu %I64u %s"},
{STRING_HDDINFO8, {STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO9, {STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"}, "%c%c Type %-3u %6lu %s"},
{STRING_HDDINFO10, {STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFO11, {STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION, {STRING_NEWPARTITION,
"Setup created a new partition on"}, "Setup created a new partition on"},

View file

@ -112,7 +112,7 @@ static MUI_ENTRY itITWelcomePageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Continuare R = Riparare F3 = Termina", " INVIO = Continua R = Ripara F3 = Termina",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -191,12 +191,6 @@ static MUI_ENTRY itITIntroPageEntries[] =
"- Il setup supporta solamente il sistema FAT.", "- Il setup supporta solamente il sistema FAT.",
TEXT_NORMAL TEXT_NORMAL
}, },
{
8,
19,
"- La verifica dei volumi non Š stata ancora implementata.",
TEXT_NORMAL
},
{ {
8, 8,
23, 23,
@ -212,7 +206,7 @@ static MUI_ENTRY itITIntroPageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Continuare F3 = Termina", " INVIO = Continua F3 = Termina",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -336,7 +330,7 @@ static MUI_ENTRY itITLicensePageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Ritornare", " INVIO = Ritorna",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -405,31 +399,31 @@ static MUI_ENTRY itITDevicePageEntries[] =
{ {
6, 6,
20, 20,
"Premere INVIO per modificare la configurazione", "Premere INVIO per modificare la configurazione alternativa.",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
21, 21,
"alternativa.", " ",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
23, 23,
"Quando le impostazioni saranno corrette, scegliere \"Accettare la configurazione", "Quando le impostazioni saranno corrette, selezionare",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
24, 24,
"delle periferiche\" e premere INVIO.", "\"Accettare la configurazione delle periferiche\" e premere INVIO.",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
0, 0,
0, 0,
" INVIO = Continuare F3 = Termina", " INVIO = Continua F3 = Termina",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -544,7 +538,7 @@ static MUI_ENTRY itITComputerPageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Continuare ESC = Annulla F3 = Termina", " INVIO = Continua ESC = Annulla F3 = Termina",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -681,7 +675,7 @@ static MUI_ENTRY itITDisplayPageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Continuare ESC = Annullare F3 = Termina", " INVIO = Continua ESC = Annulla F3 = Termina",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -727,7 +721,7 @@ static MUI_ENTRY itITSuccessPageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Riavviare il computer", " INVIO = Riavvia il computer",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -773,7 +767,7 @@ static MUI_ENTRY itITBootPageEntries[] =
{ {
0, 0,
0, 0,
" INVIO = Continuare F3 = Termina", " INVIO = Continua F3 = Termina",
TEXT_STATUS TEXT_STATUS
}, },
{ {
@ -888,31 +882,31 @@ static MUI_ENTRY itITInstallDirectoryEntries[] =
{ {
6, 6,
8, 8,
"Setup installer… i file di ReactOS nella partizione selezionata. Scegliere una", "Setup installer… i file di ReactOS nella partizione selezionata.",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
9, 9,
"cartella dove volete che ReactOS verr… installato:", "Scegliere una cartella dove volete che ReactOS verr… installato:",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
14, 14,
"Per modificare la cartella suggerita premere CANC", "Per modificare la cartella suggerita premere CANC e poi digitate",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
15, 15,
"e poi digitate la cartella dove volete che ReactOS sia", "la cartella dove volete che ReactOS sia installato.",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
6, 6,
16, 16,
"installato.", " ",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
@ -940,13 +934,13 @@ static MUI_ENTRY itITFileCopyEntries[] =
{ {
11, 11,
12, 12,
"Attendere mentre il setup di ReactOS copia i file nella cartella di", "Attendere mentre il setup di ReactOS copia i file nella",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
30, 18,
13, 13,
"installazione di ReactOS.", "cartella di installazione di ReactOS.",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
@ -1473,6 +1467,7 @@ MUI_ERROR itITErrorEntries[] =
} }
}; };
MUI_PAGE itITPages[] = MUI_PAGE itITPages[] =
{ {
{ {
@ -1573,4 +1568,105 @@ MUI_PAGE itITPages[] =
} }
}; };
MUI_STRING itITStrings[] =
{
{STRING_PLEASEWAIT,
" Attendere..."},
{STRING_INSTALLCREATEPARTITION,
" INVIO = Installa C = Crea Partizione F3 = Esci"},
{STRING_INSTALLDELETEPARTITION,
" INVIO = Installa D = Rimuovi Partizione F3 = Esci"},
{STRING_PARTITIONSIZE,
"Dimensione della nuova partizione:"},
{STRING_CHOOSENEWPARTITION,
"Avete scelto di creare una nuova partizione su"},
{STRING_HDDSIZE,
"Indicare la dimensione della nuova partizione in megabyte."},
{STRING_CREATEPARTITION,
" INVIO = Creare la partizione ESC = Annulla F3 = Esci"},
{STRING_PARTFORMAT,
"Questa partizione verrà formattata successivamente."},
{STRING_NONFORMATTEDPART,
"Avete scelto di installare ReactOS su una partizione nuova o non formattata."},
{STRING_INSTALLONPART,
"Setup installerà ReactOS sulla partitione"},
{STRING_CHECKINGPART,
"Setup sta controllando la partizione selezionata."},
{STRING_QUITCONTINUE,
"F3= Esci INVIO = Continua"},
{STRING_REBOOTCOMPUTER,
"INVIO = Riavvia il computer"},
{STRING_TXTSETUPFAILED,
"Setup non ha trovato la sezione '%S' \nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copia di: %S"},
{STRING_SETUPCOPYINGFILES,
"Copia dei file in corso..."},
{STRING_PAGEDMEM,
"Memoria paginata"},
{STRING_NONPAGEDMEM,
"Memoria non paginata"},
{STRING_FREEMEM,
"Memoria libera"},
{STRING_REGHIVEUPDATE,
" Aggiornamento del registry hives..."},
{STRING_IMPORTFILE,
" Importazione di %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Aggiornamento delle impostazioni del display nel registry..."},
{STRING_LOCALESETTINGSUPDATE,
" Aggiornamento delle impostazioni di regionalizzazione..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Aggiornamento delle impostazioni della tastiera..."},
{STRING_CODEPAGEINFOUPDATE,
" Aggiunta delle informazioni di codepage al registry..."},
{STRING_DONE,
" Fatto..."},
{STRING_REBOOTCOMPUTER2,
" INVIO = Riavvia il computer"},
{STRING_CONSOLEFAIL1,
"Impossibile aprire la console\n\n"},
{STRING_CONSOLEFAIL2,
"La causa piu' frequente di questo e' l'uso di una tastiera USB\n"},
{STRING_CONSOLEFAIL3,
"le tastiere USB non sono ancora supportate per intero\n"},
{STRING_FORMATTINGDISK,
"Setup sta formattando il disco"},
{STRING_CHECKINGDISK,
"Setup sta controllando il disco"},
{STRING_FORMATDISK1,
" Formatta la partizione con file system %S (formattazione rapida) "},
{STRING_FORMATDISK2,
" Formatta la partizione con file system %S "},
{STRING_KEEPFORMAT,
" Mantieni il file system attuale (nessuna modifica) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) su %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Tipo %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"su %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) su %wZ."},
{STRING_HDDINFOUNK3,
"su %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Tipo %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"su Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Tipo %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) su %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup ha creato una nuova partizione su"},
{STRING_UNPSPACE,
" Spazio non partizionato %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -1577,4 +1577,105 @@ MUI_PAGE ltLTPages[] =
} }
}; };
MUI_STRING ltLTStrings[] =
{
{STRING_PLEASEWAIT,
" Please wait..."},
{STRING_INSTALLCREATEPARTITION,
" ENTER = Install C = Create Partition F3 = Quit"},
{STRING_INSTALLDELETEPARTITION,
" ENTER = Install D = Delete Partition F3 = Quit"},
{STRING_PARTITIONSIZE,
"Size of new partition:"},
{STRING_CHOOSENEWPARTITION,
"You have chosen to create a new partition on"},
{STRING_HDDSIZE,
"Please enter the size of the new partition in megabytes."},
{STRING_CREATEPARTITION,
" ENTER = Create Partition ESC = Cancel F3 = Quit"},
{STRING_PARTFORMAT,
"This Partition will be formatted next."},
{STRING_NONFORMATTEDPART,
"You chose to install ReactOS on a new or unformatted Partition."},
{STRING_INSTALLONPART,
"Setup install ReactOS onto Partition"},
{STRING_CHECKINGPART,
"Setup is now checking the selected partition."},
{STRING_QUITCONTINUE,
"F3= Quit ENTER = Continue"},
{STRING_REBOOTCOMPUTER,
"ENTER = Reboot computer"},
{STRING_TXTSETUPFAILED,
"Setup failed to find the '%S' section\nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copying file: %S"},
{STRING_SETUPCOPYINGFILES,
"Setup is copying files..."},
{STRING_PAGEDMEM,
"Paged Memory"},
{STRING_NONPAGEDMEM,
"Nonpaged Memory"},
{STRING_FREEMEM,
"Free Memory"},
{STRING_REGHIVEUPDATE,
" Updating registry hives..."},
{STRING_IMPORTFILE,
" Importing %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Updating display registry settings..."},
{STRING_LOCALESETTINGSUPDATE,
" Updating locale settings..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Updating keyboard layout settings..."},
{STRING_CODEPAGEINFOUPDATE,
" Adding codepage information to registry..."},
{STRING_DONE,
" Done..."},
{STRING_REBOOTCOMPUTER2,
" ENTER = Reboot computer"},
{STRING_CONSOLEFAIL1,
"Unable to open the console\n\n"},
{STRING_CONSOLEFAIL2,
"The most common cause of this is using an USB keyboard\n"},
{STRING_CONSOLEFAIL3,
"USB keyboards are not fully supported yet\n"},
{STRING_FORMATTINGDISK,
"Setup is formatting your disk"},
{STRING_CHECKINGDISK,
"Setup is checking your disk"},
{STRING_FORMATDISK1,
" Format partition as %S file system (quick format) "},
{STRING_FORMATDISK2,
" Format partition as %S file system "},
{STRING_KEEPFORMAT,
" Keep current file system (no changes) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE,
" Unpartitioned space %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -1648,27 +1648,27 @@ MUI_STRING plPLStrings[] =
" Sformatuj partycj© z systemem plik¢w %S "}, " Sformatuj partycj© z systemem plik¢w %S "},
{STRING_KEEPFORMAT, {STRING_KEEPFORMAT,
" Zachowaj obecny system plik¢w (bez zmian) "}, " Zachowaj obecny system plik¢w (bez zmian) "},
{STRING_HDDINFO1, {STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO2, {STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO3, {STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"}, " %c%c Type %lu %I64u %s"},
{STRING_HDDINFO4, {STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO5, {STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO6, {STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO7, {STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"}, "%c%c Type %lu %I64u %s"},
{STRING_HDDINFO8, {STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO9, {STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"}, "%c%c Type %-3u %6lu %s"},
{STRING_HDDINFO10, {STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFO11, {STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION, {STRING_NEWPARTITION,
"Setup created a new partition on"}, "Setup created a new partition on"},

View file

@ -1640,30 +1640,28 @@ MUI_STRING ruRUStrings[] =
" ”®à¬ â¨à®¢ ­¨¥ à §¤¥«  ¢ ä ©«®¢®© á¨á⥬¥ %S "}, " ”®à¬ â¨à®¢ ­¨¥ à §¤¥«  ¢ ä ©«®¢®© á¨á⥬¥ %S "},
{STRING_KEEPFORMAT, {STRING_KEEPFORMAT,
" Žáâ ¢¨âì áãé¥áâ¢ãîéãî ä ©«®¢ãî á¨á⥬ã (¡¥§ ¨§¬¥­¥­¨©) "}, " Žáâ ¢¨âì áãé¥áâ¢ãîéãî ä ©«®¢ãî á¨á⥬ã (¡¥§ ¨§¬¥­¥­¨©) "},
{STRING_HDDINFO1, {STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO2, {STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO3, {STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"}, " %c%c Type %lu %I64u %s"},
{STRING_HDDINFO4, {STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO5, {STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO6, {STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO7, {STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"}, "%c%c Type %lu %I64u %s"},
{STRING_HDDINFO8, {STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO9, {STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"}, "%c%c Type %-3u %6lu %s"},
{STRING_HDDINFO10, {STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFO11, {STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE, {STRING_UNPSPACE,
" Unpartitioned space %6lu %s"}, " Unpartitioned space %6lu %s"},
{0, 0} {0, 0}

View file

@ -1645,30 +1645,28 @@ MUI_STRING skSKStrings[] =
" Naform tovaœ oblasœ ako systm s£borov %S "}, " Naform tovaœ oblasœ ako systm s£borov %S "},
{STRING_KEEPFORMAT, {STRING_KEEPFORMAT,
" Ponechaœ s£Ÿasnì systm s£borov (bez zmeny) "}, " Ponechaœ s£Ÿasnì systm s£borov (bez zmeny) "},
{STRING_HDDINFO1, {STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO2, {STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO3, {STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"}, " %c%c Type %lu %I64u %s"},
{STRING_HDDINFO4, {STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFO5, {STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."}, "on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFO6, {STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO7, {STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"}, "%c%c Type %lu %I64u %s"},
{STRING_HDDINFO8, {STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."}, "on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFO9, {STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"}, "%c%c Type %-3u %6lu %s"},
{STRING_HDDINFO10, {STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFO11, {STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"}, "%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE, {STRING_UNPSPACE,
" Unpartitioned space %6lu %s"}, " Unpartitioned space %6lu %s"},
{0, 0} {0, 0}

View file

@ -1567,4 +1567,105 @@ MUI_PAGE svSEPages[] =
} }
}; };
MUI_STRING svSEStrings[] =
{
{STRING_PLEASEWAIT,
" Please wait..."},
{STRING_INSTALLCREATEPARTITION,
" ENTER = Install C = Create Partition F3 = Quit"},
{STRING_INSTALLDELETEPARTITION,
" ENTER = Install D = Delete Partition F3 = Quit"},
{STRING_PARTITIONSIZE,
"Size of new partition:"},
{STRING_CHOOSENEWPARTITION,
"You have chosen to create a new partition on"},
{STRING_HDDSIZE,
"Please enter the size of the new partition in megabytes."},
{STRING_CREATEPARTITION,
" ENTER = Create Partition ESC = Cancel F3 = Quit"},
{STRING_PARTFORMAT,
"This Partition will be formatted next."},
{STRING_NONFORMATTEDPART,
"You chose to install ReactOS on a new or unformatted Partition."},
{STRING_INSTALLONPART,
"Setup install ReactOS onto Partition"},
{STRING_CHECKINGPART,
"Setup is now checking the selected partition."},
{STRING_QUITCONTINUE,
"F3= Quit ENTER = Continue"},
{STRING_REBOOTCOMPUTER,
"ENTER = Reboot computer"},
{STRING_TXTSETUPFAILED,
"Setup failed to find the '%S' section\nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copying file: %S"},
{STRING_SETUPCOPYINGFILES,
"Setup is copying files..."},
{STRING_PAGEDMEM,
"Paged Memory"},
{STRING_NONPAGEDMEM,
"Nonpaged Memory"},
{STRING_FREEMEM,
"Free Memory"},
{STRING_REGHIVEUPDATE,
" Updating registry hives..."},
{STRING_IMPORTFILE,
" Importing %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Updating display registry settings..."},
{STRING_LOCALESETTINGSUPDATE,
" Updating locale settings..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Updating keyboard layout settings..."},
{STRING_CODEPAGEINFOUPDATE,
" Adding codepage information to registry..."},
{STRING_DONE,
" Done..."},
{STRING_REBOOTCOMPUTER2,
" ENTER = Reboot computer"},
{STRING_CONSOLEFAIL1,
"Unable to open the console\n\n"},
{STRING_CONSOLEFAIL2,
"The most common cause of this is using an USB keyboard\n"},
{STRING_CONSOLEFAIL3,
"USB keyboards are not fully supported yet\n"},
{STRING_FORMATTINGDISK,
"Setup is formatting your disk"},
{STRING_CHECKINGDISK,
"Setup is checking your disk"},
{STRING_FORMATDISK1,
" Format partition as %S file system (quick format) "},
{STRING_FORMATDISK2,
" Format partition as %S file system "},
{STRING_KEEPFORMAT,
" Keep current file system (no changes) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE,
" Unpartitioned space %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -82,7 +82,7 @@ static MUI_ENTRY ukUAWelcomePageEntries[] =
{ {
8, 8,
17, 17,
"\x07 <20> â¨á­iâì <R> 鮡 ¢_¤­®¢¨â¨ ReactOS.", "\x07 <20> â¨á­iâì <R> 鮡 ¢i¤­®¢¨â¨ ReactOS.",
TEXT_NORMAL TEXT_NORMAL
}, },
{ {
@ -1241,7 +1241,7 @@ static MUI_ENTRY ukUARegistryEntries[] =
{ {
4, 4,
3, 3,
" ReactOS " KERNEL_VERSION_STR " Setup ", " “áâ ­®¢ª  ReactOS " KERNEL_VERSION_STR " ",
TEXT_UNDERLINE TEXT_UNDERLINE
}, },
{ {
@ -1275,7 +1275,7 @@ MUI_ERROR ukUAErrorEntries[] =
"\n" "\n"
" \x07 Press ENTER to continue Setup.\n" " \x07 Press ENTER to continue Setup.\n"
" \x07 Press F3 to quit Setup.", " \x07 Press F3 to quit Setup.",
"F3= Quit ENTER = Continue" "F3 = Quit ENTER = Continue"
}, },
{ {
//ERROR_NO_HDD //ERROR_NO_HDD
@ -1334,14 +1334,14 @@ MUI_ERROR ukUAErrorEntries[] =
}, },
{ {
//ERROR_WARN_PARTITION, //ERROR_WARN_PARTITION,
"Setup found that at least one harddisk contains an incompatible\n" "Setup found that at least one harddisk contains an incompatible\n"
"partition table that can not be handled properly!\n" "partition table that can not be handled properly!\n"
"\n" "\n"
"Creating or deleting partitions can destroy the partiton table.\n" "Creating or deleting partitions can destroy the partition table.\n"
"\n" "\n"
" \x07 Press F3 to quit Setup." " \x07 Press F3 to quit Setup."
" \x07 Press ENTER to continue.", " \x07 Press ENTER to continue.",
"F3= Quit ENTER = Continue" "F3= Quit ENTER = Continue"
}, },
{ {
//ERROR_NEW_PARTITION, //ERROR_NEW_PARTITION,
@ -1475,8 +1475,8 @@ MUI_PAGE ukUAPages[] =
ukUALanguagePageEntries ukUALanguagePageEntries
}, },
{ {
START_PAGE, START_PAGE,
ukUAWelcomePageEntries ukUAWelcomePageEntries
}, },
{ {
INSTALL_INTRO_PAGE, INSTALL_INTRO_PAGE,
@ -1568,4 +1568,105 @@ MUI_PAGE ukUAPages[] =
} }
}; };
MUI_STRING ukUAStrings[] =
{
{STRING_PLEASEWAIT,
" Please wait..."},
{STRING_INSTALLCREATEPARTITION,
" ENTER = Install C = Create Partition F3 = Quit"},
{STRING_INSTALLDELETEPARTITION,
" ENTER = Install D = Delete Partition F3 = Quit"},
{STRING_PARTITIONSIZE,
"Size of new partition:"},
{STRING_CHOOSENEWPARTITION,
"You have chosen to create a new partition on"},
{STRING_HDDSIZE,
"Please enter the size of the new partition in megabytes."},
{STRING_CREATEPARTITION,
" ENTER = Create Partition ESC = Cancel F3 = Quit"},
{STRING_PARTFORMAT,
"This Partition will be formatted next."},
{STRING_NONFORMATTEDPART,
"You chose to install ReactOS on a new or unformatted Partition."},
{STRING_INSTALLONPART,
"Setup install ReactOS onto Partition"},
{STRING_CHECKINGPART,
"Setup is now checking the selected partition."},
{STRING_QUITCONTINUE,
"F3= Quit ENTER = Continue"},
{STRING_REBOOTCOMPUTER,
"ENTER = Reboot computer"},
{STRING_TXTSETUPFAILED,
"Setup failed to find the '%S' section\nin TXTSETUP.SIF.\n"},
{STRING_COPYING,
" \xB3 Copying file: %S"},
{STRING_SETUPCOPYINGFILES,
"Setup is copying files..."},
{STRING_PAGEDMEM,
"Paged Memory"},
{STRING_NONPAGEDMEM,
"Nonpaged Memory"},
{STRING_FREEMEM,
"Free Memory"},
{STRING_REGHIVEUPDATE,
" Updating registry hives..."},
{STRING_IMPORTFILE,
" Importing %S..."},
{STRING_DISPLAYETTINGSUPDATE,
" Updating display registry settings..."},
{STRING_LOCALESETTINGSUPDATE,
" Updating locale settings..."},
{STRING_KEYBOARDSETTINGSUPDATE,
" Updating keyboard layout settings..."},
{STRING_CODEPAGEINFOUPDATE,
" Adding codepage information to registry..."},
{STRING_DONE,
" Done..."},
{STRING_REBOOTCOMPUTER2,
" ENTER = Reboot computer"},
{STRING_CONSOLEFAIL1,
"Unable to open the console\n\n"},
{STRING_CONSOLEFAIL2,
"The most common cause of this is using an USB keyboard\n"},
{STRING_CONSOLEFAIL3,
"USB keyboards are not fully supported yet\n"},
{STRING_FORMATTINGDISK,
"Setup is formatting your disk"},
{STRING_CHECKINGDISK,
"Setup is checking your disk"},
{STRING_FORMATDISK1,
" Format partition as %S file system (quick format) "},
{STRING_FORMATDISK2,
" Format partition as %S file system "},
{STRING_KEEPFORMAT,
" Keep current file system (no changes) "},
{STRING_HDINFOPARTCREATE,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK1,
"%I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDDINFOUNK2,
" %c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTDELETE,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %wZ."},
{STRING_HDDINFOUNK3,
"on %I64u %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)."},
{STRING_HDINFOPARTZEROED,
"Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK4,
"%c%c Type %lu %I64u %s"},
{STRING_HDINFOPARTEXISTS,
"on Harddisk %lu (%I64u %s), Port=%hu, Bus=%hu, Id=%hu (%wZ)."},
{STRING_HDDINFOUNK5,
"%c%c Type %-3u %6lu %s"},
{STRING_HDINFOPARTSELECT,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu) on %S"},
{STRING_HDDINFOUNK6,
"%6lu %s Harddisk %lu (Port=%hu, Bus=%hu, Id=%hu)"},
{STRING_NEWPARTITION,
"Setup created a new partition on"},
{STRING_UNPSPACE,
" Unpartitioned space %6lu %s"},
{0, 0}
};
#endif #endif

View file

@ -50,32 +50,32 @@ static const MUI_LANGUAGE LanguageList[] =
/* Lang ID, DefKbdLayout,ANSI CP, OEM CP, MAC CP, Language Name, page strgs,error strings, other strings */ /* Lang ID, DefKbdLayout,ANSI CP, OEM CP, MAC CP, Language Name, page strgs,error strings, other strings */
{L"00000409", L"00000409", L"1252", L"437", L"10000", L"English", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000409", L"00000409", L"1252", L"437", L"10000", L"English", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000401", L"00000401", L"1256", L"720", L"10004", L"Arabic", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000401", L"00000401", L"1256", L"720", L"10004", L"Arabic", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000402", L"00000402", L"1251", L"866", L"10007", L"Bulgarian", bgBGPages, bgBGErrorEntries, enUSStrings }, {L"00000402", L"00000402", L"1251", L"866", L"10007", L"Bulgarian", bgBGPages, bgBGErrorEntries, bgBGStrings },
{L"00000403", L"00000403", L"1252", L"850", L"10000", L"Catalan", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000403", L"00000403", L"1252", L"850", L"10000", L"Catalan", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000804", L"00000804", L"936", L"936", L"10008", L"Chinese (PRC)", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000804", L"00000804", L"936", L"936", L"10008", L"Chinese (PRC)", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000405", L"00000405", L"1250", L"852", L"10029", L"Czech", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000405", L"00000405", L"1250", L"852", L"10029", L"Czech", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000406", L"00000406", L"1252", L"850", L"10000", L"Danish", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000406", L"00000406", L"1252", L"850", L"10000", L"Danish", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000407", L"00000407", L"1252", L"850", L"10000", L"Deutsch", deDEPages, deDEErrorEntries, deDEStrings },
{L"00000413", L"00000813", L"1252", L"850", L"10000", L"Dutch", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000413", L"00000813", L"1252", L"850", L"10000", L"Dutch", enUSPages, enUSErrorEntries, enUSStrings },
{L"0000040B", L"0000040B", L"1252", L"850", L"10000", L"Finnish", enUSPages, enUSErrorEntries, enUSStrings }, {L"0000040B", L"0000040B", L"1252", L"850", L"10000", L"Finnish", enUSPages, enUSErrorEntries, enUSStrings },
{L"0000040C", L"0000040C", L"1252", L"850", L"10000", L"French", frFRPages, frFRErrorEntries, enUSStrings }, {L"0000040C", L"0000040C", L"1252", L"850", L"10000", L"French", frFRPages, frFRErrorEntries, frFRStrings },
{L"00000407", L"00000407", L"1252", L"850", L"10000", L"German", deDEPages, deDEErrorEntries, deDEStrings }, {L"00000408", L"00000408", L"1253", L"737", L"10006", L"Greek", elGRPages, elGRErrorEntries, elGRStrings },
{L"00000408", L"00000408", L"1253", L"737", L"10006", L"Greek", elGRPages, elGRErrorEntries, enUSStrings },
{L"0000040D", L"0000040D", L"1255", L"862", L"10005", L"Hebrew", enUSPages, enUSErrorEntries, enUSStrings }, {L"0000040D", L"0000040D", L"1255", L"862", L"10005", L"Hebrew", enUSPages, enUSErrorEntries, enUSStrings },
{L"0000040E", L"0000040E", L"1250", L"852", L"10029", L"Hungarian", enUSPages, enUSErrorEntries, enUSStrings }, {L"0000040E", L"0000040E", L"1250", L"852", L"10029", L"Hungarian", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000410", L"00000410", L"1252", L"850", L"10000", L"Italian", itITPages, itITErrorEntries, enUSStrings }, {L"00000410", L"00000410", L"1252", L"850", L"10000", L"Italian", itITPages, itITErrorEntries, itITStrings },
{L"00000411", L"00000411", L"932", L"932", L"10001", L"Japanese", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000411", L"00000411", L"932", L"932", L"10001", L"Japanese", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000412", L"00000412", L"949", L"949", L"10003", L"Korean", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000412", L"00000412", L"949", L"949", L"10003", L"Korean", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000427", L"00000427", L"1257", L"775", L"10029", L"Lithuanian", ltLTPages, ltLTErrorEntries, enUSStrings }, {L"00000427", L"00000427", L"1257", L"775", L"10029", L"Lithuanian", ltLTPages, ltLTErrorEntries, ltLTStrings },
{L"00000414", L"00000414", L"1252", L"850", L"10000", L"Norwegian", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000414", L"00000414", L"1252", L"850", L"10000", L"Norwegian", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000419", L"00000419", L"1251", L"866", L"10007", L"Russian", ruRUPages, ruRUErrorEntries, ruRUStrings }, {L"00000419", L"00000419", L"1251", L"866", L"10007", L"Russkij", ruRUPages, ruRUErrorEntries, ruRUStrings },
{L"0000041B", L"0000041B", L"1250", L"852", L"10029", L"Slovak", skSKPages, skSKErrorEntries, skSKStrings }, {L"0000041B", L"0000041B", L"1250", L"852", L"10029", L"Slovak", skSKPages, skSKErrorEntries, skSKStrings },
{L"0000040A", L"0000040A", L"1252", L"850", L"10000", L"Spanish", esESPages, esESErrorEntries, enUSStrings }, {L"0000040A", L"0000040A", L"1252", L"850", L"10000", L"Spanish", esESPages, esESErrorEntries, esESStrings },
{L"00000415", L"00000415", L"1250", L"852", L"10029", L"Polski", plPLPages, plPLErrorEntries, plPLStrings }, {L"00000415", L"00000415", L"1250", L"852", L"10029", L"Polski", plPLPages, plPLErrorEntries, plPLStrings },
{L"00000816", L"00000816", L"1252", L"850", L"10000", L"Portuguese", enUSPages, enUSErrorEntries, enUSStrings }, {L"00000816", L"00000816", L"1252", L"850", L"10000", L"Portuguese", enUSPages, enUSErrorEntries, enUSStrings },
{L"0000041D", L"0000041D", L"1252", L"850", L"10000", L"Swedish", svSEPages, svSEErrorEntries, enUSStrings }, {L"0000041D", L"0000041D", L"1252", L"850", L"10000", L"Swedish", svSEPages, svSEErrorEntries, svSEStrings },
{L"0000041E", L"0000041E", L"874", L"874", L"10021", L"Thai", enUSPages, enUSErrorEntries, enUSStrings }, {L"0000041E", L"0000041E", L"874", L"874", L"10021", L"Thai", enUSPages, enUSErrorEntries, enUSStrings },
{L"0000041F", L"0000041F", L"1254", L"857", L"10081", L"Turkish", enUSPages, enUSErrorEntries, enUSStrings }, {L"0000041F", L"0000041F", L"1254", L"857", L"10081", L"Turkish", enUSPages, enUSErrorEntries, enUSStrings },
{L"00000422", L"00000422", L"1251", L"866", L"10017", L"Ukrainian", ukUAPages, ukUAErrorEntries, enUSStrings }, {L"00000422", L"00000422", L"1251", L"866", L"10017", L"Ukrainian", ukUAPages, ukUAErrorEntries, ukUAStrings },
{NULL, NULL, NULL, NULL, NULL} {NULL, NULL, NULL, NULL, NULL}
}; };

View file

@ -104,17 +104,17 @@ MUIGetString(ULONG Number);
#define STRING_FORMATDISK1 33 #define STRING_FORMATDISK1 33
#define STRING_FORMATDISK2 34 #define STRING_FORMATDISK2 34
#define STRING_KEEPFORMAT 35 #define STRING_KEEPFORMAT 35
#define STRING_HDDINFO1 36 #define STRING_HDINFOPARTCREATE 36
#define STRING_HDDINFO2 37 #define STRING_HDDINFOUNK1 37
#define STRING_HDDINFO3 38 #define STRING_HDDINFOUNK2 38
#define STRING_HDDINFO4 39 #define STRING_HDINFOPARTDELETE 39
#define STRING_HDDINFO5 40 #define STRING_HDDINFOUNK3 40
#define STRING_HDDINFO6 41 #define STRING_HDINFOPARTZEROED 41
#define STRING_HDDINFO7 42 #define STRING_HDDINFOUNK4 42
#define STRING_HDDINFO8 43 #define STRING_HDINFOPARTEXISTS 43
#define STRING_HDDINFO9 44 #define STRING_HDDINFOUNK5 44
#define STRING_HDDINFO10 45 #define STRING_HDINFOPARTSELECT 45
#define STRING_HDDINFO11 46 #define STRING_HDDINFOUNK6 46
#define STRING_NEWPARTITION 47 #define STRING_NEWPARTITION 47
#define STRING_UNPSPACE 48 #define STRING_UNPSPACE 48
#endif #endif

View file

@ -1194,7 +1194,7 @@ PrintPartitionData (PPARTLIST List,
if (PartType == NULL) if (PartType == NULL)
{ {
sprintf (LineBuffer, sprintf (LineBuffer,
MUIGetString(STRING_HDDINFO9), MUIGetString(STRING_HDDINFOUNK5),
(PartEntry->DriveLetter == 0) ? '-' : PartEntry->DriveLetter, (PartEntry->DriveLetter == 0) ? '-' : PartEntry->DriveLetter,
(PartEntry->DriveLetter == 0) ? '-' : ':', (PartEntry->DriveLetter == 0) ? '-' : ':',
PartEntry->PartInfo[0].PartitionType, PartEntry->PartInfo[0].PartitionType,
@ -1288,7 +1288,7 @@ PrintDiskData (PPARTLIST List,
if (DiskEntry->DriverName.Length > 0) if (DiskEntry->DriverName.Length > 0)
{ {
sprintf (LineBuffer, sprintf (LineBuffer,
MUIGetString(STRING_HDDINFO10), MUIGetString(STRING_HDINFOPARTSELECT),
DiskSize.u.LowPart, DiskSize.u.LowPart,
Unit, Unit,
DiskEntry->DiskNumber, DiskEntry->DiskNumber,
@ -1300,7 +1300,7 @@ PrintDiskData (PPARTLIST List,
else else
{ {
sprintf (LineBuffer, sprintf (LineBuffer,
MUIGetString(STRING_HDDINFO11), MUIGetString(STRING_HDDINFOUNK6),
DiskSize.u.LowPart, DiskSize.u.LowPart,
Unit, Unit,
DiskEntry->DiskNumber, DiskEntry->DiskNumber,

View file

@ -27,23 +27,23 @@ ATTRIB [+R | -R] [+A | -A] [+S | -S] [+H | -H]
/D Îáðîáêà òàêîæ ³ ïàïîê\n\n\ /D Îáðîáêà òàêîæ ³ ïàïîê\n\n\
Ââåä³òü ATTRIB áåç ïàðàìåòðà, ùîá âèâåñòè àòðèáóòè âñ³õ ôàéë³â.\n" Ââåä³òü ATTRIB áåç ïàðàìåòðà, ùîá âèâåñòè àòðèáóòè âñ³õ ôàéë³â.\n"
STRING_ALIAS_HELP, "Sets, removes or shows aliases.\n\n\ STRING_ALIAS_HELP, "Встановлення, видалення або показ псевдонімів.\n\n\
ALIAS [alias=[command]]\n\n\ ALIAS [псевдонім=[команда]]\n\n\
alias Name for an alias.\n\ псевдонім Ім'я псевдоніма.\n\
command Text to be substituted for an alias.\n\n\ команда Текст, що підставляється замість псевдоніма.\n\n\
To list all aliases:\n\ Виведення списку всіх псевдонімів:\n\
ALIAS\n\n\ ALIAS\n\n\
To set a new or replace an existing alias:\n\ Встановлення або зміна існуючого псевдоніма:\n\
ALIAS da=dir a:\n\n\ ALIAS da=dir a:\n\n\
To remove an alias from the alias list:\n\ Видалення псевдоніма зі списку:\n\
ALIAS da=" ALIAS da="
STRING_BEEP_HELP, "Beep the speaker.\n\nBEEP\n" STRING_BEEP_HELP, "Звуковий сигнал спікера.\n\nBEEP\n"
STRING_CALL_HELP, "Calls one batch program from another.\n\n\ STRING_CALL_HELP, "Виклик однієї пакетної програми з іншої.\n\n\
CALL [drive:][path]filename [batch-parameter]\n\n\ CALL [диск:][шлях]ім'я_файла [параметри]\n\n\
batch-parameter Specifies any command-line information required by the\n\ параметри Набір параметрів командного рядка, необхідних для пакетного\n\
batch program." файлу."
STRING_CD_HELP, "Changes the current directory or displays it's name\n\n\ STRING_CD_HELP, "Changes the current directory or displays it's name\n\n\
CHDIR [/D][drive:][path]\n\ CHDIR [/D][drive:][path]\n\