aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/MainMenu/Loading.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/MainMenu/Loading.cs')
-rw-r--r--ShiftOS.WinForms/MainMenu/Loading.cs19
1 files changed, 17 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/MainMenu/Loading.cs b/ShiftOS.WinForms/MainMenu/Loading.cs
index c69fd3d..eff7996 100644
--- a/ShiftOS.WinForms/MainMenu/Loading.cs
+++ b/ShiftOS.WinForms/MainMenu/Loading.cs
@@ -16,8 +16,23 @@ namespace ShiftOS.WinForms.MainMenu
public Loading()
{
InitializeComponent();
- label.Text = Localization.Parse(label.Text);
- label1.Text = "AMIBIOS(C)"+ DateTime.Now.Year +" Australian Microtrends, Plc.\nShiftsoft 480-L ACPI BIOS Revision 1002\nCPU : VTC 210-N " + Environment.ProcessorCount + " CPU 1.33GHz\n Speed : 1.337Ghz\n\nPress DEL to run Setup\nPress <F8> for BBS POPUP\nDDR3 Frequency 1337MHz, Dual Channel, Linear Mode\nChecking NVRAM\n\n1337MB OK";
+
+ //Now let's do it Michael-style.
+ label1.Text = Localization.Parse(@"{MISC_BIOSCOPYRIGHT}
+{MISC_BIOSVERSION}
+{MISC_BIOSCPU}
+{MISC_CLOCKSPEED}
+
+{MISC_RUNSETUP}
+{MISC_BBSPOPUP}
+{MISC_RAMFREQ}
+{MISC_CHECKINGNVRAM}
+
+{MISC_RAM}", new Dictionary<string, string>
+ {
+ ["%year"] = DateTime.Now.Year.ToString(),
+ ["%cores"] = Environment.ProcessorCount.ToString()
+ });
}
private void Loading_FormShown(object sender, EventArgs e)