Okokok, I dont know why someone should feel the urge to translate MB, KB, and GB (Except specific languages...), but here they are.

svn path=/trunk/; revision=32427
This commit is contained in:
Daniel Reimer 2008-02-19 21:31:09 +00:00
parent 2b750b9312
commit 71719dc6bd
16 changed files with 100 additions and 19 deletions

View file

@ -1612,7 +1612,7 @@ CreatePartitionPage (PINPUT_RECORD Ir)
if (DiskEntry->DiskSize >= 0x280000000ULL) /* 10 GB */
{
DiskSize = (DiskEntry->DiskSize + (1 << 29)) >> 30;
Unit = "GB";
Unit = MUIGetString(STRING_GB);
}
else
#endif
@ -1622,7 +1622,7 @@ CreatePartitionPage (PINPUT_RECORD Ir)
if (DiskSize == 0)
DiskSize = 1;
Unit = "MB";
Unit = MUIGetString(STRING_MB);
}
if (DiskEntry->DriverName.Length > 0)
@ -1780,19 +1780,19 @@ DeletePartitionPage (PINPUT_RECORD Ir)
if (PartEntry->PartInfo[0].PartitionLength.QuadPart >= 0x280000000LL) /* 10 GB */
{
PartSize = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 29)) >> 30;
Unit = "GB";
Unit = MUIGetString(STRING_GB);
}
else
#endif
if (PartEntry->PartInfo[0].PartitionLength.QuadPart >= 0xA00000LL) /* 10 MB */
{
PartSize = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 19)) >> 20;
Unit = "MB";
Unit = MUIGetString(STRING_MB);
}
else
{
PartSize = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 9)) >> 10;
Unit = "KB";
Unit = MUIGetString(STRING_KB);
}
if (PartType == NULL)
@ -1820,7 +1820,7 @@ DeletePartitionPage (PINPUT_RECORD Ir)
if (DiskEntry->DiskSize >= 0x280000000ULL) /* 10 GB */
{
DiskSize = (DiskEntry->DiskSize + (1 << 29)) >> 30;
Unit = "GB";
Unit = MUIGetString(STRING_GB);
}
else
#endif
@ -1830,7 +1830,7 @@ DeletePartitionPage (PINPUT_RECORD Ir)
if (DiskSize == 0)
DiskSize = 1;
Unit = "MB";
Unit = MUIGetString(STRING_MB);
}
if (DiskEntry->DriverName.Length > 0)
@ -1913,24 +1913,24 @@ SelectFileSystemPage (PINPUT_RECORD Ir)
if (DiskEntry->DiskSize >= 0x280000000ULL) /* 10 GB */
{
DiskSize = (DiskEntry->DiskSize + (1 << 29)) >> 30;
DiskUnit = "GB";
DiskUnit = MUIGetString(STRING_GB);
}
else
{
DiskSize = (DiskEntry->DiskSize + (1 << 19)) >> 20;
DiskUnit = "MB";
DiskUnit = MUIGetString(STRING_MB);
}
/* adjust partition size */
if (PartEntry->PartInfo[0].PartitionLength.QuadPart >= 0x280000000LL) /* 10 GB */
{
PartSize = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 29)) >> 30;
PartUnit = "GB";
PartUnit = MUIGetString(STRING_GB);
}
else
{
PartSize = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 19)) >> 20;
PartUnit = "MB";
PartUnit = MUIGetString(STRING_MB);
}
/* adjust partition type */

View file

@ -1683,6 +1683,12 @@ MUI_STRING bgBGStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1680,6 +1680,12 @@ MUI_STRING deDEStrings[] =
"Ungenutzt"},
{STRING_FORMATUNKNOWN,
"Unbekannt"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1674,6 +1674,12 @@ MUI_STRING elGRStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1674,6 +1674,12 @@ MUI_STRING enUSStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1673,6 +1673,12 @@ MUI_STRING esESStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1686,6 +1686,12 @@ MUI_STRING frFRStrings[] =
"Non utilis"},
{STRING_FORMATUNKNOWN,
"Inconnu"},
{STRING_KB,
"Ko"},
{STRING_MB,
"Mo"},
{STRING_GB,
"Go"},
{0, 0}
};

View file

@ -1674,6 +1674,12 @@ MUI_STRING itITStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1683,6 +1683,12 @@ MUI_STRING ltLTStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1682,6 +1682,12 @@ MUI_STRING plPLStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1674,6 +1674,12 @@ MUI_STRING ruRUStrings[] =
"<EFBFBD>¥ ¨á¯®«ì§®¢ ­®"},
{STRING_FORMATUNKNOWN,
"<EFBFBD>¥¨§¢¥áâ­ë©"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1679,6 +1679,12 @@ MUI_STRING skSKStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1673,6 +1673,12 @@ MUI_STRING svSEStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -1674,6 +1674,12 @@ MUI_STRING ukUAStrings[] =
"Unused"},
{STRING_FORMATUNKNOWN,
"Unknown"},
{STRING_KB,
"KB"},
{STRING_MB,
"MB"},
{STRING_GB,
"GB"},
{0, 0}
};

View file

@ -121,4 +121,7 @@ MUIGetString(ULONG Number);
#define STRING_UNFORMATTED 50
#define STRING_FORMATUNUSED 51
#define STRING_FORMATUNKNOWN 52
#define STRING_KB 53
#define STRING_MB 54
#define STRING_GB 55
#endif

View file

@ -1120,19 +1120,19 @@ PrintPartitionData (PPARTLIST List,
if (PartEntry->UnpartitionledLength >= 0x280000000ULL) /* 10 GB */
{
PartSize.QuadPart = (PartEntry->UnpartitionedLength + (1 << 29)) >> 30;
Unit = "GB";
Unit = MUIGetString(STRING_GB);
}
else
#endif
if (PartEntry->UnpartitionedLength >= 0xA00000ULL) /* 10 MB */
{
PartSize.QuadPart = (PartEntry->UnpartitionedLength + (1 << 19)) >> 20;
Unit = "MB";
Unit = MUIGetString(STRING_MB);
}
else
{
PartSize.QuadPart = (PartEntry->UnpartitionedLength + (1 << 9)) >> 10;
Unit = "KB";
Unit = MUIGetString(STRING_KB);
}
sprintf (LineBuffer,
@ -1176,19 +1176,19 @@ PrintPartitionData (PPARTLIST List,
if (PartEntry->PartInfo[0].PartitionLength.QuadPart >= 0x280000000LL) /* 10 GB */
{
PartSize.QuadPart = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 29)) >> 30;
Unit = "GB";
Unit = MUIGetString(STRING_GB);
}
else
#endif
if (PartEntry->PartInfo[0].PartitionLength.QuadPart >= 0xA00000LL) /* 10 MB */
{
PartSize.QuadPart = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 19)) >> 20;
Unit = "MB";
Unit = MUIGetString(STRING_MB);
}
else
{
PartSize.QuadPart = (PartEntry->PartInfo[0].PartitionLength.QuadPart + (1 << 9)) >> 10;
Unit = "KB";
Unit = MUIGetString(STRING_KB);
}
if (PartType == NULL)
@ -1274,7 +1274,7 @@ PrintDiskData (PPARTLIST List,
if (DiskEntry->DiskSize >= 0x280000000ULL) /* 10 GB */
{
DiskSize.QuadPart = (DiskEntry->DiskSize + (1 << 29)) >> 30;
Unit = "GB";
Unit = MUIGetString(STRING_GB);
}
else
#endif
@ -1282,7 +1282,7 @@ PrintDiskData (PPARTLIST List,
DiskSize.QuadPart = (DiskEntry->DiskSize + (1 << 19)) >> 20;
if (DiskSize.QuadPart == 0)
DiskSize.QuadPart = 1;
Unit = "MB";
Unit = MUIGetString(STRING_MB);
}
if (DiskEntry->DriverName.Length > 0)