mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-06 11:42:17 +01:00
Wording.
- Changes, mostly to capitalization, per https://wiki.audacityteam.org/wiki/Wording - Removed some dead comments. - Added a very few i18n-hints - Per consensus, removed ':' in some strings read by screen readers.
This commit is contained in:
@@ -171,7 +171,7 @@ void SpectralSelectionBar::Populate()
|
||||
NumericTextCtrl::Options{}
|
||||
.InvalidValue( true, SelectedRegion::UndefinedFrequency )
|
||||
);
|
||||
mCenterCtrl->SetName(_("Center Frequency:"));
|
||||
mCenterCtrl->SetName(_("Center Frequency"));
|
||||
subSizer->Add(mCenterCtrl, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, 5);
|
||||
|
||||
mWidthCtrl = safenew NumericTextCtrl(
|
||||
@@ -180,7 +180,7 @@ void SpectralSelectionBar::Populate()
|
||||
NumericTextCtrl::Options{}
|
||||
.InvalidValue( true, -1.0 )
|
||||
);
|
||||
mWidthCtrl->SetName(wxString(_("Bandwidth:")));
|
||||
mWidthCtrl->SetName(wxString(_("Bandwidth")));
|
||||
subSizer->Add(mWidthCtrl, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, 5);
|
||||
|
||||
mLowCtrl = safenew NumericTextCtrl(
|
||||
@@ -189,7 +189,7 @@ void SpectralSelectionBar::Populate()
|
||||
NumericTextCtrl::Options{}
|
||||
.InvalidValue( true, SelectedRegion::UndefinedFrequency )
|
||||
);
|
||||
mLowCtrl->SetName(_("Low Frequency:"));
|
||||
mLowCtrl->SetName(_("Low Frequency"));
|
||||
subSizer->Add(mLowCtrl, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, 5);
|
||||
|
||||
mHighCtrl = safenew NumericTextCtrl(
|
||||
@@ -198,7 +198,7 @@ void SpectralSelectionBar::Populate()
|
||||
NumericTextCtrl::Options{}
|
||||
.InvalidValue( true, SelectedRegion::UndefinedFrequency )
|
||||
);
|
||||
mHighCtrl->SetName(wxString(_("High Frequency:")));
|
||||
mHighCtrl->SetName(wxString(_("High Frequency")));
|
||||
subSizer->Add(mHighCtrl, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, 5);
|
||||
|
||||
mCenterCtrl->Show(mbCenterAndWidth);
|
||||
|
||||
Reference in New Issue
Block a user