Browse Source

Fix two string issues

Comp -> Compatible
Update string reference to changed string
6.0.7
Seth Hillbrand 4 years ago
parent
commit
a699cccaaf
  1. 2
      kicad/pcm/dialogs/panel_packages_view_base.cpp
  2. 2
      kicad/pcm/dialogs/panel_packages_view_base.fbp
  3. 2
      pcbnew/dialogs/dialog_board_reannotate.cpp

2
kicad/pcm/dialogs/panel_packages_view_base.cpp

@ -82,7 +82,7 @@ PANEL_PACKAGES_VIEW_BASE::PANEL_PACKAGES_VIEW_BASE( wxWindow* parent, wxWindowID
m_gridVersions->SetColLabelValue( 0, _("Version") );
m_gridVersions->SetColLabelValue( 1, _("Download Size") );
m_gridVersions->SetColLabelValue( 2, _("Install Size") );
m_gridVersions->SetColLabelValue( 3, _("Comp") );
m_gridVersions->SetColLabelValue( 3, _("Compatible") );
m_gridVersions->SetColLabelValue( 4, _("Status") );
m_gridVersions->SetColLabelAlignment( wxALIGN_CENTER, wxALIGN_CENTER );

2
kicad/pcm/dialogs/panel_packages_view_base.fbp

@ -522,7 +522,7 @@
<property name="close_button">1</property>
<property name="col_label_horiz_alignment">wxALIGN_CENTER</property>
<property name="col_label_size">22</property>
<property name="col_label_values">&quot;Version&quot; &quot;Download Size&quot; &quot;Install Size&quot; &quot;Comp&quot; &quot;Status&quot;</property>
<property name="col_label_values">&quot;Version&quot; &quot;Download Size&quot; &quot;Install Size&quot; &quot;Compatible&quot; &quot;Status&quot;</property>
<property name="col_label_vert_alignment">wxALIGN_CENTER</property>
<property name="cols">5</property>
<property name="column_sizes"></property>

2
pcbnew/dialogs/dialog_board_reannotate.cpp

@ -600,7 +600,7 @@ bool DIALOG_BOARD_REANNOTATE::ReannotateBoard()
{
message.Printf(
_( "\nPCB has %d empty or invalid reference designations."
"\nRecommend running DRC with 'Test footprints against schematic' checked.\n" ),
"\nRecommend running DRC with 'Test for parity between PCB and schematic' checked.\n" ),
(int) BadRefDes.size() );
for( const RefDesInfo& mod : BadRefDes )

Loading…
Cancel
Save