From 7750cf6d4fcc7f7a3b379a1c28ad2bff8858f091 Mon Sep 17 00:00:00 2001 From: dickelbeck Date: Tue, 19 Feb 2008 16:54:32 +0000 Subject: [PATCH] message consistency --- pcbnew/cross-probing.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pcbnew/cross-probing.cpp b/pcbnew/cross-probing.cpp index 539ca29efb..16024fe090 100644 --- a/pcbnew/cross-probing.cpp +++ b/pcbnew/cross-probing.cpp @@ -51,9 +51,9 @@ void RemoteCommand( const char* cmdline ) module = ReturnModule( frame->m_Pcb, modName ); if( module ) - msg.Printf( _( "Module %s found" ), modName.GetData() ); + msg.Printf( _( "%s found" ), modName.GetData() ); else - msg.Printf( _( "Module %s not found"), modName.GetData() ); + msg.Printf( _( "%s not found"), modName.GetData() ); frame->Affiche_Message( msg ); if( module ) @@ -106,9 +106,9 @@ void RemoteCommand( const char* cmdline ) } if( module == NULL ) - msg.Printf( _( "Module %s not found" ), modName.GetData() ); + msg.Printf( _( "%s not found" ), modName.GetData() ); else if( pad == NULL ) - msg.Printf( _( "Pin %s (module %s) not found" ), pinName.GetData(), modName.GetData() ); + msg.Printf( _( "%s pin %s not found" ), modName.GetData(), pinName.GetData() ); else msg.Printf( _( "%s pin %s found" ), modName.GetData(), pinName.GetData() );