Fix some strings from V7's string freeze.

This commit is contained in:
Jeff Young 2023-01-21 13:40:39 +00:00
parent 6bc89ee180
commit 95fb3825bd
7 changed files with 25 additions and 25 deletions

View File

@ -166,7 +166,7 @@ PANEL_SYM_LIB_TABLE_BASE::PANEL_SYM_LIB_TABLE_BASE( wxWindow* parent, wxWindowID
bMainSizer->Add( 0, 5, 0, wxEXPAND, 5 ); bMainSizer->Add( 0, 5, 0, wxEXPAND, 5 );
wxStaticText* stPathsLabel; wxStaticText* stPathsLabel;
stPathsLabel = new wxStaticText( this, wxID_ANY, _("Path Substitutions:"), wxDefaultPosition, wxDefaultSize, 0 ); stPathsLabel = new wxStaticText( this, wxID_ANY, _("Available path substitutions:"), wxDefaultPosition, wxDefaultSize, 0 );
stPathsLabel->Wrap( -1 ); stPathsLabel->Wrap( -1 );
bMainSizer->Add( stPathsLabel, 0, wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 8 ); bMainSizer->Add( stPathsLabel, 0, wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 8 );

View File

@ -936,7 +936,7 @@
<property name="gripper">0</property> <property name="gripper">0</property>
<property name="hidden">0</property> <property name="hidden">0</property>
<property name="id">wxID_ANY</property> <property name="id">wxID_ANY</property>
<property name="label">Path Substitutions:</property> <property name="label">Available path substitutions:</property>
<property name="markup">0</property> <property name="markup">0</property>
<property name="max_size"></property> <property name="max_size"></property>
<property name="maximize_button">0</property> <property name="maximize_button">0</property>

View File

@ -154,7 +154,7 @@ PANEL_FP_LIB_TABLE_BASE::PANEL_FP_LIB_TABLE_BASE( wxWindow* parent, wxWindowID i
bMainSizer->Add( bButtonsSizer, 0, wxEXPAND|wxALL, 8 ); bMainSizer->Add( bButtonsSizer, 0, wxEXPAND|wxALL, 8 );
wxStaticText* stPathsLabel; wxStaticText* stPathsLabel;
stPathsLabel = new wxStaticText( this, wxID_ANY, _("Path Substitutions:"), wxDefaultPosition, wxDefaultSize, 0 ); stPathsLabel = new wxStaticText( this, wxID_ANY, _("Available path substitutions:"), wxDefaultPosition, wxDefaultSize, 0 );
stPathsLabel->Wrap( -1 ); stPathsLabel->Wrap( -1 );
bMainSizer->Add( stPathsLabel, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 8 ); bMainSizer->Add( stPathsLabel, 0, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 8 );

View File

@ -830,7 +830,7 @@
<property name="gripper">0</property> <property name="gripper">0</property>
<property name="hidden">0</property> <property name="hidden">0</property>
<property name="id">wxID_ANY</property> <property name="id">wxID_ANY</property>
<property name="label">Path Substitutions:</property> <property name="label">Available path substitutions:</property>
<property name="markup">0</property> <property name="markup">0</property>
<property name="max_size"></property> <property name="max_size"></property>
<property name="maximize_button">0</property> <property name="maximize_button">0</property>

View File

@ -20,9 +20,10 @@ PANEL_SETUP_TRACKS_AND_VIAS_BASE::PANEL_SETUP_TRACKS_AND_VIAS_BASE( wxWindow* pa
wxBoxSizer* bSizerTracks; wxBoxSizer* bSizerTracks;
bSizerTracks = new wxBoxSizer( wxVERTICAL ); bSizerTracks = new wxBoxSizer( wxVERTICAL );
m_tracksLabel = new wxStaticText( this, wxID_ANY, _("Tracks"), wxDefaultPosition, wxDefaultSize, 0 ); wxStaticText* stTracksLabel;
m_tracksLabel->Wrap( -1 ); stTracksLabel = new wxStaticText( this, wxID_ANY, _("Tracks:"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTracks->Add( m_tracksLabel, 0, wxALL, 5 ); stTracksLabel->Wrap( -1 );
bSizerTracks->Add( stTracksLabel, 0, wxALL, 5 );
m_trackWidthsGrid = new WX_GRID( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); m_trackWidthsGrid = new WX_GRID( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
@ -83,9 +84,10 @@ PANEL_SETUP_TRACKS_AND_VIAS_BASE::PANEL_SETUP_TRACKS_AND_VIAS_BASE( wxWindow* pa
wxBoxSizer* bSizerVias; wxBoxSizer* bSizerVias;
bSizerVias = new wxBoxSizer( wxVERTICAL ); bSizerVias = new wxBoxSizer( wxVERTICAL );
m_viasLabel = new wxStaticText( this, wxID_ANY, _("Vias"), wxDefaultPosition, wxDefaultSize, 0 ); wxStaticText* stViasLabel;
m_viasLabel->Wrap( -1 ); stViasLabel = new wxStaticText( this, wxID_ANY, _("Vias:"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerVias->Add( m_viasLabel, 0, wxALL, 5 ); stViasLabel->Wrap( -1 );
bSizerVias->Add( stViasLabel, 0, wxALL, 5 );
m_viaSizesGrid = new WX_GRID( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); m_viaSizesGrid = new WX_GRID( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
@ -147,9 +149,10 @@ PANEL_SETUP_TRACKS_AND_VIAS_BASE::PANEL_SETUP_TRACKS_AND_VIAS_BASE( wxWindow* pa
wxBoxSizer* bSizerDiffPairs; wxBoxSizer* bSizerDiffPairs;
bSizerDiffPairs = new wxBoxSizer( wxVERTICAL ); bSizerDiffPairs = new wxBoxSizer( wxVERTICAL );
m_diffPairsLabel = new wxStaticText( this, wxID_ANY, _("Differential Pairs"), wxDefaultPosition, wxDefaultSize, 0 ); wxStaticText* stDiffPairsLabel;
m_diffPairsLabel->Wrap( -1 ); stDiffPairsLabel = new wxStaticText( this, wxID_ANY, _("Differential pairs:"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerDiffPairs->Add( m_diffPairsLabel, 0, wxALL, 5 ); stDiffPairsLabel->Wrap( -1 );
bSizerDiffPairs->Add( stDiffPairsLabel, 0, wxALL, 5 );
m_diffPairsGrid = new WX_GRID( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 ); m_diffPairsGrid = new WX_GRID( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );

View File

@ -98,7 +98,7 @@
<property name="gripper">0</property> <property name="gripper">0</property>
<property name="hidden">0</property> <property name="hidden">0</property>
<property name="id">wxID_ANY</property> <property name="id">wxID_ANY</property>
<property name="label">Tracks</property> <property name="label">Tracks:</property>
<property name="markup">0</property> <property name="markup">0</property>
<property name="max_size"></property> <property name="max_size"></property>
<property name="maximize_button">0</property> <property name="maximize_button">0</property>
@ -107,11 +107,11 @@
<property name="minimize_button">0</property> <property name="minimize_button">0</property>
<property name="minimum_size"></property> <property name="minimum_size"></property>
<property name="moveable">1</property> <property name="moveable">1</property>
<property name="name">m_tracksLabel</property> <property name="name">stTracksLabel</property>
<property name="pane_border">1</property> <property name="pane_border">1</property>
<property name="pane_position"></property> <property name="pane_position"></property>
<property name="pane_size"></property> <property name="pane_size"></property>
<property name="permission">protected</property> <property name="permission">none</property>
<property name="pin_button">1</property> <property name="pin_button">1</property>
<property name="pos"></property> <property name="pos"></property>
<property name="resize">Resizable</property> <property name="resize">Resizable</property>
@ -501,7 +501,7 @@
<property name="gripper">0</property> <property name="gripper">0</property>
<property name="hidden">0</property> <property name="hidden">0</property>
<property name="id">wxID_ANY</property> <property name="id">wxID_ANY</property>
<property name="label">Vias</property> <property name="label">Vias:</property>
<property name="markup">0</property> <property name="markup">0</property>
<property name="max_size"></property> <property name="max_size"></property>
<property name="maximize_button">0</property> <property name="maximize_button">0</property>
@ -510,11 +510,11 @@
<property name="minimize_button">0</property> <property name="minimize_button">0</property>
<property name="minimum_size"></property> <property name="minimum_size"></property>
<property name="moveable">1</property> <property name="moveable">1</property>
<property name="name">m_viasLabel</property> <property name="name">stViasLabel</property>
<property name="pane_border">1</property> <property name="pane_border">1</property>
<property name="pane_position"></property> <property name="pane_position"></property>
<property name="pane_size"></property> <property name="pane_size"></property>
<property name="permission">protected</property> <property name="permission">none</property>
<property name="pin_button">1</property> <property name="pin_button">1</property>
<property name="pos"></property> <property name="pos"></property>
<property name="resize">Resizable</property> <property name="resize">Resizable</property>
@ -904,7 +904,7 @@
<property name="gripper">0</property> <property name="gripper">0</property>
<property name="hidden">0</property> <property name="hidden">0</property>
<property name="id">wxID_ANY</property> <property name="id">wxID_ANY</property>
<property name="label">Differential Pairs</property> <property name="label">Differential pairs:</property>
<property name="markup">0</property> <property name="markup">0</property>
<property name="max_size"></property> <property name="max_size"></property>
<property name="maximize_button">0</property> <property name="maximize_button">0</property>
@ -913,11 +913,11 @@
<property name="minimize_button">0</property> <property name="minimize_button">0</property>
<property name="minimum_size"></property> <property name="minimum_size"></property>
<property name="moveable">1</property> <property name="moveable">1</property>
<property name="name">m_diffPairsLabel</property> <property name="name">stDiffPairsLabel</property>
<property name="pane_border">1</property> <property name="pane_border">1</property>
<property name="pane_position"></property> <property name="pane_position"></property>
<property name="pane_size"></property> <property name="pane_size"></property>
<property name="permission">protected</property> <property name="permission">none</property>
<property name="pin_button">1</property> <property name="pin_button">1</property>
<property name="pos"></property> <property name="pos"></property>
<property name="resize">Resizable</property> <property name="resize">Resizable</property>

View File

@ -38,17 +38,14 @@ class PANEL_SETUP_TRACKS_AND_VIAS_BASE : public wxPanel
private: private:
protected: protected:
wxStaticText* m_tracksLabel;
WX_GRID* m_trackWidthsGrid; WX_GRID* m_trackWidthsGrid;
STD_BITMAP_BUTTON* m_trackWidthsAddButton; STD_BITMAP_BUTTON* m_trackWidthsAddButton;
STD_BITMAP_BUTTON* m_trackWidthsSortButton; STD_BITMAP_BUTTON* m_trackWidthsSortButton;
STD_BITMAP_BUTTON* m_trackWidthsRemoveButton; STD_BITMAP_BUTTON* m_trackWidthsRemoveButton;
wxStaticText* m_viasLabel;
WX_GRID* m_viaSizesGrid; WX_GRID* m_viaSizesGrid;
STD_BITMAP_BUTTON* m_viaSizesAddButton; STD_BITMAP_BUTTON* m_viaSizesAddButton;
STD_BITMAP_BUTTON* m_viaSizesSortButton; STD_BITMAP_BUTTON* m_viaSizesSortButton;
STD_BITMAP_BUTTON* m_viaSizesRemoveButton; STD_BITMAP_BUTTON* m_viaSizesRemoveButton;
wxStaticText* m_diffPairsLabel;
WX_GRID* m_diffPairsGrid; WX_GRID* m_diffPairsGrid;
STD_BITMAP_BUTTON* m_diffPairsAddButton; STD_BITMAP_BUTTON* m_diffPairsAddButton;
STD_BITMAP_BUTTON* m_diffPairsSortButton; STD_BITMAP_BUTTON* m_diffPairsSortButton;