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