Reserve strings.

This commit is contained in:
Alex Shvartzkop 2023-12-16 12:25:27 +03:00
parent 1df84f4d92
commit c16db03321
2 changed files with 8 additions and 0 deletions

View File

@ -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 )

View File

@ -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;