Re: [Kicad-developers] Column label "Qty" of the symbol fields editor is not translatable.

2018-07-19 Thread Jeff Young
Thanks for your contribution, Konstantin!  

I’ve applied your patch to the 5.1 and 6.0 branches.

Cheers,
Jeff.


> On 15 Jul 2018, at 06:36, Константин Барановский 
>  wrote:
> 
> 
> <0001-Fix-untranslatable-label.patch>___
> 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


___
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


[Kicad-developers] Column label "Qty" of the symbol fields editor is not translatable.

2018-07-14 Thread Константин Барановский

From 07b93a5396bfa7c8922e7d57cff7337d269de52b Mon Sep 17 00:00:00 2001
From: Baranovskiy Konstantin 
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