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:
@@ -753,7 +753,7 @@ void EffectNormalize::UpdateUI()
|
||||
|
||||
if (!mUIParent->TransferDataFromWindow())
|
||||
{
|
||||
mWarning->SetLabel(_(". Maximum 0dB."));
|
||||
mWarning->SetLabel(_("(Maximum 0dB)"));
|
||||
EnableApply(false);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user