Browse Source

Make some multi-channel tooltips translatable.

9.0
Alex Shvartzkop 9 months ago
parent
commit
ea5514725c
  1. 4
      pcbnew/tools/pcb_actions.cpp

4
pcbnew/tools/pcb_actions.cpp

@ -2226,7 +2226,7 @@ TOOL_ACTION PCB_ACTIONS::generatePlacementRuleAreas( TOOL_ACTION_ARGS()
.Name( "pcbnew.Multichannel.generatePlacementRuleAreas" )
.Scope( AS_GLOBAL )
.FriendlyName( _( "Generate Placement Rule Areas..." ) )
.Tooltip( "Generates Placement Areas in easy way" )
.Tooltip( _( "Generates Placement Areas in easy way" ) )
.Icon( BITMAPS::add_keepout_area )
.Flags( AF_ACTIVATE ) );
@ -2234,7 +2234,7 @@ TOOL_ACTION PCB_ACTIONS::repeatLayout( TOOL_ACTION_ARGS()
.Name( "pcbnew.Multichannel.repeatLayout" )
.Scope( AS_GLOBAL )
.FriendlyName( _( "Repeat Layout..." ) )
.Tooltip( "Clones placement & routing across multiple identical channels" )
.Tooltip( _( "Clones placement & routing across multiple identical channels" ) )
.Icon( BITMAPS::copy )
);

Loading…
Cancel
Save