PCB Search: fix untranslated string

This commit is contained in:
Mike Williams 2022-12-13 16:33:08 -05:00
parent 4984a8ab87
commit eb10d7d1d8
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ wxString NETS_SEARCH_HANDLER::GetResultCell( int aRow, int aCol )
if( net->GetNetCode() == 0 )
{
if( aCol == 0 )
return wxT( "No Net" );
return _( "No Net" );
else if( aCol == 1 )
return wxT( "" );
}