aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/MainMenu
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-18 20:53:03 -0400
committerMichael <[email protected]>2017-06-18 20:53:03 -0400
commit45c587b3a656135fec9c91566fa5f817ddfc600e (patch)
tree3d79e760cfa65fe4c7bc1cd8e0b5186a5ec23faa /ShiftOS.WinForms/MainMenu
parent0c94c9307370eb9873a505a35411d70ce4f70e30 (diff)
downloadshiftos_thereturn-45c587b3a656135fec9c91566fa5f817ddfc600e.tar.gz
shiftos_thereturn-45c587b3a656135fec9c91566fa5f817ddfc600e.tar.bz2
shiftos_thereturn-45c587b3a656135fec9c91566fa5f817ddfc600e.zip
Localize BIOS screen.
Diffstat (limited to 'ShiftOS.WinForms/MainMenu')
-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)