From f205fa09afce669665ec8c8c3783e5565b32ac00 Mon Sep 17 00:00:00 2001 From: refraction Date: Tue, 22 Feb 2011 19:24:17 +0000 Subject: [PATCH] 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 --- pcsx2/gui/Panels/BiosSelectorPanel.cpp | 2 +- pcsx2/gui/Panels/MemoryCardListPanel.cpp | 6 +++--- pcsx2/gui/Panels/PluginSelectorPanel.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pcsx2/gui/Panels/BiosSelectorPanel.cpp b/pcsx2/gui/Panels/BiosSelectorPanel.cpp index 9294d50ea0..a5133b7c6f 100644 --- a/pcsx2/gui/Panels/BiosSelectorPanel.cpp +++ b/pcsx2/gui/Panels/BiosSelectorPanel.cpp @@ -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." ) ); } diff --git a/pcsx2/gui/Panels/MemoryCardListPanel.cpp b/pcsx2/gui/Panels/MemoryCardListPanel.cpp index 02cbd9c316..6230ce0413 100644 --- a/pcsx2/gui/Panels/MemoryCardListPanel.cpp +++ b/pcsx2/gui/Panels/MemoryCardListPanel.cpp @@ -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( ) ) diff --git a/pcsx2/gui/Panels/PluginSelectorPanel.cpp b/pcsx2/gui/Panels/PluginSelectorPanel.cpp index b008003da9..f781a2a7af 100644 --- a/pcsx2/gui/Panels/PluginSelectorPanel.cpp +++ b/pcsx2/gui/Panels/PluginSelectorPanel.cpp @@ -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() ); }