From 4146a74bb771bb539261dac3edcb7884db370232 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 3 Feb 2024 19:31:37 +0300 Subject: [PATCH] Make more strings translatable in PCB grid settings. --- common/dialogs/panel_grid_settings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/dialogs/panel_grid_settings.cpp b/common/dialogs/panel_grid_settings.cpp index 8b708523f5..cbff4636da 100644 --- a/common/dialogs/panel_grid_settings.cpp +++ b/common/dialogs/panel_grid_settings.cpp @@ -50,8 +50,8 @@ PANEL_GRID_SETTINGS::PANEL_GRID_SETTINGS( wxWindow* aParent, UNITS_PROVIDER* aUn if( m_frameType == FRAME_PCB_EDITOR || m_frameType == FRAME_FOOTPRINT_EDITOR ) { - m_checkGridOverrideConnected->SetLabel( wxT( "Footprints/pads:" ) ); - m_checkGridOverrideWires->SetLabel( wxT( "Tracks:" ) ); + m_checkGridOverrideConnected->SetLabel( _( "Footprints/pads:" ) ); + m_checkGridOverrideWires->SetLabel( _( "Tracks:" ) ); } else {