1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-05 03:03:10 +01:00

Fix a string again...

... This string appears when you enter a positive, invalid value for peak
amplitude in the Normalize effect.  It didn't look right with periods (a space
was left before the first period).  Let's use parentheses instead.
This commit is contained in:
Paul Licameli
2018-10-15 12:59:02 -04:00
parent ef97ce88ca
commit 6ca721b03a

View File

@@ -753,7 +753,7 @@ void EffectNormalize::UpdateUI()
if (!mUIParent->TransferDataFromWindow())
{
mWarning->SetLabel(_(". Maximum 0dB."));
mWarning->SetLabel(_("(Maximum 0dB)"));
EnableApply(false);
return;
}