mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-07 23:51:14 +02:00
Correct more double spaces
This commit is contained in:
parent
d2578b9eaa
commit
ef97ce88ca
@ -166,7 +166,7 @@ public:
|
|||||||
}
|
}
|
||||||
wxString GetDescription() const override
|
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
|
Holder GetClone() const override
|
||||||
{
|
{
|
||||||
|
@ -753,7 +753,7 @@ void EffectNormalize::UpdateUI()
|
|||||||
|
|
||||||
if (!mUIParent->TransferDataFromWindow())
|
if (!mUIParent->TransferDataFromWindow())
|
||||||
{
|
{
|
||||||
mWarning->SetLabel(_(". Maximum 0dB."));
|
mWarning->SetLabel(_(". Maximum 0dB."));
|
||||||
EnableApply(false);
|
EnableApply(false);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -402,7 +402,7 @@ void AudioUnitEffectOptionsDialog::PopulateOrExchange(ShuttleGui & S)
|
|||||||
S.AddVariableText(wxString() +
|
S.AddVariableText(wxString() +
|
||||||
_("Select \"Full\" to use the graphical interface if supplied by the Audio Unit.") +
|
_("Select \"Full\" to use the graphical interface if supplied by the Audio Unit.") +
|
||||||
_(" Select \"Generic\" to use the system supplied generic interface.") +
|
_(" 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);
|
_(" Reopen the effect for this to take effect."))->Wrap(650);
|
||||||
|
|
||||||
S.StartHorizontalLay(wxALIGN_LEFT);
|
S.StartHorizontalLay(wxALIGN_LEFT);
|
||||||
|
@ -1008,10 +1008,10 @@ int ExportFFmpeg::AskResample(int bitrate, int rate, int lowrate, int highrate,
|
|||||||
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
||||||
{
|
{
|
||||||
if (bitrate == 0) {
|
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 {
|
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.");
|
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);
|
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
||||||
{
|
{
|
||||||
if (bitrate == 0) {
|
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 {
|
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.");
|
text += _("You may resample to one of the rates below.");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user