mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
[CP-4950]: CAR-100: Report whether running in 32- or 64-bit mode
This commit is contained in:
parent
d319b58f3d
commit
cb572c86dc
@ -51,7 +51,7 @@ namespace XenAdmin.Dialogs
|
||||
? string.Format("{0}: {1}", Program.Version.Revision, Messages.COMMON_CRITERIA_TEXT)
|
||||
: Program.Version.Revision.ToString();
|
||||
|
||||
VersionLabel.Text = string.Format(Messages.VERSION_NUMBER, Branding.PRODUCT_VERSION_TEXT, buildText);
|
||||
VersionLabel.Text = string.Format(Messages.VERSION_NUMBER, Branding.PRODUCT_VERSION_TEXT, buildText, IntPtr.Size * 8);
|
||||
label2.Text = string.Format(Messages.COPYRIGHT, Branding.COMPANY_NAME_LEGAL);
|
||||
}
|
||||
|
||||
|
@ -501,6 +501,7 @@ namespace XenAdmin
|
||||
log.Info(".NET runtime version: " + Environment.Version.ToString(4));
|
||||
log.Info("OS version: " + Environment.OSVersion.ToString());
|
||||
log.Info("UI Culture: " + Thread.CurrentThread.CurrentUICulture.EnglishName);
|
||||
log.Info(string.Format("Bitness: {0}-bit", IntPtr.Size * 8));
|
||||
}
|
||||
|
||||
static void Application_ApplicationExit(object sender, EventArgs e)
|
||||
|
2
XenModel/Messages.Designer.cs
generated
2
XenModel/Messages.Designer.cs
generated
@ -31319,7 +31319,7 @@ namespace XenAdmin {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to XenCenter version {0} (build {1}).
|
||||
/// Looks up a localized string similar to XenCenter version {0} (build {1}) {2}-bit.
|
||||
/// </summary>
|
||||
public static string VERSION_NUMBER {
|
||||
get {
|
||||
|
@ -10857,7 +10857,7 @@ To learn more about the XenServer Dynamic Workload Balancing feature or to start
|
||||
<value>Signature verification failed. {0}</value>
|
||||
</data>
|
||||
<data name="VERSION_NUMBER" xml:space="preserve">
|
||||
<value>XenCenter version {0} (build {1})</value>
|
||||
<value>XenCenter version {0} (build {1}) {2}-bit</value>
|
||||
</data>
|
||||
<data name="VGPU_PASSTHRU_TOSTRING" xml:space="preserve">
|
||||
<value>Pass-through whole GPU</value>
|
||||
|
Loading…
Reference in New Issue
Block a user