Fix untranslatable label.

Column label "Qty" of the symbol fields editor is translatable now.

(cherry picked from commit e7b9b0e)
This commit is contained in:
Baranovskiy Konstantin 2018-07-15 06:09:38 +01:00 committed by Jeff Young
parent e02fe83a71
commit c08ef3e8f9
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ public:
wxString GetColLabelValue( int aCol ) override wxString GetColLabelValue( int aCol ) override
{ {
if( aCol == QUANTITY_COLUMN ) if( aCol == QUANTITY_COLUMN )
return _T( "Qty" ); return _( "Qty" );
else else
return m_fieldNames[ aCol ]; return m_fieldNames[ aCol ];
} }