1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-14 15:48:21 +02:00

Wording to: "Fit to Height"

Consistency with "Fit to Width".
This commit is contained in:
James Crook 2016-08-28 17:58:09 +01:00
parent 9e4132301c
commit c903434908

View File

@ -648,9 +648,9 @@ void AudacityProject::CreateMenusAndCommands()
c->EndSubMenu();
c->AddSeparator();
c->BeginSubMenu(_("Track Size"));
c->BeginSubMenu(_("&Track Size"));
c->AddItem(wxT("FitInWindow"), _("&Fit to Width"), FN(OnZoomFit), wxT("Ctrl+F"));
c->AddItem(wxT("FitV"), _("Fit &Vertically"), FN(OnZoomFitV), wxT("Ctrl+Shift+F"));
c->AddItem(wxT("FitV"), _("Fit to &Height"), FN(OnZoomFitV), wxT("Ctrl+Shift+F"));
c->AddItem(wxT("CollapseAllTracks"), _("&Collapse All Tracks"), FN(OnCollapseAllTracks), wxT("Ctrl+Shift+C"));
c->AddItem(wxT("ExpandAllTracks"), _("E&xpand All Tracks"), FN(OnExpandAllTracks), wxT("Ctrl+Shift+X"));
c->EndSubMenu();