1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Fix more missed translations

This commit is contained in:
Paul Licameli
2018-03-08 13:31:42 -05:00
parent 369113973f
commit 4bfd8abc2b
5 changed files with 9 additions and 8 deletions

View File

@@ -447,10 +447,11 @@ bool VampEffect::Process()
}
}
const auto effectName = GetCustomTranslation( GetName() );
addedTracks.push_back(AddAnalysisTrack(
multiple
? wxString::Format(_("%s: %s"), left->GetName(), GetName())
: GetName()
? wxString::Format( _("%s: %s"), left->GetName(), effectName )
: effectName
));
LabelTrack *ltrack = addedTracks.back()->get();