1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 22:43:01 +02:00

Translated effect name and description in many places in Effect.cpp...

... including titles of dialogs,
messages,
About sub-menu of the Manage button,
long-form names of Undo items (in history view),
message for why command is not allowed when there is no selection

Also one place in Effect Rack code but it's commented out
This commit is contained in:
Paul Licameli
2017-09-06 23:35:54 -04:00
parent 42f8945812
commit 5f298accbd
7 changed files with 54 additions and 14 deletions

View File

@@ -59,6 +59,10 @@ public:
virtual wxString GetVendor() = 0;
virtual wxString GetVersion() = 0;
virtual wxString GetDescription() = 0;
// non-virtual convenience functions
const wxString& GetTranslatedName();
const wxString& GetTranslatedDescription();
};
#endif // __AUDACITY_IDENTINTERFACE_H__