From fefe0fa0a16e1078b1b5c3097ad92d1a53e78470 Mon Sep 17 00:00:00 2001 From: "Jake.Stine" Date: Mon, 17 Jan 2011 16:52:45 +0000 Subject: [PATCH] i18n: moved a couple more messages to the pcsx2_tertiary pot file. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4234 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/Dialogs/SysConfigDialog.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pcsx2/gui/Dialogs/SysConfigDialog.cpp b/pcsx2/gui/Dialogs/SysConfigDialog.cpp index f3b267281e..c95751773b 100644 --- a/pcsx2/gui/Dialogs/SysConfigDialog.cpp +++ b/pcsx2/gui/Dialogs/SysConfigDialog.cpp @@ -34,7 +34,7 @@ static void CheckHacksOverrides() wxDialogWithHelpers dialog( wxFindWindowByName( L"Dialog:" + Dialogs::SysConfigDialog::GetNameStatic() ), _("Config Overrides Warning") ); - dialog += dialog.Text( pxE("!Panel:HasHacksOverrides", + dialog += dialog.Text( pxEt("!Panel:HasHacksOverrides", L"Warning! You are running PCSX2 with command line options that override your configured settings. " L"These command line options will not be reflected in the Settings dialog, and will be disabled " L"if you apply any changes here." @@ -54,7 +54,7 @@ static void CheckPluginsOverrides() wxDialogWithHelpers dialog( NULL, _("Components Overrides Warning") ); - dialog += dialog.Text( pxE("!Panel:HasPluginsOverrides", + dialog += dialog.Text( pxEt("!Panel:HasPluginsOverrides", L"Warning! You are running PCSX2 with command line options that override your configured plugin and/or folder settings. " L"These command line options will not be reflected in the settings dialog, and will be disabled " L"when you apply settings changes here." @@ -110,7 +110,7 @@ void Dialogs::SysConfigDialog::AddPresetsControl() wxDefaultPosition, wxDefaultSize, wxHORIZONTAL /*| wxSL_AUTOTICKS | wxSL_LABELS */); m_slider_presets->SetToolTip( - pxE( "!Notice:Tooltip:Presets:Slider", + pxEt( "!Notice:Tooltip:Presets:Slider", L"The Presets apply speed hacks, some recompiler options and some game fixes known to boost speed.\n" L"Known important game fixes ('Patches') will be applied automatically.\n\n" L"Presets info:\n" @@ -122,9 +122,9 @@ void Dialogs::SysConfigDialog::AddPresetsControl() ); m_slider_presets->Enable(g_Conf->EnablePresets); - m_check_presets = new pxCheckBox( this, pxE("!Panel:", L"Preset:"), 0); + m_check_presets = new pxCheckBox( this, _("Preset:"), 0); m_check_presets->SetToolTip( - pxE( "!Notice:Tooltip:Presets:Checkbox", + pxEt( "!Notice:Tooltip:Presets:Checkbox", L"The Presets apply speed hacks, some recompiler options and some game fixes known to boost speed.\n" L"Known important game fixes ('Patches') will be applied automatically.\n\n" //This creates nested macros = not working. Un/comment manually if needed.