From 043832abdf393c42f1440dc9de514982f807fa75 Mon Sep 17 00:00:00 2001 From: RedDevilus Date: Wed, 2 Sep 2020 18:23:44 +0200 Subject: [PATCH] Console-gui: Update descriptions. Add Input to recording. Lowercase to uppercase words. --- pcsx2/SourceLog.cpp | 2 +- pcsx2/gui/App.h | 2 +- pcsx2/gui/ConsoleLogger.cpp | 10 +++++----- pcsx2/gui/MainFrame.cpp | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pcsx2/SourceLog.cpp b/pcsx2/SourceLog.cpp index 3d8a805bb3..483edbef5a 100644 --- a/pcsx2/SourceLog.cpp +++ b/pcsx2/SourceLog.cpp @@ -123,7 +123,7 @@ TLD_sysoutConsole = { #ifndef DISABLE_RECORDING ,TLD_recordingConsole = { - L"Recording", L"Recording Console", + L"Input Recording", L"Input Recording Console", pxDt("Shows recording related logs and information") }, diff --git a/pcsx2/gui/App.h b/pcsx2/gui/App.h index 946b2e1843..6f38f6e15a 100644 --- a/pcsx2/gui/App.h +++ b/pcsx2/gui/App.h @@ -194,7 +194,7 @@ enum MenuIdentifiers MenuId_Capture_Screenshot, #ifndef DISABLE_RECORDING - // Recording Subsection + // Input Recording Subsection MenuId_Recording_New, MenuId_Recording_Play, MenuId_Recording_Stop, diff --git a/pcsx2/gui/ConsoleLogger.cpp b/pcsx2/gui/ConsoleLogger.cpp index 60d29d056a..6469564a02 100644 --- a/pcsx2/gui/ConsoleLogger.cpp +++ b/pcsx2/gui/ConsoleLogger.cpp @@ -421,7 +421,7 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A menuFontSizes.Append( MenuId_FontSize_Small, _("&Small"), _t("Fits a lot of log in a microcosmically small area."), wxITEM_RADIO )->Check( options.FontSize == 7 ); - menuFontSizes.Append( MenuId_FontSize_Normal, _("&Normal font"),_t("It's what I use (the programmer guy)."), + menuFontSizes.Append( MenuId_FontSize_Normal, _("&Normal Font"),_t("It's what I use (the programmer guy)."), wxITEM_RADIO )->Check( options.FontSize == 8 ); menuFontSizes.Append( MenuId_FontSize_Large, _("&Large"), _t("Its nice and readable."), wxITEM_RADIO )->Check( options.FontSize == 10 ); @@ -429,8 +429,8 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A wxITEM_RADIO )->Check( options.FontSize == 12 ); menuFontSizes.AppendSeparator(); - menuFontSizes.Append( MenuId_ColorScheme_Light, _("&Light theme"), _t("Default soft-tone color scheme."), wxITEM_RADIO ); - menuFontSizes.Append( MenuId_ColorScheme_Dark, _("&Dark theme"), _t("Modern dark color scheme."), wxITEM_RADIO ); + menuFontSizes.Append( MenuId_ColorScheme_Light, _("&Light Theme"), _t("Default soft-tone color scheme."), wxITEM_RADIO ); + menuFontSizes.Append( MenuId_ColorScheme_Dark, _("&Dark Theme"), _t("Modern dark color scheme."), wxITEM_RADIO ); // The "Always on Top" option currently doesn't work //menuAppear.AppendSeparator(); @@ -468,8 +468,8 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A } menuSources.AppendSeparator(); - menuSources.Append( MenuId_LogSource_EnableAll, _("&Enable all"), _("Enables all log source filters.") ); - menuSources.Append( MenuId_LogSource_DisableAll, _("&Disable all"), _("Disables all log source filters.") ); + menuSources.Append( MenuId_LogSource_EnableAll, _("&Enable All"), _("Enables all log source filters.") ); + menuSources.Append( MenuId_LogSource_DisableAll, _("&Disable All"), _("Disables all log source filters.") ); menuSources.Append( MenuId_LogSource_SetDefault, _("&Restore Default"), _("Restore default source filters.") ); pMenuBar->Append(&menuLog, _("&Log")); diff --git a/pcsx2/gui/MainFrame.cpp b/pcsx2/gui/MainFrame.cpp index 6331169205..7eb65f82b6 100644 --- a/pcsx2/gui/MainFrame.cpp +++ b/pcsx2/gui/MainFrame.cpp @@ -431,7 +431,7 @@ void MainEmuFrame::CreateConfigMenu() m_menuConfig.AppendSeparator(); - m_menuConfig.Append(MenuId_ChangeLang, L"Change &language..." ); // Always in English + m_menuConfig.Append(MenuId_ChangeLang, L"Change &Language..." ); // Always in English m_menuConfig.Append(MenuId_Config_ResetAll, _("C&lear All Settings..."), AddAppName(_("Clears all %s settings and re-runs the startup wizard."))); }