1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 15:23:48 +01:00

Fix issues reported on Wording page

This commit is contained in:
windinthew
2016-10-14 16:36:41 +01:00
parent c7c5424909
commit d5a6b83fe0
3 changed files with 6 additions and 6 deletions

View File

@@ -77,15 +77,15 @@ void RecordingPrefs::PopulateOrExchange(ShuttleGui & S)
wxT("/AudioIO/Duplex"),
true);
#if defined(__WXMAC__)
S.TieCheckBox(_("&Hardware Playthrough: Listen while recording or monitoring new track"),
S.TieCheckBox(_("&Hardware Playthrough: Listen to input while recording or monitoring"),
wxT("/AudioIO/Playthrough"),
false);
#endif
S.TieCheckBox(_("&Software Playthrough: Listen while recording or monitoring new track"),
S.TieCheckBox(_("&Software Playthrough: Listen to input while recording or monitoring"),
wxT("/AudioIO/SWPlaythrough"),
false);
#if !defined(__WXMAC__)
S.AddUnits(wxString(wxT(" ")) + _("(uncheck when recording \"stereo mix\")"));
S.AddUnits(wxString(wxT(" ")) + _("(uncheck when recording computer playback)"));
#endif
}
S.EndStatic();