Better strings for the translators (converted concatenations to formats)

This commit is contained in:
Lorenzo Marcantonio
2013-04-09 19:49:01 +02:00
parent 20eaf66d5b
commit 42709330e0
81 changed files with 424 additions and 344 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ int GERBVIEW_FRAME::ReadDCodeDefinitionFile( const wxString& D_Code_FullFileName
dest = wxFopen( D_Code_FullFileName, wxT( "rt" ) );
if( dest == 0 )
{
msg = _( "File " ) + D_Code_FullFileName + _( " not found" );
msg.Printf( _( "File <%s> not found" ), GetChars( D_Code_FullFileName ) );
DisplayError( this, msg, 10 );
return -1;
}