Add back some cli descriptions
This commit is contained in:
parent
10e2e4a12d
commit
3035bbd1d1
|
@ -36,6 +36,8 @@ CLI::PCB_EXPORT_GERBER_COMMAND::PCB_EXPORT_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 )
|
||||
|
|
|
@ -39,6 +39,9 @@ CLI::PCB_EXPORT_GERBERS_COMMAND::PCB_EXPORT_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(
|
||||
|
|
|
@ -30,7 +30,9 @@
|
|||
|
||||
CLI::SCH_EXPORT_PYTHONBOM_COMMAND::SCH_EXPORT_PYTHONBOM_COMMAND() :
|
||||
PCB_EXPORT_BASE_COMMAND( "python-bom" )
|
||||
{
|
||||
{
|
||||
m_argParser.add_description( UTF8STDSTR( _( "Export the legacy bom xml format used in the "
|
||||
"schematic editor with python scripts" ) ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue