diff --git a/kicad/cli/command_export_pcb_gerber.cpp b/kicad/cli/command_export_pcb_gerber.cpp index 5bcfe60ed2..3faf444acf 100644 --- a/kicad/cli/command_export_pcb_gerber.cpp +++ b/kicad/cli/command_export_pcb_gerber.cpp @@ -36,8 +36,6 @@ CLI::EXPORT_PCB_GERBER_COMMAND::EXPORT_PCB_GERBER_COMMAND( const std::string& aN { addLayerArg( true ); - m_argParser.add_description( UTF8STDSTR( _( "Plot given layers to a single gerber file" ) ) ); - m_argParser.add_argument( "-erd", ARG_EXCLUDE_REFDES ) .help( UTF8STDSTR( _( "Exclude the reference designator text" ) ) ) .implicit_value( true ) diff --git a/kicad/cli/command_export_pcb_gerbers.cpp b/kicad/cli/command_export_pcb_gerbers.cpp index 1b954bd9da..9c8703ed33 100644 --- a/kicad/cli/command_export_pcb_gerbers.cpp +++ b/kicad/cli/command_export_pcb_gerbers.cpp @@ -38,9 +38,6 @@ CLI::EXPORT_PCB_GERBERS_COMMAND::EXPORT_PCB_GERBERS_COMMAND() : { m_requireLayers = false; - m_argParser.add_description( UTF8STDSTR( _( "Plot multiple gerbers for a PCB, including the " - "ability to use stored board plot settings" ) ) ); - m_argParser.add_argument( "-cl", ARG_COMMON_LAYERS ) .default_value( std::string() ) .help( UTF8STDSTR( diff --git a/kicad/cli/command_export_pcb_pos.cpp b/kicad/cli/command_export_pcb_pos.cpp index b61ee8ed38..5a71f4ce65 100644 --- a/kicad/cli/command_export_pcb_pos.cpp +++ b/kicad/cli/command_export_pcb_pos.cpp @@ -41,7 +41,7 @@ CLI::EXPORT_PCB_POS_COMMAND::EXPORT_PCB_POS_COMMAND() : EXPORT_PCB_BASE_COMMAND( "pos" ) { - m_argParser.add_description( UTF8STDSTR( _( "Export footprint position file" ) ) ); + m_argParser.add_description( UTF8STDSTR( _( "Generate Position File" ) ) ); m_argParser.add_argument( ARG_SIDE ) .default_value( std::string( "both" ) ) diff --git a/kicad/cli/command_export_sch_pythonbom.cpp b/kicad/cli/command_export_sch_pythonbom.cpp index 3f0a86c8cb..92e963ef9b 100644 --- a/kicad/cli/command_export_sch_pythonbom.cpp +++ b/kicad/cli/command_export_sch_pythonbom.cpp @@ -31,8 +31,6 @@ CLI::EXPORT_SCH_PYTHONBOM_COMMAND::EXPORT_SCH_PYTHONBOM_COMMAND() : EXPORT_PCB_BASE_COMMAND( "python-bom" ) { - m_argParser.add_description( UTF8STDSTR( _( "Export the legacy bom xml format used in the " - "schematic editor with python scripts" ) ) ); }