kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #13594
Re: small error in text string, please fix
On Sat, Jun 07, 2014 at 01:15:45PM +0200, Nick Østergaard wrote:
> 2014-06-07 11:54 GMT+02:00 Marco Ciampa <ciampix@xxxxxxxxx>:
> > in
> >
> > kicad.bzr/pcbnew/class_pcb_layer_widget.cpp
> >
> > line 68:
> >
> >
> > RR( _( "Pads Front" ), PAD_FR_VISIBLE, WHITE, _( "Show footprint pads on board's front" ) ),
> > RR( _( "Pads Back" ), PAD_BK_VISIBLE, WHITE, _( "Show footprint pads on board's back" ) ),
> >
> > RR( _( "Text Front" ), MOD_TEXT_FR_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
> > ^^^^
> > RR( _( "Text Back" ), MOD_TEXT_BK_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
> >
> > bye
> >
> It is easier to make a patch file with 'bzr diff >
> correct-string.patch' or similar. I had a hard time noticing the
> error, because the hats do not align up, because I did not view your
> mail in a monospace font.
Right, thanks!
See patch attached...
--
Marco Ciampa
+--------------------+
| Linux User #78271 |
| FSFE fellow #364 |
+--------------------+
=== modified file 'pcbnew/class_pcb_layer_widget.cpp'
--- pcbnew/class_pcb_layer_widget.cpp 2014-05-21 21:13:30 +0000
+++ pcbnew/class_pcb_layer_widget.cpp 2014-06-07 12:33:34 +0000
@@ -67,7 +67,7 @@
RR( _( "Pads Front" ), PAD_FR_VISIBLE, WHITE, _( "Show footprint pads on board's front" ) ),
RR( _( "Pads Back" ), PAD_BK_VISIBLE, WHITE, _( "Show footprint pads on board's back" ) ),
- RR( _( "Text Front" ), MOD_TEXT_FR_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
+ RR( _( "Text Front" ), MOD_TEXT_FR_VISIBLE, WHITE, _( "Show footprint text on board's front" ) ),
RR( _( "Text Back" ), MOD_TEXT_BK_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
RR( _( "Hidden Text" ), MOD_TEXT_INVISIBLE, WHITE, _( "Show footprint text marked as invisible" ) ),
Follow ups
References