mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
IdentInterface::GetDescription() returns a translated string...
... See commit 3b90538b84
which removed the
only use of the untranslated strings.
Also follows better i18n guidelines for composing the VSTEffect description.
This commit is contained in:
@@ -134,7 +134,7 @@ wxString AudioUnitEffectsModule::GetVersion()
|
||||
|
||||
wxString AudioUnitEffectsModule::GetDescription()
|
||||
{
|
||||
return XO("Provides Audio Unit Effects support to Audacity");
|
||||
return _("Provides Audio Unit Effects support to Audacity");
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
@@ -914,7 +914,7 @@ wxString AudioUnitEffect::GetVersion()
|
||||
wxString AudioUnitEffect::GetDescription()
|
||||
{
|
||||
/* i18n-hint: Can mean "not available," "not applicable," "no answer" */
|
||||
return XO("n/a");
|
||||
return _("n/a");
|
||||
}
|
||||
|
||||
// ============================================================================
|
||||
|
Reference in New Issue
Block a user