mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-02 14:17:07 +01:00
Fixing some i18n issues with the plugin settings file
This commit is contained in:
@@ -380,7 +380,7 @@ wxString LV2Effect::GetVendor()
|
||||
|
||||
if (vendor.IsEmpty())
|
||||
{
|
||||
vendor = _("N/A");
|
||||
vendor = XO("N/A");
|
||||
}
|
||||
|
||||
return vendor;
|
||||
@@ -393,7 +393,7 @@ wxString LV2Effect::GetVersion()
|
||||
|
||||
wxString LV2Effect::GetDescription()
|
||||
{
|
||||
return _("N/A");
|
||||
return XO("N/A");
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
|
||||
@@ -98,17 +98,17 @@ wxString LV2EffectsModule::GetPath()
|
||||
|
||||
wxString LV2EffectsModule::GetSymbol()
|
||||
{
|
||||
return wxT("LV2 Effects Module");
|
||||
return XO("LV2 Effects Module");
|
||||
}
|
||||
|
||||
wxString LV2EffectsModule::GetName()
|
||||
{
|
||||
return _("LV2 Effects Module");
|
||||
return GetSymbol();
|
||||
}
|
||||
|
||||
wxString LV2EffectsModule::GetVendor()
|
||||
{
|
||||
return _("The Audacity Team");
|
||||
return XO("The Audacity Team");
|
||||
}
|
||||
|
||||
wxString LV2EffectsModule::GetVersion()
|
||||
@@ -119,7 +119,7 @@ wxString LV2EffectsModule::GetVersion()
|
||||
|
||||
wxString LV2EffectsModule::GetDescription()
|
||||
{
|
||||
return _("Provides LV2 Effects support to Audacity");
|
||||
return XO("Provides LV2 Effects support to Audacity");
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
|
||||
Reference in New Issue
Block a user