Console-gui: Update descriptions.

Add Input to recording. Lowercase to uppercase words.
This commit is contained in:
RedDevilus 2020-09-02 18:23:44 +02:00 committed by lightningterror
parent e079604c48
commit 043832abdf
4 changed files with 8 additions and 8 deletions

View File

@ -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")
},

View File

@ -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,

View File

@ -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"));

View File

@ -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.")));
}