1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 16:40:07 +02:00

Wording changes.

- Losing a ':' on a toolbar
- Clarity that we are fitting project/selection to width, not height.
This commit is contained in:
James Crook 2018-01-17 11:15:32 +00:00
parent fdf14d98c6
commit c0fceb3b66
2 changed files with 4 additions and 4 deletions

View File

@ -241,8 +241,8 @@ static const struct Entry {
#ifdef EXPERIMENTAL_ZOOM_TOGGLE_BUTTON #ifdef EXPERIMENTAL_ZOOM_TOGGLE_BUTTON
{ ETBZoomToggleID, wxT("ZoomToggle"), XO("Zoom Toggle") }, { ETBZoomToggleID, wxT("ZoomToggle"), XO("Zoom Toggle") },
#endif #endif
{ ETBZoomSelID, wxT("ZoomSel"), XO("Fit selection in window") }, { ETBZoomSelID, wxT("ZoomSel"), XO("Fit selection to width") },
{ ETBZoomFitID, wxT("FitInWindow"), XO("Fit project in window") }, { ETBZoomFitID, wxT("FitInWindow"), XO("Fit project to width") },
#if defined(EXPERIMENTAL_EFFECTS_RACK) #if defined(EXPERIMENTAL_EFFECTS_RACK)
{ ETBEffectsID, wxT(""), XO("Open Effects Rack") }, { ETBEffectsID, wxT(""), XO("Open Effects Rack") },

View File

@ -255,7 +255,7 @@ void SelectionBar::Populate()
wxColour clrText = theTheme.Colour( clrTrackPanelText ); wxColour clrText = theTheme.Colour( clrTrackPanelText );
wxColour clrText2 = *wxBLUE; wxColour clrText2 = *wxBLUE;
AddTitle( _("Project Rate (Hz):"), mainSizer ); AddTitle( _("Project Rate (Hz)"), mainSizer );
AddVLine( mainSizer ); AddVLine( mainSizer );
AddTitle( _("Snap-To"), mainSizer ); AddTitle( _("Snap-To"), mainSizer );
#ifdef OPTIONS_BUTTON #ifdef OPTIONS_BUTTON
@ -297,7 +297,7 @@ void SelectionBar::Populate()
mRateBox = safenew wxComboBox(this, RateID, mRateBox = safenew wxComboBox(this, RateID,
wxT(""), wxT(""),
wxDefaultPosition, wxSize(80, -1)); wxDefaultPosition, wxSize(80, -1));
mRateBox->SetName(_("Project Rate (Hz):")); mRateBox->SetName(_("Project Rate (Hz)"));
//mRateBox->SetForegroundColour( clrText2 ); //mRateBox->SetForegroundColour( clrText2 );
wxTextValidator vld(wxFILTER_INCLUDE_CHAR_LIST); wxTextValidator vld(wxFILTER_INCLUDE_CHAR_LIST);
vld.SetIncludes(wxArrayString(10, numbers)); vld.SetIncludes(wxArrayString(10, numbers));