mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-15 15:49:36 +02:00
No, you should never have _("") in code, because you can't translate an empty
string (and anyway it has special meanings in gettext)
This commit is contained in:
parent
e982fdb716
commit
2362728838
@ -222,7 +222,7 @@ void TimeScaleDialog::PopulateOrExchange(ShuttleGui & S)
|
||||
S.StartMultiColumn(1, wxCENTER);
|
||||
{
|
||||
m_pTextCtrl_RatePercentChangeStart = S.Id(ID_TEXT_RATE_PERCENTCHANGE_START)
|
||||
.AddTextBox(_(""), wxT(""), 12);
|
||||
.AddTextBox(wxT(""), wxT(""), 12);
|
||||
m_pTextCtrl_RatePercentChangeStart->SetValidator(numvld);
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
@ -241,7 +241,7 @@ void TimeScaleDialog::PopulateOrExchange(ShuttleGui & S)
|
||||
S.StartMultiColumn(1, wxCENTER);
|
||||
{
|
||||
m_pTextCtrl_RatePercentChangeEnd = S.Id(ID_TEXT_RATE_PERCENTCHANGE_END)
|
||||
.AddTextBox(_(""), wxT(""), 12);
|
||||
.AddTextBox(wxT(""), wxT(""), 12);
|
||||
m_pTextCtrl_RatePercentChangeEnd->SetValidator(numvld);
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
|
Loading…
x
Reference in New Issue
Block a user