[Kicad-developers] i18n missing

2015-04-11 Thread Marco Ciampa
I do not why but I just noted that in Eeschema (last build)

Preferences->Hotkeys->Edit hotkeys

first two tabs titles are not nationalized (Common & Schematic Editor) the last 
is ok.

--


Marco Ciampa

I know a joke about UDP, but you might not get it.

++
| GNU/Linux User  #78271 |
| FSFE fellow   #364 |
++


___
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


Re: [Kicad-developers] i18n missing

2015-04-11 Thread Eldar Khayrullin

Patch

11.04.2015 13:10, Marco Ciampa пишет:

I do not why but I just noted that in Eeschema (last build)

Preferences->Hotkeys->Edit hotkeys

first two tabs titles are not nationalized (Common & Schematic Editor) the last 
is ok.

--


Marco Ciampa

I know a joke about UDP, but you might not get it.

++
| GNU/Linux User  #78271 |
| FSFE fellow   #364 |
++


___
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


 * Английский - определен
 * Русский

 * Русский


Добавлять
=== modified file 'common/hotkeys_basic.cpp'
--- common/hotkeys_basic.cpp	2015-03-22 14:04:09 +
+++ common/hotkeys_basic.cpp	2015-04-11 10:38:13 +
@@ -52,11 +52,11 @@
 wxString g_BoardEditorSectionTag( wxT( "[pcbnew]" ) );
 wxString g_ModuleEditSectionTag( wxT( "[footprinteditor]" ) );
 
-wxString g_CommonSectionTitle( wxT( "Common" ) );
-wxString g_SchematicSectionTitle( wxT( "Schematic Editor" ) );
-wxString g_LibEditSectionTitle( wxT( "Library Editor" ) );
-wxString g_BoardEditorSectionTitle( wxT( "Board Editor" ) );
-wxString g_ModuleEditSectionTitle( wxT( "Footprint Editor" ) );
+wxString g_CommonSectionTitle( _( "Common" ) );
+wxString g_SchematicSectionTitle( _( "Schematic Editor" ) );
+wxString g_LibEditSectionTitle( _( "Library Editor" ) );
+wxString g_BoardEditorSectionTitle( _( "Board Editor" ) );
+wxString g_ModuleEditSectionTitle( _( "Footprint Editor" ) );
 
 
 /* Class to handle hotkey commnands. hotkeys have a default value

___
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