sync with trunk (r49230)

svn path=/branches/cmake-bringup/; revision=49246
This commit is contained in:
Sylvain Petreolle 2010-10-23 22:14:59 +00:00
771 changed files with 118975 additions and 68781 deletions

View file

@ -985,13 +985,13 @@ static MUI_ENTRY etEEBootLoaderEntries[] =
{
8,
12,
"Install bootloader on the harddisk (MBR and VBR).",
"Paigalda alglaadur kävakettale (MBR ja VBR).",
TEXT_STYLE_NORMAL
},
{
8,
13,
"Install bootloader on the harddisk (VBR only).",
"Paigalda alglaadur kävakettale (ainult VBR).",
TEXT_STYLE_NORMAL
},
{

View file

@ -986,13 +986,13 @@ static MUI_ENTRY itITBootLoaderEntries[] =
{
8,
12,
"Install bootloader on the harddisk (MBR and VBR).",
"Installazione del bootloader sul disco fisso (MBR e VBR).",
TEXT_STYLE_NORMAL
},
{
8,
13,
"Install bootloader on the harddisk (VBR only).",
"Installazione del bootloader sul disco fisso (solo VBR).",
TEXT_STYLE_NORMAL
},
{

View file

@ -986,13 +986,13 @@ static MUI_ENTRY jaJPBootLoaderEntries[] =
{
8,
12,
"Install bootloader on the harddisk (MBR and VBR).",
"ハードディスクニ ブートローダーヲ インストール シマス (MBR ト VBR).",
TEXT_STYLE_NORMAL
},
{
8,
13,
"Install bootloader on the harddisk (VBR only).",
"ハードディスクニ ブートローダーヲ インストール シマス (VBR ノミ).",
TEXT_STYLE_NORMAL
},
{

View file

@ -986,19 +986,19 @@ static MUI_ENTRY ruRUBootLoaderEntries[] =
{
8,
12,
"Install bootloader on the harddisk (MBR and VBR).",
"“αβ ­®Ά¨βμ § £ΰγ§η¨<CEB7> ­  ¦¥αβ<CEB1>¨© ¤¨α<C2A8> (MBR ¨ VBR).",
TEXT_STYLE_NORMAL
},
{
8,
13,
"Install bootloader on the harddisk (VBR only).",
"“αβ ­®Ά¨βμ § £ΰγ§η¨<CEB7> ­  ¦¥αβ<CEB1>¨© ¤¨α<C2A8> (β®«μ<C2AB>® VBR).",
TEXT_STYLE_NORMAL
},
{
8,
14,
"áâ ­®¢ª  ­  £¨¡ª¨© ¤¨áª.",
"αβ ­®Ά¨βμ § £ΰγ§η¨<CEB7> ­  £¨΅<C2A8>¨© ¤¨α<C2A8>.",
TEXT_STYLE_NORMAL
},
{

View file

@ -985,31 +985,31 @@ static MUI_ENTRY ukUABootLoaderEntries[] =
{
6,
8,
"áâ ­®¢«î¢ ç ¢áâ ­®¢«îó boot loader",
"αβ ­®Ά«ξΆ η Άαβ ­®Ά«ξσ § Ά ­β ¦γΆ η",
TEXT_STYLE_NORMAL
},
{
8,
12,
"Install bootloader on the harddisk (MBR and VBR).",
"‚αβ ­®Ά¨β¨ § Ά ­β ¦γΆ η ­  ¦®ΰαβ<CEB1>¨© ¤¨α<C2A8> (MBR i VBR).",
TEXT_STYLE_NORMAL
},
{
8,
13,
"Install bootloader on the harddisk (VBR only).",
"‚αβ ­®Ά¨β¨ § Ά ­β ¦γΆ η ­  ¦®ΰαβ<CEB1>¨© ¤¨α<C2A8> («¨θ¥ VBR).",
TEXT_STYLE_NORMAL
},
{
8,
14,
"áâ ­®¢¨â¨ bootloader ­  ¤¨áª¥âã.",
"αβ ­®Ά¨β¨ § Ά ­β ¦γΆ η ­  ¤¨α<C2A8>¥βγ.",
TEXT_STYLE_NORMAL
},
{
8,
15,
"<EFBFBD>¥ ¢áâ ­®¢«î¢ â¨ bootloader.",
"<EFBFBD>¥ Άαβ ­®Ά«ξΆ β¨ § Ά ­β ¦γΆ η.",
TEXT_STYLE_NORMAL
},
{

View file

@ -683,15 +683,13 @@ ProcessLocaleRegistry(PGENERIC_LIST List)
REG_SZ,
(PVOID)(LanguageId + 4),
8 * sizeof(PWCHAR));
NtClose(KeyHandle);
if (!NT_SUCCESS(Status))
{
DPRINT1("NtSetValueKey() failed (Status %lx)\n", Status);
NtClose(KeyHandle);
return FALSE;
}
NtClose(KeyHandle);
return TRUE;
}
@ -989,11 +987,11 @@ SetGeoID(PWCHAR Id)
0,
REG_SZ,
(PVOID)Id,
(wcslen(Id) * sizeof(WCHAR)));
(wcslen(Id) + 1) * sizeof(WCHAR));
NtClose(KeyHandle);
if (!NT_SUCCESS(Status))
{
DPRINT1("NtSetValueKey() failed (Status = %lx)\n", Status);
NtClose(KeyHandle);
return FALSE;
}