1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-23 23:03:55 +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:
Paul Licameli
2018-01-07 19:45:20 -05:00
parent 0c88c8de88
commit 8a074770e8
43 changed files with 50 additions and 58 deletions

View File

@@ -112,7 +112,7 @@ wxString EffectChangeSpeed::GetSymbol()
wxString EffectChangeSpeed::GetDescription()
{
return XO("Change the speed of a track, also changing its pitch");
return _("Change the speed of a track, also changing its pitch");
}
wxString EffectChangeSpeed::ManualPage()