Fix untranslatable label.
Column label "Qty" of the symbol fields editor is translatable now. (cherry picked from commit e7b9b0e)
This commit is contained in:
parent
e02fe83a71
commit
c08ef3e8f9
|
@ -161,7 +161,7 @@ public:
|
|||
wxString GetColLabelValue( int aCol ) override
|
||||
{
|
||||
if( aCol == QUANTITY_COLUMN )
|
||||
return _T( "Qty" );
|
||||
return _( "Qty" );
|
||||
else
|
||||
return m_fieldNames[ aCol ];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue