Fix a I18n issue: a string flagged as translatable cannot be empty.

This commit is contained in:
jean-pierre charras 2021-01-08 18:16:00 +01:00
parent f5b4bc5bfe
commit 93d203aef7
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ void TRACK::GetMsgPanelInfoBase_Common( EDA_DRAW_FRAME* aFrame, std::vector<MSG_
#endif
// Display the State member
aList.emplace_back( _( "Status" ), IsLocked() ? _( "Locked" ) : _( "" ) );
aList.emplace_back( _( "Status" ), IsLocked() ? _( "Locked" ) : wxT( "" ) );
}