Fix some issues in modview, relative to few incorrect use of some wxAuiManager functions.

Fix not working + and - keys in layers manager.
Fix typo errors and modify some messages to make translator's life more easy.
This commit is contained in:
jean-pierre charras
2014-01-19 14:12:57 +01:00
21 changed files with 135 additions and 151 deletions
+3 -3
View File
@@ -148,7 +148,7 @@ bool EnsureOutputDirectory( wxFileName* aOutputDir,
{
if( aReporter )
{
msg.Printf( _( "*** Error: cannot make path <%s> absolute with respect to <%s>! ***" ),
msg.Printf( _( "*** Error: cannot make path '%s' absolute with respect to '%s'! ***" ),
GetChars( aOutputDir->GetPath() ),
GetChars( boardFilePath ) );
aReporter->Report( msg );
@@ -165,7 +165,7 @@ bool EnsureOutputDirectory( wxFileName* aOutputDir,
{
if( aReporter )
{
msg.Printf( _( "Output directory <%s> created.\n" ), GetChars( outputPath ) );
msg.Printf( _( "Output directory '%s' created.\n" ), GetChars( outputPath ) );
aReporter->Report( msg );
return true;
}
@@ -174,7 +174,7 @@ bool EnsureOutputDirectory( wxFileName* aOutputDir,
{
if( aReporter )
{
msg.Printf( _( "*** Error: cannot create output directory <%s>! ***\n" ),
msg.Printf( _( "*** Error: cannot create output directory '%s'! ***\n" ),
GetChars( outputPath ) );
aReporter->Report( msg );
}