From 07b93a5396bfa7c8922e7d57cff7337d269de52b Mon Sep 17 00:00:00 2001
From: Baranovskiy Konstantin <baranovskiykonstan...@gmail.com>
Date: Sun, 15 Jul 2018 08:09:38 +0300
Subject: [PATCH] Fix untranslatable label.

Column label "Qty" of the symbol fields editor is translatable now.
---
 eeschema/dialogs/dialog_fields_editor_global.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eeschema/dialogs/dialog_fields_editor_global.cpp b/eeschema/dialogs/dialog_fields_editor_global.cpp
index 45d824c8e..aa4b4c757 100644
--- a/eeschema/dialogs/dialog_fields_editor_global.cpp
+++ b/eeschema/dialogs/dialog_fields_editor_global.cpp
@@ -142,7 +142,7 @@ public:
     wxString GetColLabelValue( int aCol ) override
     {
         if( aCol == QUANTITY_COLUMN )
-            return _T( "Qty" );
+            return _( "Qty" );
         else
             return m_fieldNames[ aCol ];
     }
-- 
2.18.0

_______________________________________________
Mailing list: https://launchpad.net/~kicad-developers
Post to     : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp

Reply via email to