From ad7e563e242c9e2b19cf47e10391203a6daba534 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 12 Jul 2021 09:02:04 +0200 Subject: [PATCH] Do not translate something similar to a proper noun --- eeschema/sch_plugins/altium/sch_altium_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp index c7f870fa1c..eec91f0ae4 100644 --- a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp +++ b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp @@ -1885,7 +1885,7 @@ void SCH_ALTIUM_PLUGIN::ParsePort( const ASCH_PORT& aElem ) if( isHarness ) { - wxString name = _( "HARNESS: " ) + aElem.name; + wxString name = wxT( "HARNESS: " ) + aElem.name; if( aElem.harnessType != aElem.name ) name += wxString::Format( wxT( " (%s)" ), aElem.harnessType );