← Back to team overview

kicad-developers team mailing list archive

Re: [PATCH] missing i18n on Pl_Editor

 

Patch

19.04.2015 04:52, Marco Ciampa пишет:
On the left bottom corner of the Pl_Editor, the page size width and height
info are always untranslated.

Regards,

--


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@xxxxxxxxxxxxxxxxxxx
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp

=== modified file 'pagelayout_editor/pl_editor_frame.cpp'
--- pagelayout_editor/pl_editor_frame.cpp	2015-04-03 09:13:06 +0000
+++ pagelayout_editor/pl_editor_frame.cpp	2015-04-19 08:31:13 +0000
@@ -454,7 +454,7 @@
     double dXpos = To_User_Unit( g_UserUnit, coord.x*Xsign );
     double dYpos = To_User_Unit( g_UserUnit, coord.y*Ysign );
 
-    wxString pagesizeformatter = wxT( "Page size: width %.4g height %.4g" );
+    wxString pagesizeformatter = _( "Page size: width %.4g height %.4g" );
     wxString absformatter = wxT( "X %.4g  Y %.4g" );
     wxString locformatter = wxT( "dx %.4g  dy %.4g" );
 


References