1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

An i18n-hint comment

This commit is contained in:
Paul Licameli 2020-12-24 19:09:05 -05:00
parent c410228cfb
commit 264f133964

View File

@ -48,7 +48,7 @@ void MixAndRender(TrackList *tracks, WaveTrackFactory *trackFactory,
uLeft.reset(), uRight.reset(); uLeft.reset(), uRight.reset();
// This function was formerly known as "Quick Mix". // This function was formerly known as "Quick Mix".
bool mono = false; /* flag if output can be mono without loosing anything*/ bool mono = false; /* flag if output can be mono without losing anything*/
bool oneinput = false; /* flag set to true if there is only one input track bool oneinput = false; /* flag set to true if there is only one input track
(mono or stereo) */ (mono or stereo) */
@ -114,6 +114,7 @@ void MixAndRender(TrackList *tracks, WaveTrackFactory *trackFactory,
if (oneinput) if (oneinput)
mixLeft->SetName(first->GetName()); /* set name of output track to be the same as the sole input track */ mixLeft->SetName(first->GetName()); /* set name of output track to be the same as the sole input track */
else else
/* i18n-hint: noun, means a track, made by mixing other tracks */
mixLeft->SetName(_("Mix")); mixLeft->SetName(_("Mix"));
mixLeft->SetOffset(mixStartTime); mixLeft->SetOffset(mixStartTime);