7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-11 11:20:09 +00:00

Fix tooltip for Fill all vias.

This commit is contained in:
Alex Shvartzkop 2024-12-31 05:01:26 +05:00
parent fbbb642c0c
commit c4091fc7ad
3 changed files with 3 additions and 3 deletions

View File

@ -162,7 +162,7 @@ CLI::PCB_EXPORT_3D_COMMAND::PCB_EXPORT_3D_COMMAND( const std::string& aNa
.flag();
m_argParser.add_argument( ARG_FILL_ALL_VIAS )
.help( UTF8STDSTR( _( "Don't cut via holes in copper layers." ) ) )
.help( UTF8STDSTR( _( "Don't cut via holes in conductor layers." ) ) )
.flag();
m_argParser.add_argument( ARG_MIN_DISTANCE )

View File

@ -140,7 +140,7 @@ DIALOG_EXPORT_STEP_BASE::DIALOG_EXPORT_STEP_BASE( wxWindow* parent, wxWindowID i
sbConductorOptions->Add( m_cbFuseShapes, 0, wxBOTTOM|wxRIGHT|wxLEFT, 5 );
m_cbFillAllVias = new wxCheckBox( sbConductorOptions->GetStaticBox(), wxID_ANY, _("Fill all vias"), wxDefaultPosition, wxDefaultSize, 0 );
m_cbFillAllVias->SetToolTip( _("Don't cut via holes in copper layers.") );
m_cbFillAllVias->SetToolTip( _("Don't cut via holes in conductor layers.") );
sbConductorOptions->Add( m_cbFillAllVias, 0, wxBOTTOM|wxRIGHT|wxLEFT, 5 );

View File

@ -1559,7 +1559,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Don&apos;t cut via holes in copper layers.</property>
<property name="tooltip">Don&apos;t cut via holes in conductor layers.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>