Address issue posted on Wiki Wording page

This commit is contained in:
Gale Andrews 2016-10-27 06:23:05 +01:00 committed by GitHub
parent 597da6fda3
commit ed503c35e5

View File

@ -1080,13 +1080,13 @@ void CommandManager::TellUserWhyDisallowed( CommandFlag flagsGot, CommandMask fl
auto missingFlags = flagsRequired & (~flagsGot );
if( missingFlags & AudioIONotBusyFlag )
reason = _("You can only do this when playing and recording are\n stopped. (Pausing is not sufficient.)");
reason = _("You can only do this when playing and recording are\nstopped. (Pausing is not sufficient.)");
else if( missingFlags & StereoRequiredFlag )
reason = _("You must first select some stereo audio for this\n to use. (You cannot use this with mono.)");
reason = _("You must first select some stereo audio to perform this\naction. (You cannot use this with mono.)");
else if( missingFlags & TimeSelectedFlag )
reason = _("You must first select some audio for this to use.");
reason = _("You must first select some audio to perform this action.");
else if( missingFlags & WaveTracksSelectedFlag)
reason = _("You must first select some audio for this\n to use. (Selecting other kinds of track won't work.)");
reason = _("You must first select some audio to perform this action.\n(Selecting other kinds of track won't work.)");
// If the only thing wrong was no tracks, we do nothing and don't report a problem
else if( missingFlags == TracksExistFlag )
return;