mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 22:23:59 +01:00
Re-adding localized menu labels for effects
If you can believe it, this whole big mess is just to get localized effect labels back into the menus. I sure wish I'd had a little bit more time to finish up all of the effects. It sure would be a lot cleaner (code wise).
This commit is contained in:
@@ -90,9 +90,14 @@ wxString AudioUnitEffectsModule::GetPath()
|
||||
return mPath;
|
||||
}
|
||||
|
||||
wxString AudioUnitEffectsModule::GetSymbol()
|
||||
{
|
||||
return wxT("Audio Unit Effects");
|
||||
}
|
||||
|
||||
wxString AudioUnitEffectsModule::GetName()
|
||||
{
|
||||
return _("Audio Unit Effects Module");
|
||||
return _("Audio Unit Effects");
|
||||
}
|
||||
|
||||
wxString AudioUnitEffectsModule::GetVendor()
|
||||
@@ -976,11 +981,16 @@ wxString AudioUnitEffect::GetPath()
|
||||
return mPath;
|
||||
}
|
||||
|
||||
wxString AudioUnitEffect::GetName()
|
||||
wxString AudioUnitEffect::GetSymbol()
|
||||
{
|
||||
return mName;
|
||||
}
|
||||
|
||||
wxString AudioUnitEffect::GetName()
|
||||
{
|
||||
return GetSymbol();
|
||||
}
|
||||
|
||||
wxString AudioUnitEffect::GetVendor()
|
||||
{
|
||||
return mVendor;
|
||||
|
||||
@@ -50,6 +50,7 @@ public:
|
||||
|
||||
virtual PluginID GetID();
|
||||
virtual wxString GetPath();
|
||||
virtual wxString GetSymbol();
|
||||
virtual wxString GetName();
|
||||
virtual wxString GetVendor();
|
||||
virtual wxString GetVersion();
|
||||
@@ -259,6 +260,7 @@ public:
|
||||
|
||||
virtual wxString GetID();
|
||||
virtual wxString GetPath();
|
||||
virtual wxString GetSymbol();
|
||||
virtual wxString GetName();
|
||||
virtual wxString GetVendor();
|
||||
virtual wxString GetVersion();
|
||||
|
||||
Reference in New Issue
Block a user