mirror of https://github.com/PCSX2/pcsx2.git
Corrected a couple of English descrepancies as pointed out in Issue 952. Noting SuperVU is correct. sVU doesn't mean it should be superVU, it just looks nicer as sVU than SVU, especially when coding.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4340 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
1b909d7a30
commit
f205fa09af
|
@ -137,7 +137,7 @@ void Panels::BiosSelectorPanel::Apply()
|
|||
.SetDiagMsg(L"User did not specify a valid BIOS selection.")
|
||||
.SetUserMsg( pxE( "!Notice:BIOS:InvalidSelection",
|
||||
L"Please select a valid BIOS. If you are unable to make a valid selection "
|
||||
L"then press cancel to close the Configuration panel."
|
||||
L"then press Cancel to close the Configuration panel."
|
||||
) );
|
||||
}
|
||||
|
||||
|
|
|
@ -363,9 +363,9 @@ public:
|
|||
if( dest.IsPresent && dest.IsFormatted )
|
||||
{
|
||||
pxsFmt( pxE( "!Notice:Mcd:Overwrite",
|
||||
L"This will copy the contents of the memory card in slot %u over the memory card in slot %u. "
|
||||
L"All data on the target slot will be lost. Are you sure?" ),
|
||||
src.Slot, dest.Slot
|
||||
L"This will copy the entire contents of the memory card in slot %u to the memory card in slot %u. "
|
||||
L"All data on the memory card in slot %u will be lost. Are you sure?" ),
|
||||
src.Slot, dest.Slot, dest.Slot
|
||||
);
|
||||
|
||||
//if( !Msgbox::OkCancel( ) )
|
||||
|
|
|
@ -457,7 +457,7 @@ static wxString GetApplyFailedMsg()
|
|||
return pxsFmt( pxE( "!Notice:PluginSelector:ApplyFailed",
|
||||
L"All plugins must have valid selections for %s to run. If you are unable to make "
|
||||
L"a valid selection due to missing plugins or an incomplete install of %s, then "
|
||||
L"press cancel to close the Configuration panel."
|
||||
L"press Cancel to close the Configuration panel."
|
||||
), pxGetAppName().c_str(), pxGetAppName().c_str() );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue