Commit 7750cf6d authored by dickelbeck's avatar dickelbeck

message consistency

parent c04619bb
...@@ -51,9 +51,9 @@ void RemoteCommand( const char* cmdline ) ...@@ -51,9 +51,9 @@ void RemoteCommand( const char* cmdline )
module = ReturnModule( frame->m_Pcb, modName ); module = ReturnModule( frame->m_Pcb, modName );
if( module ) if( module )
msg.Printf( _( "Module %s found" ), modName.GetData() ); msg.Printf( _( "%s found" ), modName.GetData() );
else else
msg.Printf( _( "Module %s not found"), modName.GetData() ); msg.Printf( _( "%s not found"), modName.GetData() );
frame->Affiche_Message( msg ); frame->Affiche_Message( msg );
if( module ) if( module )
...@@ -106,9 +106,9 @@ void RemoteCommand( const char* cmdline ) ...@@ -106,9 +106,9 @@ void RemoteCommand( const char* cmdline )
} }
if( module == NULL ) if( module == NULL )
msg.Printf( _( "Module %s not found" ), modName.GetData() ); msg.Printf( _( "%s not found" ), modName.GetData() );
else if( pad == NULL ) 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 else
msg.Printf( _( "%s pin %s found" ), modName.GetData(), pinName.GetData() ); msg.Printf( _( "%s pin %s found" ), modName.GetData(), pinName.GetData() );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment