1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-17 08:40:27 +02:00

Wording fixes for 2.3.3

Per https://wiki.audacityteam.org/wiki/Wording
This commit is contained in:
James Crook 2019-08-12 10:39:20 +01:00
parent 84d5717005
commit ce5884a1f9
4 changed files with 6 additions and 9 deletions

View File

@ -381,7 +381,7 @@ other projects. \
// In auto-recover mode, we didn't do any ShowMultiDialog calls above, so put up an alert. // In auto-recover mode, we didn't do any ShowMultiDialog calls above, so put up an alert.
if (bAutoRecoverMode) if (bAutoRecoverMode)
::AudacityMessageBox( ::AudacityMessageBox(
_("Project check found file inconsistencies during automatic recovery.\n\nSelect 'Show Log...' in the Help menu to see details."), _("Project check found file inconsistencies during automatic recovery.\n\nSelect 'Help > Diagnostics > Show Log...' to see details."),
_("Warning: Problems in Automatic Recovery"), _("Warning: Problems in Automatic Recovery"),
wxOK | wxICON_EXCLAMATION); wxOK | wxICON_EXCLAMATION);
} }

View File

@ -697,7 +697,7 @@ Effect *EffectManager::GetEffect(const PluginID & ID)
auto command = dynamic_cast<AudacityCommand *>(PluginManager::Get().GetInstance(ID)); auto command = dynamic_cast<AudacityCommand *>(PluginManager::Get().GetInstance(ID));
if( !command ) if( !command )
AudacityMessageBox(wxString::Format(_("Attempting to initialize the following effect failed:\n\n%s\n\nMore information may be available in Help->Show Log"), AudacityMessageBox(wxString::Format(_("Attempting to initialize the following effect failed:\n\n%s\n\nMore information may be available in 'Help > Diagnostics > Show Log'"),
GetCommandName(ID)), GetCommandName(ID)),
_("Effect failed to initialize")); _("Effect failed to initialize"));
@ -753,7 +753,7 @@ AudacityCommand *EffectManager::GetAudacityCommand(const PluginID & ID)
} }
} }
*/ */
AudacityMessageBox(wxString::Format(_("Attempting to initialize the following command failed:\n\n%s\n\nMore information may be available in Help->Show Log"), AudacityMessageBox(wxString::Format(_("Attempting to initialize the following command failed:\n\n%s\n\nMore information may be available in 'Help > Diagnostics > Show Log'"),
GetCommandName(ID)), GetCommandName(ID)),
_("Command failed to initialize")); _("Command failed to initialize"));

View File

@ -85,7 +85,7 @@ void ImportExportPrefs::PopulateOrExchange(ShuttleGui & S)
{ {
S.TieRadioButton(_("&Mix down to Stereo or Mono"), S.TieRadioButton(_("&Mix down to Stereo or Mono"),
true); true);
S.TieRadioButton(_("&Use custom mix"), S.TieRadioButton(_("&Use Advanced Mixing Options"),
false); false);
} }
S.EndRadioButtonGroup(); S.EndRadioButtonGroup();
@ -93,9 +93,6 @@ void ImportExportPrefs::PopulateOrExchange(ShuttleGui & S)
S.TieCheckBox(_("S&how Metadata Tags editor before export"), S.TieCheckBox(_("S&how Metadata Tags editor before export"),
wxT("/AudioFiles/ShowId3Dialog"), wxT("/AudioFiles/ShowId3Dialog"),
true); true);
// This documentation is unlikely to help somebody who cannot figure it out by discovering the Options button in the dialog.
// It's only clutter in this Prefs tab, so removed.
// S.AddFixedText(_("Note: Export quality options can be chosen by clicking the Options\nbutton in the Export dialog."));
} }
S.EndStatic(); S.EndStatic();
#ifdef USE_MIDI #ifdef USE_MIDI

View File

@ -23,8 +23,8 @@
#include "../ShuttleGui.h" #include "../ShuttleGui.h"
TracksBehaviorsPrefs::TracksBehaviorsPrefs(wxWindow * parent, wxWindowID winid) TracksBehaviorsPrefs::TracksBehaviorsPrefs(wxWindow * parent, wxWindowID winid)
/* i18n-hint: two nouns */ /* i18n-hint: The noun 'Behaviors' is in a tree control, under (noun) 'Tracks'*/
: PrefsPanel(parent, winid, _("Tracks Behaviors")) : PrefsPanel(parent, winid, _("Behaviors"))
{ {
Populate(); Populate();
} }