1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-13 14:13:32 +02:00

Fix typos (user facing and non-user facing) (#727)

Found via `codespell v2.1.dev0`  
`codespell -q 3 -S *.po,./lib-src -L parm,parms,toke`
This commit is contained in:
luzpaz
2021-01-24 04:46:08 -05:00
committed by GitHub
parent 4b07fbaa8a
commit 7a3bdcf3f2
33 changed files with 35 additions and 35 deletions

View File

@@ -35,7 +35,7 @@
#endif
#include <wx/defs.h>
#include <wx/intl.h> // needed for _("translated stings") even if we
#include <wx/intl.h> // needed for _("translated strings") even if we
// don't have libflac available
#include "Import.h"

View File

@@ -64,7 +64,7 @@ extern "C"
// Capabilities that Audacity can handle
//
// This resolves to: (on little endien)
// This resolves to: (on little endian)
//
// "audio/x-raw, "
// "format = (string) {S16LE, S24_32LE, F32LE}, "

View File

@@ -66,7 +66,7 @@ static Importer::RegisteredUnusableImportPlugin registered{
#include <wx/utils.h>
#include <wx/intl.h>
/* ffile.h must be included AFTER at least one other wx header that includes
* wx/setup.h, otherwise #ifdefs erronously collapse it to nothing. This is
* wx/setup.h, otherwise #ifdefs erroneously collapse it to nothing. This is
* a bug in wxWidgets (ffile.h should itself include wx/setup.h), and it
* was a bitch to track down. */
#include <wx/ffile.h>

View File

@@ -220,7 +220,7 @@ void ImportRaw(const AudacityProject &project, wxWindow *parent, const wxString
auto msg = XO("Importing %s").Format( wxFileName::FileName(fileName).GetFullName() );
/* i18n-hint: 'Raw' means 'unprocessed' here and should usually be tanslated.*/
/* i18n-hint: 'Raw' means 'unprocessed' here and should usually be translated.*/
ProgressDialog progress(XO("Import Raw"), msg);
size_t block;