From a83042d5c0c105a21c5f7c879d3ba94620d75ebe Mon Sep 17 00:00:00 2001 From: Akash Date: Thu, 17 Nov 2016 21:00:35 +0530 Subject: [PATCH] PCSX2-WX: Update strings in Language dialog --- pcsx2/gui/Dialogs/SysConfigDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/gui/Dialogs/SysConfigDialog.cpp b/pcsx2/gui/Dialogs/SysConfigDialog.cpp index 7ece2cbf6..d1c2c2eef 100644 --- a/pcsx2/gui/Dialogs/SysConfigDialog.cpp +++ b/pcsx2/gui/Dialogs/SysConfigDialog.cpp @@ -275,13 +275,13 @@ Dialogs::InterfaceConfigDialog::InterfaceConfigDialog(wxWindow *parent) } Dialogs::InterfaceLanguageDialog::InterfaceLanguageDialog(wxWindow* parent) - : BaseConfigurationDialog(parent, _("Language selector"), 400) + : BaseConfigurationDialog(parent, _("Language Selector"), 400) { *this += 5; // Keep this in English - same as the menu item. - *this += Heading(L"New language will affect newly opened windows.\n"); - *this += Heading(L"Full change will happen after restarting PCSX2."); + *this += Heading(L"Language switch will only affect newly opened windows.\n"); + *this += Heading(L"Full change will not apply until PCSX2 is restarted."); *this += new Panels::LanguageSelectionPanel(this, false) | StdCenter(); AddOkCancel();