mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 22:28:57 +02:00
Zoom presets: wording change
Thousandth second -> Millisecond
This commit is contained in:
parent
3651d0a231
commit
caca4d20f3
@ -700,7 +700,7 @@ void AudacityProject::CreateMenusAndCommands()
|
||||
c->AddItem(wxT("ZoomOneSecond"), _("&One Second"), FN(OnZoomOneSecond));
|
||||
c->AddItem(wxT("ZoomTenthSecond"), _("&Tenth Second"), FN(OnZoomTenthSecond));
|
||||
c->AddItem(wxT("ZoomHundredthSecond"), _("&Hundredth Second"), FN(OnZoomHundredthSecond));
|
||||
c->AddItem(wxT("ZoomThousandthSecond"), _("Thou&sandth Second"), FN(OnZoomThousandthSecond));
|
||||
c->AddItem(wxT("ZoomMillisecond"), _("&Millisecond"), FN(OnZoomMillisecond));
|
||||
c->EndSubMenu();
|
||||
|
||||
c->AddSeparator();
|
||||
@ -5675,7 +5675,7 @@ void AudacityProject::OnZoomHundredthSecond()
|
||||
OnZoomPreset(100.0);
|
||||
}
|
||||
|
||||
void AudacityProject::OnZoomThousandthSecond()
|
||||
void AudacityProject::OnZoomMillisecond()
|
||||
{
|
||||
OnZoomPreset(1000.0);
|
||||
}
|
||||
|
@ -304,7 +304,7 @@ void OnZoomNormal();
|
||||
void OnZoomOneSecond();
|
||||
void OnZoomTenthSecond();
|
||||
void OnZoomHundredthSecond();
|
||||
void OnZoomThousandthSecond();
|
||||
void OnZoomMillisecond();
|
||||
void OnZoomPreset(double newZoom);
|
||||
void OnZoomFit();
|
||||
void OnZoomFitV();
|
||||
|
Loading…
x
Reference in New Issue
Block a user