Fix a I18n issue: a string flagged as translatable cannot be empty.
This commit is contained in:
parent
f5b4bc5bfe
commit
93d203aef7
|
@ -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( "" ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue