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

Bug 1843 - Tracks menu error messages do not have "?" help buttons to link to the Manual

This commit is contained in:
James Crook 2019-07-17 13:20:14 +01:00
parent 5726d49e15
commit 07465845dd

View File

@ -110,7 +110,7 @@ const ReservedCommandFlag
CommandFlagOptions{ []( const wxString& ) { return CommandFlagOptions{ []( const wxString& ) { return
// This reason will not be shown, because options that require it will be greyed out. // This reason will not be shown, because options that require it will be greyed out.
_("You can only do this when playing and recording are\nstopped. (Pausing is not sufficient.)"); _("You can only do this when playing and recording are\nstopped. (Pausing is not sufficient.)");
} } } ,"FAQ:Errors:Audio Must Be Stopped"}
.QuickTest() .QuickTest()
.Priority( 1 ) .Priority( 1 )
}, //lll }, //lll
@ -126,7 +126,7 @@ const ReservedCommandFlag
{ []( const wxString& ) { return { []( const wxString& ) { return
// This reason will not be shown, because the stereo-to-mono is greyed out if not allowed. // This reason will not be shown, because the stereo-to-mono is greyed out if not allowed.
_("You must first select some stereo audio to perform this\naction. (You cannot use this with mono.)"); _("You must first select some stereo audio to perform this\naction. (You cannot use this with mono.)");
} } } ,"FAQ:Errors:Select Stereo"}
}, //lda }, //lda
TimeSelectedFlag{ TimeSelectedFlag{
TimeSelectedPred, TimeSelectedPred,
@ -138,7 +138,7 @@ const ReservedCommandFlag
}, },
{ []( const wxString& ) { return { []( const wxString& ) { return
_("You must first select some audio to perform this action.\n(Selecting other kinds of track won't work.)"); _("You must first select some audio to perform this action.\n(Selecting other kinds of track won't work.)");
} } } ,"FAQ:Errors:Select Audio"}
}, },
TracksExistFlag{ TracksExistFlag{
[](const AudacityProject &project){ [](const AudacityProject &project){
@ -152,7 +152,7 @@ const ReservedCommandFlag
// i18n-hint: %s will be replaced by the name of an action, such as "Remove Tracks". // i18n-hint: %s will be replaced by the name of an action, such as "Remove Tracks".
_("\"%s\" requires one or more tracks to be selected."), _("\"%s\" requires one or more tracks to be selected."),
Name Name
); } } ); },"FAQ:Errors:Select Tracks" }
}, },
TrackPanelHasFocus{ TrackPanelHasFocus{
[](const AudacityProject &project){ [](const AudacityProject &project){