diff --git a/src/Menus.cpp b/src/Menus.cpp index 42864828b..5c61521a1 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -1379,9 +1379,9 @@ void AudacityProject::CreateMenusAndCommands() c->SetDefaultFlags(CaptureNotBusyFlag, CaptureNotBusyFlag); - c->AddCommand(wxT("PlayAtSpeed"), _("Play at speed"), FN(OnPlayAtSpeed)); - c->AddCommand(wxT("PlayAtSpeedLooped"), _("Loop Play at speed"), FN(OnPlayAtSpeedLooped)); - c->AddCommand(wxT("PlayAtSpeedCutPreview"), _("Play Cut Preview at speed"), FN(OnPlayAtSpeedCutPreview)); + c->AddCommand(wxT("PlayAtSpeed"), _("Play-at-Speed"), FN(OnPlayAtSpeed)); + c->AddCommand(wxT("PlayAtSpeedLooped"), _("Loop Play-at-Speed"), FN(OnPlayAtSpeedLooped)); + c->AddCommand(wxT("PlayAtSpeedCutPreview"), _("Play Cut Preview-at-Speed"), FN(OnPlayAtSpeedCutPreview)); c->AddCommand(wxT("SetPlaySpeed"), _("Adjust playback speed"), FN(OnSetPlaySpeed)); c->AddCommand(wxT("PlaySpeedInc"), _("Increase playback speed"), FN(OnPlaySpeedInc)); c->AddCommand(wxT("PlaySpeedDec"), _("Decrease playback speed"), FN(OnPlaySpeedDec)); diff --git a/src/toolbars/TranscriptionToolBar.cpp b/src/toolbars/TranscriptionToolBar.cpp index fa902d1ed..5d9d99744 100644 --- a/src/toolbars/TranscriptionToolBar.cpp +++ b/src/toolbars/TranscriptionToolBar.cpp @@ -303,7 +303,7 @@ void TranscriptionToolBar::RegenerateTooltips() wxString commandName; wxString untranslatedLabel; } table[] = { - { TTB_PlaySpeed, wxT("PlayAtSpeed"), XO("Play-at-speed") }, + { TTB_PlaySpeed, wxT("PlayAtSpeed"), XO("Play-at-Speed") }, }; std::vector commands;