GUI: Keyboard Shortcuts Strings

- This will add extra hotkeys to the GUI. You can look up https://wiki.pcsx2.net/Hotkeys for all of them (not everything is added from there)
This commit is contained in:
RedDevilus 2020-12-10 23:42:32 +01:00 committed by refractionpcsx2
parent d841f27b25
commit 5583a75eac
2 changed files with 6 additions and 6 deletions

View File

@ -108,7 +108,7 @@ Panels::GSWindowSettingsPanel::GSWindowSettingsPanel( wxWindow* parent )
//s_AspectRatio.AddGrowableCol( 0 ); //s_AspectRatio.AddGrowableCol( 0 );
s_AspectRatio.AddGrowableCol( 1 ); s_AspectRatio.AddGrowableCol( 1 );
s_AspectRatio += Label(_("Aspect Ratio:")) | pxMiddle; s_AspectRatio += Label(_("Aspect Ratio (F6):")) | pxMiddle;
s_AspectRatio += m_combo_AspectRatio | pxAlignRight; s_AspectRatio += m_combo_AspectRatio | pxAlignRight;
s_AspectRatio += Label(_("FMV Aspect Ratio Override:")) | pxMiddle; s_AspectRatio += Label(_("FMV Aspect Ratio Override:")) | pxMiddle;
s_AspectRatio += m_combo_FMVAspectRatioSwitch | pxAlignRight; s_AspectRatio += m_combo_FMVAspectRatioSwitch | pxAlignRight;

View File

@ -29,8 +29,8 @@ using namespace pxSizerFlags;
Panels::FramelimiterPanel::FramelimiterPanel( wxWindow* parent ) Panels::FramelimiterPanel::FramelimiterPanel( wxWindow* parent )
: BaseApplicableConfigPanel_SpecificConfig( parent ) : BaseApplicableConfigPanel_SpecificConfig( parent )
{ {
m_check_LimiterDisable = new pxCheckBox( this, _("Disable Framelimiting"), m_check_LimiterDisable = new pxCheckBox( this, _("Disable Framelimiting (F4)"),
_("Uncaps FPS. Toggle in-game by pressing F4. Useful for running benchmarks." ) ); _("Uncaps FPS. Useful for running benchmarks." ) );
m_check_LimiterDisable->SetToolTip( pxEt( L"Note that when Framelimiting is disabled, Turbo and SlowMotion modes will not be available either." m_check_LimiterDisable->SetToolTip( pxEt( L"Note that when Framelimiting is disabled, Turbo and SlowMotion modes will not be available either."
) ); ) );
@ -60,13 +60,13 @@ Panels::FramelimiterPanel::FramelimiterPanel( wxWindow* parent )
s_spins += Label(L"%") | StdExpand(); s_spins += Label(L"%") | StdExpand();
s_spins += 5; s_spins += 5;
s_spins += Label(_("Slow Motion Adjust:")) | StdExpand(); s_spins += Label(_("Slow Motion Adjust (Shift + Tab):")) | StdExpand();
s_spins += 5; s_spins += 5;
s_spins += m_spin_SlomoPct | pxBorder(wxTOP, 3); s_spins += m_spin_SlomoPct | pxBorder(wxTOP, 3);
s_spins += Label(L"%") | StdExpand(); s_spins += Label(L"%") | StdExpand();
s_spins += 5; s_spins += 5;
s_spins += Label(_("Turbo Adjust:")) | StdExpand(); s_spins += Label(_("Turbo Adjust (Tab):")) | StdExpand();
s_spins += 5; s_spins += 5;
s_spins += m_spin_TurboPct | pxBorder(wxTOP, 3); s_spins += m_spin_TurboPct | pxBorder(wxTOP, 3);
s_spins += Label(L"%" ) | StdExpand(); s_spins += Label(L"%" ) | StdExpand();
@ -181,7 +181,7 @@ Panels::FrameSkipPanel::FrameSkipPanel( wxWindow* parent )
), ),
RadioPanelItem( RadioPanelItem(
_("Constant skipping"), _("Constant skipping (Shift + F4)"),
wxEmptyString, wxEmptyString,
_("Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping.") _("Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping.")
), ),