Add i18n flag to appearance controls and selection filter
This commit is contained in:
parent
21bd1c0f00
commit
c8be87a654
|
@ -166,11 +166,11 @@ APPEARANCE_CONTROLS_BASE::APPEARANCE_CONTROLS_BASE( wxWindow* parent, wxWindowID
|
||||||
wxBoxSizer* bPresetsLabels;
|
wxBoxSizer* bPresetsLabels;
|
||||||
bPresetsLabels = new wxBoxSizer( wxHORIZONTAL );
|
bPresetsLabels = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
presetsLabel = new wxStaticText( this, wxID_ANY, _( "Presets:" ), wxDefaultPosition, wxDefaultSize, 0 );
|
presetsLabel = new wxStaticText( this, wxID_ANY, _("Presets:"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
presetsLabel->Wrap( -1 );
|
presetsLabel->Wrap( -1 );
|
||||||
bPresetsLabels->Add( presetsLabel, 1, wxRIGHT|wxLEFT, 2 );
|
bPresetsLabels->Add( presetsLabel, 1, wxRIGHT|wxLEFT, 2 );
|
||||||
|
|
||||||
presetsHotkey = new wxStaticText( this, wxID_ANY, wxT("(Ctrl+Tab)"), wxDefaultPosition, wxDefaultSize, 0 );
|
presetsHotkey = new wxStaticText( this, wxID_ANY, _("(Ctrl+Tab)"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
presetsHotkey->Wrap( -1 );
|
presetsHotkey->Wrap( -1 );
|
||||||
bPresetsLabels->Add( presetsHotkey, 0, wxRIGHT|wxLEFT, 2 );
|
bPresetsLabels->Add( presetsHotkey, 0, wxRIGHT|wxLEFT, 2 );
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<property name="first_id">1000</property>
|
<property name="first_id">1000</property>
|
||||||
<property name="help_provider">none</property>
|
<property name="help_provider">none</property>
|
||||||
<property name="indent_with_spaces"></property>
|
<property name="indent_with_spaces"></property>
|
||||||
<property name="internationalize">0</property>
|
<property name="internationalize">1</property>
|
||||||
<property name="name">Appearance Panel</property>
|
<property name="name">Appearance Panel</property>
|
||||||
<property name="namespace"></property>
|
<property name="namespace"></property>
|
||||||
<property name="path">.</property>
|
<property name="path">.</property>
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
#include <wx/artprov.h>
|
#include <wx/artprov.h>
|
||||||
#include <wx/xrc/xmlres.h>
|
#include <wx/xrc/xmlres.h>
|
||||||
|
#include <wx/intl.h>
|
||||||
class BITMAP_BUTTON;
|
class BITMAP_BUTTON;
|
||||||
class WX_GRID;
|
class WX_GRID;
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<property name="first_id">1000</property>
|
<property name="first_id">1000</property>
|
||||||
<property name="help_provider">none</property>
|
<property name="help_provider">none</property>
|
||||||
<property name="indent_with_spaces"></property>
|
<property name="indent_with_spaces"></property>
|
||||||
<property name="internationalize">0</property>
|
<property name="internationalize">1</property>
|
||||||
<property name="name">Selection Filter</property>
|
<property name="name">Selection Filter</property>
|
||||||
<property name="namespace"></property>
|
<property name="namespace"></property>
|
||||||
<property name="path">.</property>
|
<property name="path">.</property>
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
#include <wx/artprov.h>
|
#include <wx/artprov.h>
|
||||||
#include <wx/xrc/xmlres.h>
|
#include <wx/xrc/xmlres.h>
|
||||||
|
#include <wx/intl.h>
|
||||||
#include <wx/string.h>
|
#include <wx/string.h>
|
||||||
#include <wx/checkbox.h>
|
#include <wx/checkbox.h>
|
||||||
#include <wx/gdicmn.h>
|
#include <wx/gdicmn.h>
|
||||||
|
|
Loading…
Reference in New Issue