1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-13 16:16:33 +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

@@ -589,7 +589,7 @@ public:
FindDialog(wxWindow *parent, wxString path, wxString name, wxString type) FindDialog(wxWindow *parent, wxString path, wxString name, wxString type)
: wxDialogWrapper(parent, wxID_ANY, : wxDialogWrapper(parent, wxID_ANY,
/* i18n-hint: LAME is the name of an MP3 converter and should not be translated*/ /* i18n-hint: LAME is the name of an MP3 converter and should not be translated*/
wxString(_("Locate Lame"))) wxString(_("Locate LAME")))
{ {
SetName(GetTitle()); SetName(GetTitle());
ShuttleGui S(this, eIsCreating); ShuttleGui S(this, eIsCreating);
@@ -634,7 +634,7 @@ public:
} }
S.Id(ID_BROWSE).AddButton(_("Browse..."), wxALIGN_RIGHT); S.Id(ID_BROWSE).AddButton(_("Browse..."), wxALIGN_RIGHT);
/* i18n-hint: There is a button to the right of the arrow.*/ /* i18n-hint: There is a button to the right of the arrow.*/
S.AddVariableText(_("To get a free copy of Lame, click here -->"), true); S.AddVariableText(_("To get a free copy of LAME, click here -->"), true);
/* i18n-hint: (verb)*/ /* i18n-hint: (verb)*/
S.Id(ID_DLOAD).AddButton(_("Download"), wxALIGN_RIGHT); S.Id(ID_DLOAD).AddButton(_("Download"), wxALIGN_RIGHT);
} }

View File

@@ -669,7 +669,7 @@ bool Importer::Import(const wxString &fName,
} }
// we were not able to recognize the file type // we were not able to recognize the file type
errorMessage.Printf(_("Audacity did not recognize the type of the file '%s'.\nIf it is uncompressed, try importing it using \"Import Raw\"."),fName.c_str()); errorMessage.Printf(_("Audacity did not recognize the type of the file '%s'.\nTry installing FFmpeg. For uncompressed files, also try File > Import > Raw Data."),fName.c_str());
} }
else else
{ {

View File

@@ -77,15 +77,15 @@ void RecordingPrefs::PopulateOrExchange(ShuttleGui & S)
wxT("/AudioIO/Duplex"), wxT("/AudioIO/Duplex"),
true); true);
#if defined(__WXMAC__) #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"), wxT("/AudioIO/Playthrough"),
false); false);
#endif #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"), wxT("/AudioIO/SWPlaythrough"),
false); false);
#if !defined(__WXMAC__) #if !defined(__WXMAC__)
S.AddUnits(wxString(wxT(" ")) + _("(uncheck when recording \"stereo mix\")")); S.AddUnits(wxString(wxT(" ")) + _("(uncheck when recording computer playback)"));
#endif #endif
} }
S.EndStatic(); S.EndStatic();