Reserve strings.
This commit is contained in:
parent
1df84f4d92
commit
c16db03321
|
@ -1059,6 +1059,13 @@ TOOL_ACTION EE_ACTIONS::generateBOMLegacy( TOOL_ACTION_ARGS()
|
|||
.Tooltip( _( "Generate a bill of materials for the current schematic (Legacy Generator)" ) )
|
||||
);
|
||||
|
||||
TOOL_ACTION EE_ACTIONS::generateBOMExternal( TOOL_ACTION_ARGS()
|
||||
.Name( "eeschema.EditorControl.generateBOMExternal" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Generate Bill of Materials (External)..." ) )
|
||||
.Tooltip( _( "Generate a bill of materials for the current schematic using external generator" ) )
|
||||
);
|
||||
|
||||
TOOL_ACTION EE_ACTIONS::exportSymbolsToLibrary( TOOL_ACTION_ARGS()
|
||||
.Name( "eeschema.EditorControl.exportSymbolsToLibrary" )
|
||||
.Scope( AS_GLOBAL )
|
||||
|
|
|
@ -170,6 +170,7 @@ public:
|
|||
static TOOL_ACTION exportNetlist;
|
||||
static TOOL_ACTION generateBOM;
|
||||
static TOOL_ACTION generateBOMLegacy;
|
||||
static TOOL_ACTION generateBOMExternal;
|
||||
static TOOL_ACTION addSymbolToSchematic;
|
||||
static TOOL_ACTION exportSymbolsToLibrary;
|
||||
static TOOL_ACTION exportSymbolsToNewLibrary;
|
||||
|
|
Loading…
Reference in New Issue