Fix issues in strings that need to be translated (non ASCII7 strings, trailing spaces...)

This commit is contained in:
jean-pierre charras 2017-06-18 21:23:21 +02:00
parent 1466d0cee6
commit dfc49da29b
3 changed files with 8 additions and 8 deletions

View File

@ -55,7 +55,7 @@
void LIB_EDIT_FRAME::DisplayLibInfos()
{
PART_LIB* lib = GetCurLib();
wxString title = wxString::Format( L"Part Library Editor \u2014 %s%s",
wxString title = wxString::Format( _( "Part Library Editor -- %s %s" ),
lib ? lib->GetFullFileName() : _( "no library selected" ),
lib && lib->IsReadOnly() ? _( "[Read Only]") : wxString( wxEmptyString ) );