mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-07 15:49:42 +02:00
Correct more double spaces
This commit is contained in:
parent
d2578b9eaa
commit
ef97ce88ca
@ -166,7 +166,7 @@ public:
|
||||
}
|
||||
wxString GetDescription() const override
|
||||
{
|
||||
return wxT("0X101XX101...etc. where 0=false, 1=true, and X=don't care. Numbering starts at leftmost = track 0");
|
||||
return wxT("0X101XX101...etc. where 0=false, 1=true, and X=don't care. Numbering starts at leftmost = track 0");
|
||||
}
|
||||
Holder GetClone() const override
|
||||
{
|
||||
|
@ -753,7 +753,7 @@ void EffectNormalize::UpdateUI()
|
||||
|
||||
if (!mUIParent->TransferDataFromWindow())
|
||||
{
|
||||
mWarning->SetLabel(_(". Maximum 0dB."));
|
||||
mWarning->SetLabel(_(". Maximum 0dB."));
|
||||
EnableApply(false);
|
||||
return;
|
||||
}
|
||||
|
@ -402,7 +402,7 @@ void AudioUnitEffectOptionsDialog::PopulateOrExchange(ShuttleGui & S)
|
||||
S.AddVariableText(wxString() +
|
||||
_("Select \"Full\" to use the graphical interface if supplied by the Audio Unit.") +
|
||||
_(" Select \"Generic\" to use the system supplied generic interface.") +
|
||||
_(" Select \"Basic\" for a basic text-only interface. ") +
|
||||
_(" Select \"Basic\" for a basic text-only interface.") +
|
||||
_(" Reopen the effect for this to take effect."))->Wrap(650);
|
||||
|
||||
S.StartHorizontalLay(wxALIGN_LEFT);
|
||||
|
@ -1008,10 +1008,10 @@ int ExportFFmpeg::AskResample(int bitrate, int rate, int lowrate, int highrate,
|
||||
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
||||
{
|
||||
if (bitrate == 0) {
|
||||
text.Printf(_("The project sample rate (%d) is not supported by the current output\nfile format. "), rate);
|
||||
text.Printf(_("The project sample rate (%d) is not supported by the current output\nfile format. "), rate);
|
||||
}
|
||||
else {
|
||||
text.Printf(_("The project sample rate (%d) and bit rate (%d kbps) combination is not\nsupported by the current output file format. "), rate, bitrate/1024);
|
||||
text.Printf(_("The project sample rate (%d) and bit rate (%d kbps) combination is not\nsupported by the current output file format. "), rate, bitrate/1024);
|
||||
}
|
||||
|
||||
text += _("You may resample to one of the rates below.");
|
||||
|
@ -1991,10 +1991,10 @@ int ExportMP3::AskResample(int bitrate, int rate, int lowrate, int highrate)
|
||||
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
||||
{
|
||||
if (bitrate == 0) {
|
||||
text.Printf(_("The project sample rate (%d) is not supported by the MP3\nfile format. "), rate);
|
||||
text.Printf(_("The project sample rate (%d) is not supported by the MP3\nfile format. "), rate);
|
||||
}
|
||||
else {
|
||||
text.Printf(_("The project sample rate (%d) and bit rate (%d kbps) combination is not\nsupported by the MP3 file format. "), rate, bitrate);
|
||||
text.Printf(_("The project sample rate (%d) and bit rate (%d kbps) combination is not\nsupported by the MP3 file format. "), rate, bitrate);
|
||||
}
|
||||
|
||||
text += _("You may resample to one of the rates below.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user