Remove new strings
This commit is contained in:
parent
26c821962f
commit
26c6760662
|
@ -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 )
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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" ) )
|
||||
|
|
|
@ -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" ) ) );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue