1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

Wiki Wording issue: capitalise 'Speed'

This commit is contained in:
windinthew 2017-04-08 19:22:14 +01:00
parent c44e5a281a
commit 05662ac607
2 changed files with 4 additions and 4 deletions

View File

@ -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));

View File

@ -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<wxString> commands;