diff options
| author | Michael <[email protected]> | 2017-06-17 17:08:21 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-06-17 17:08:21 -0400 |
| commit | 44d80428b88db2d39d7e7e219d78da81cb8a68fd (patch) | |
| tree | 0d064df7740ed28b0a92e621a5e86d2696981d7c /ShiftOS.WinForms/MainMenu | |
| parent | 14efc1fb56c0f9232c3c6097da4f69870ec55bcd (diff) | |
| download | shiftos_thereturn-44d80428b88db2d39d7e7e219d78da81cb8a68fd.tar.gz shiftos_thereturn-44d80428b88db2d39d7e7e219d78da81cb8a68fd.tar.bz2 shiftos_thereturn-44d80428b88db2d39d7e7e219d78da81cb8a68fd.zip | |
fix some pong issues
Diffstat (limited to 'ShiftOS.WinForms/MainMenu')
| -rw-r--r-- | ShiftOS.WinForms/MainMenu/MainMenu.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ShiftOS.WinForms/MainMenu/MainMenu.cs b/ShiftOS.WinForms/MainMenu/MainMenu.cs index 7ace42a..f6bc833 100644 --- a/ShiftOS.WinForms/MainMenu/MainMenu.cs +++ b/ShiftOS.WinForms/MainMenu/MainMenu.cs @@ -47,7 +47,7 @@ namespace ShiftOS.WinForms.MainMenu flmenu.BringToFront(); flmenu.CenterParent(); currentMenu = flmenu; - CategoryText = "Main menu"; + CategoryText = Localization.Parse("{MAINMENU_TITLE}"); } public string CategoryText @@ -108,7 +108,7 @@ namespace ShiftOS.WinForms.MainMenu tickerreset.Start(); currentMenu = flmenu; - CategoryText = "Main menu"; + CategoryText = Localization.Parse("{MAINMENU_TITLE}"); } @@ -134,7 +134,7 @@ namespace ShiftOS.WinForms.MainMenu flcampaign.BringToFront(); flcampaign.CenterParent(); currentMenu = flcampaign; - CategoryText = "Campaign"; + CategoryText = Localization.Parse("{MAINMENU_CAMPAIGN}"); } @@ -161,7 +161,7 @@ namespace ShiftOS.WinForms.MainMenu pnloptions.BringToFront(); pnloptions.CenterParent(); currentMenu = pnloptions; - CategoryText = "Settings"; + CategoryText = Localization.Parse("{GEN_SETTINGS}"); } @@ -198,7 +198,7 @@ namespace ShiftOS.WinForms.MainMenu flmenu.BringToFront(); flmenu.CenterParent(); currentMenu = flmenu; - CategoryText = "Main menu"; + CategoryText = Localization.Parse("{MAINMENU_TITLE}"); } private void btncontinue_Click(object sender, EventArgs e) |
