Fix issues in strings that need to be translated (non ASCII7 strings, trailing spaces...)
This commit is contained in:
parent
1466d0cee6
commit
dfc49da29b
|
@ -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 ) );
|
||||
|
||||
|
|
Loading…
Reference in New Issue