Translatable strings must be ASCII7 for translation tools.
This commit is contained in:
parent
4eedb3a27d
commit
3d32ee774e
|
@ -1474,14 +1474,14 @@ void SCH_EDIT_FRAME::UpdateTitle()
|
||||||
|
|
||||||
if( GetScreen()->GetFileName() == m_DefaultSchematicFileName )
|
if( GetScreen()->GetFileName() == m_DefaultSchematicFileName )
|
||||||
{
|
{
|
||||||
title.Printf( _( "Eeschema \u2014 %s" ), GetChars( GetScreen()->GetFileName() ) );
|
title.Printf( _( "Eeschema" ) + wxT( " \u2014 %s" ), GetChars( GetScreen()->GetFileName() ) );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxString fileName = Prj().AbsolutePath( GetScreen()->GetFileName() );
|
wxString fileName = Prj().AbsolutePath( GetScreen()->GetFileName() );
|
||||||
wxFileName fn = fileName;
|
wxFileName fn = fileName;
|
||||||
|
|
||||||
title.Printf( _( "Eeschema \u2014 %s [%s] \u2014 %s" ),
|
title.Printf( _( "Eeschema" ) + wxT( " \u2014 %s [%s] \u2014 %s" ),
|
||||||
GetChars( fn.GetName() ),
|
GetChars( fn.GetName() ),
|
||||||
GetChars( m_CurrentSheet->PathHumanReadable() ),
|
GetChars( m_CurrentSheet->PathHumanReadable() ),
|
||||||
GetChars( fn.GetPath() ) );
|
GetChars( fn.GetPath() ) );
|
||||||
|
|
Loading…
Reference in New Issue