Changed "Suspend" to "Pause", as per request.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4432 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-03-14 20:00:41 +00:00
parent 4f49eee767
commit b301b9a7e3
2 changed files with 4 additions and 4 deletions

View File

@ -570,7 +570,7 @@ void MainEmuFrame::ApplyCoreStatus()
if( !CoreThread.IsClosing() )
{
susres->Enable();
susres->SetText(_("Suspend"));
susres->SetText(_("Pause"));
susres->SetHelp(_("Safely pauses emulation and preserves the PS2 state."));
}
else
@ -583,7 +583,7 @@ void MainEmuFrame::ApplyCoreStatus()
}
else
{
susres->SetText(_("Suspend/Resume"));
susres->SetText(_("Pause/Resume"));
susres->SetHelp(_("No emulation state is active; cannot suspend or resume."));
}
}

View File

@ -43,7 +43,7 @@ Panels::GSWindowSettingsPanel::GSWindowSettingsPanel( wxWindow* parent )
m_check_SizeLock = new pxCheckBox( this, _("Disable window resize border") );
m_check_HideMouse = new pxCheckBox( this, _("Always hide mouse cursor") );
m_check_CloseGS = new pxCheckBox( this, _("Hide window on suspend") );
m_check_CloseGS = new pxCheckBox( this, _("Hide window when paused") );
m_check_Fullscreen = new pxCheckBox( this, _("Default to fullscreen mode on open") );
m_check_VsyncEnable = new pxCheckBox( this, _("Wait for Vsync on refresh") );
m_check_ManagedVsync = new pxCheckBox( this, _("Dynamically toggle Vsync depending on frame rate (read tooltip!)") );
@ -82,7 +82,7 @@ Panels::GSWindowSettingsPanel::GSWindowSettingsPanel( wxWindow* parent )
*/
m_check_CloseGS->SetToolTip( pxEt( "!ContextTip:Window:HideGS",
L"Completely closes the often large and bulky GS window when pressing "
L"ESC or suspending the emulator."
L"ESC or pausing the emulator."
) );
// ----------------------------------------------------------------------------