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:
refraction 2011-02-22 19:24:17 +00:00
parent 1b909d7a30
commit f205fa09af
3 changed files with 5 additions and 5 deletions

View File

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

View File

@ -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( ) )

View File

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