From 6ceea747b29348b6617e7752837d89ee6ff12d14 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Thu, 22 Feb 2024 11:54:52 +0300 Subject: [PATCH] Swap to capitalized strings (translated). --- pcbnew/tools/pcb_actions.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pcbnew/tools/pcb_actions.cpp b/pcbnew/tools/pcb_actions.cpp index f45dee22cc..dc1a056d5c 100644 --- a/pcbnew/tools/pcb_actions.cpp +++ b/pcbnew/tools/pcb_actions.cpp @@ -2300,7 +2300,7 @@ TOOL_ACTION PCB_ACTIONS::tuneSingleTrack( TOOL_ACTION_ARGS() .DefaultHotkey( '7' ) // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name. .LegacyHotkeyName( "Tune Single Track (Modern Toolset only)" ) - .FriendlyName( _( "Tune length of a single track" ) ) + .FriendlyName( _( "Tune Length of a Single Track" ) ) .Tooltip( _( "Tune length of a single track" ) ) .Icon( BITMAPS::ps_tune_length ) .Flags( AF_ACTIVATE ) @@ -2312,18 +2312,12 @@ TOOL_ACTION PCB_ACTIONS::tuneDiffPair( TOOL_ACTION_ARGS() .DefaultHotkey( '8' ) // Don't be tempted to remove "Modern Toolset only". It's in the legacy property name. .LegacyHotkeyName( "Tune Differential Pair Length (Modern Toolset only)" ) - .FriendlyName( _( "Tune length of a differential pair" ) ) + .FriendlyName( _( "Tune Length of a Differential Pair" ) ) .Tooltip( _( "Tune length of a differential pair" ) ) .Icon( BITMAPS::ps_diff_pair_tune_length ) .Flags( AF_ACTIVATE ) .Parameter( PNS::PNS_MODE_TUNE_DIFF_PAIR ) ); -// Reserved strings -#if 0 -_( "Tune Length of a Single Track" ); -_( "Tune Length of a Differential Pair" ); -#endif - TOOL_ACTION PCB_ACTIONS::tuneSkew( TOOL_ACTION_ARGS() .Name( "pcbnew.LengthTuner.TuneDiffPairSkew" ) .Scope( AS_GLOBAL )