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:
+3
-3
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user