mirror of https://github.com/PCSX2/pcsx2.git
Console-gui: Update descriptions.
Add Input to recording. Lowercase to uppercase words.
This commit is contained in:
parent
e079604c48
commit
043832abdf
|
@ -123,7 +123,7 @@ TLD_sysoutConsole = {
|
||||||
|
|
||||||
#ifndef DISABLE_RECORDING
|
#ifndef DISABLE_RECORDING
|
||||||
,TLD_recordingConsole = {
|
,TLD_recordingConsole = {
|
||||||
L"Recording", L"Recording Console",
|
L"Input Recording", L"Input Recording Console",
|
||||||
pxDt("Shows recording related logs and information")
|
pxDt("Shows recording related logs and information")
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,7 @@ enum MenuIdentifiers
|
||||||
MenuId_Capture_Screenshot,
|
MenuId_Capture_Screenshot,
|
||||||
|
|
||||||
#ifndef DISABLE_RECORDING
|
#ifndef DISABLE_RECORDING
|
||||||
// Recording Subsection
|
// Input Recording Subsection
|
||||||
MenuId_Recording_New,
|
MenuId_Recording_New,
|
||||||
MenuId_Recording_Play,
|
MenuId_Recording_Play,
|
||||||
MenuId_Recording_Stop,
|
MenuId_Recording_Stop,
|
||||||
|
|
|
@ -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."),
|
menuFontSizes.Append( MenuId_FontSize_Small, _("&Small"), _t("Fits a lot of log in a microcosmically small area."),
|
||||||
wxITEM_RADIO )->Check( options.FontSize == 7 );
|
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 );
|
wxITEM_RADIO )->Check( options.FontSize == 8 );
|
||||||
menuFontSizes.Append( MenuId_FontSize_Large, _("&Large"), _t("Its nice and readable."),
|
menuFontSizes.Append( MenuId_FontSize_Large, _("&Large"), _t("Its nice and readable."),
|
||||||
wxITEM_RADIO )->Check( options.FontSize == 10 );
|
wxITEM_RADIO )->Check( options.FontSize == 10 );
|
||||||
|
@ -429,8 +429,8 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A
|
||||||
wxITEM_RADIO )->Check( options.FontSize == 12 );
|
wxITEM_RADIO )->Check( options.FontSize == 12 );
|
||||||
|
|
||||||
menuFontSizes.AppendSeparator();
|
menuFontSizes.AppendSeparator();
|
||||||
menuFontSizes.Append( MenuId_ColorScheme_Light, _("&Light theme"), _t("Default soft-tone 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 );
|
menuFontSizes.Append( MenuId_ColorScheme_Dark, _("&Dark Theme"), _t("Modern dark color scheme."), wxITEM_RADIO );
|
||||||
|
|
||||||
// The "Always on Top" option currently doesn't work
|
// The "Always on Top" option currently doesn't work
|
||||||
//menuAppear.AppendSeparator();
|
//menuAppear.AppendSeparator();
|
||||||
|
@ -468,8 +468,8 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A
|
||||||
}
|
}
|
||||||
|
|
||||||
menuSources.AppendSeparator();
|
menuSources.AppendSeparator();
|
||||||
menuSources.Append( MenuId_LogSource_EnableAll, _("&Enable all"), _("Enables 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_DisableAll, _("&Disable All"), _("Disables all log source filters.") );
|
||||||
menuSources.Append( MenuId_LogSource_SetDefault, _("&Restore Default"), _("Restore default source filters.") );
|
menuSources.Append( MenuId_LogSource_SetDefault, _("&Restore Default"), _("Restore default source filters.") );
|
||||||
|
|
||||||
pMenuBar->Append(&menuLog, _("&Log"));
|
pMenuBar->Append(&menuLog, _("&Log"));
|
||||||
|
|
|
@ -431,7 +431,7 @@ void MainEmuFrame::CreateConfigMenu()
|
||||||
|
|
||||||
m_menuConfig.AppendSeparator();
|
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..."),
|
m_menuConfig.Append(MenuId_Config_ResetAll, _("C&lear All Settings..."),
|
||||||
AddAppName(_("Clears all %s settings and re-runs the startup wizard.")));
|
AddAppName(_("Clears all %s settings and re-runs the startup wizard.")));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue