aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ShiftOS.WinForms/MainMenu/Loading.cs19
-rw-r--r--ShiftOS.WinForms/Resources/strings_en.txt11
2 files changed, 28 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)
diff --git a/ShiftOS.WinForms/Resources/strings_en.txt b/ShiftOS.WinForms/Resources/strings_en.txt
index d3bbef5..9e17f11 100644
--- a/ShiftOS.WinForms/Resources/strings_en.txt
+++ b/ShiftOS.WinForms/Resources/strings_en.txt
@@ -241,4 +241,15 @@
"{FORMATEDITOR_ARGUMENT_LOWER}": "argument",
"{FORMATEDITOR_VALUE_LOWER}": "value",
"{FORMATEDITOR_ENTERSYNTAX}": "Enter syntax here",
+
+ //BIOS screen text
+ "{MISC_BIOSCOPYRIGHT}": "AMIBIOS (C) %year Australian Microtrends, Plc",
+ "{MISC_BIOSVERSION}": "Shiftsoft 480-L ACPI BIOS Revision 1002",
+ "{MISC_BIOSCPU}": "CPU : VTC 210-N %cores CPU 1.33GHz",
+ "{MISC_CLOCKSPEED}": " Speed : 1.337Ghz",
+ "{MISC_RUNSETUP}": "Press DEL to run Setup",
+ "{MISC_BBSPOPUP}": "Press <F8> for BBS POPUP",
+ "{MISC_RAMFREQ}": "DDR3 Frequency 1337MHz, Dual Channel, Linear Mode",
+ "{MISC_CHECKINGNVRAM}": "Checking NVRAM",
+ "{MISC_RAM}": "1337 MB OK",
} \ No newline at end of file