1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-02 17:23:18 +02: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;
}