1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-02 14:17:07 +01:00

Use IdentInterfaceSymbol in PluginDescriptor

This commit is contained in:
Paul Licameli
2018-03-09 04:52:18 -05:00
parent 68e4bf6c5e
commit e3c54a769e
6 changed files with 51 additions and 73 deletions

View File

@@ -310,7 +310,7 @@ MacroCommandsCatalog::MacroCommandsCatalog( const AudacityProject *project )
auto command = em.GetCommandIdentifier(plug->GetID());
if (!command.IsEmpty())
commands.push_back( {
{ command, plug->GetTranslatedName() },
{ command, plug->GetSymbol().Translation() },
plug->GetPluginType() == PluginTypeEffect ?
_("Effect") : _("Menu Command (With Parameters)")
} );