1
0
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:
Leland Lucius
2015-06-05 18:56:24 -05:00
parent 42249e74a2
commit 60f4ae1941
6 changed files with 20 additions and 20 deletions

View File

@@ -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");
}
// ============================================================================

View File

@@ -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");
}
// ============================================================================