PCSX2-WX: Update strings in Language dialog

This commit is contained in:
Akash 2016-11-17 21:00:35 +05:30 committed by Jonathan Li
parent 83eb79c9d9
commit a83042d5c0
1 changed files with 3 additions and 3 deletions

View File

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