From 68e23c92712a7b6e26dc179b47449e991d85a037 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Mon, 28 May 2018 14:47:05 +0100 Subject: [PATCH] Clean up some ERC error messages. Fixes: lp:1772297 * https://bugs.launchpad.net/kicad/+bug/1772297 (cherry picked from commit e98b6f6) --- eeschema/drc_erc_item.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/drc_erc_item.cpp b/eeschema/drc_erc_item.cpp index 282ebfe417..50fe69a9f5 100644 --- a/eeschema/drc_erc_item.cpp +++ b/eeschema/drc_erc_item.cpp @@ -41,7 +41,7 @@ wxString DRC_ITEM::GetErrorText() const case ERCE_DUPLICATE_SHEET_NAME: return wxString( _("Duplicate sheet names within a given sheet") ); case ERCE_PIN_NOT_CONNECTED: - return wxString( _("Pin not connected (and no connect symbol found on this pin)") ); + return wxString( _("Pin not connected (use a \"no connection\" flag to suppress this error)") ); case ERCE_PIN_NOT_DRIVEN: return wxString( _("Pin connected to some others pins but no pin to drive it") ); case ERCE_PIN_TO_PIN_WARNING: @@ -51,7 +51,7 @@ wxString DRC_ITEM::GetErrorText() const case ERCE_HIERACHICAL_LABEL: return wxString( _("Mismatch between hierarchical labels and pins sheets")); case ERCE_NOCONNECT_CONNECTED: - return wxString( _("A no connect symbol is connected to more than 1 pin")); + return wxString( _("A pin with a \"no connection\" flag is connected")); case ERCE_GLOBLABEL: return wxString( _("Global label not connected to any other global label") ); case ERCE_SIMILAR_LABELS: