Fix two string issues
Comp -> Compatible Update string reference to changed string
This commit is contained in:
parent
4df25edb3d
commit
a699cccaaf
kicad/pcm/dialogs
pcbnew/dialogs
|
@ -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 );
|
||||
|
||||
|
|
|
@ -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">"Version" "Download Size" "Install Size" "Comp" "Status"</property>
|
||||
<property name="col_label_values">"Version" "Download Size" "Install Size" "Compatible" "Status"</property>
|
||||
<property name="col_label_vert_alignment">wxALIGN_CENTER</property>
|
||||
<property name="cols">5</property>
|
||||
<property name="column_sizes"></property>
|
||||
|
|
|
@ -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…
Reference in New Issue