summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-10-17 17:57:39 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-10-17 17:57:39 -0400
commit69cbcb84a66cfc48d734692ae0f2f8d8bee4f5b5 (patch)
treea2bf36c34ab526a66a445b3a48a1c3966d6f8c4b /libs
parentc43046320ba6657decbc1dda7f97b9a6402028a6 (diff)
spelling corrections from Jaromír Mikeš <mira.mikes@seznam.cz>
Corresponds to https://anonscm.debian.org/cgit/pkg-multimedia/ardour.git/tree/debian/patches/0070-spelling.patch
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/audio_backend.cc2
-rw-r--r--libs/ardour/file_source.cc2
-rw-r--r--libs/audiographer/src/general/sr_converter.cc2
-rw-r--r--libs/backends/alsa/zita-alsa-pcmi.cc2
4 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/audio_backend.cc b/libs/ardour/audio_backend.cc
index 930eb416bd..6a2b341f61 100644
--- a/libs/ardour/audio_backend.cc
+++ b/libs/ardour/audio_backend.cc
@@ -80,7 +80,7 @@ AudioBackend::get_error_string (ErrorCode error_code)
case OutputChannelCountNotSupportedError:
return _("Output channel count configuration not supported");
case AquireRealtimePermissionError:
- return _("Unable to aquire realtime permissions");
+ return _("Unable to acquire realtime permissions");
case SettingAudioThreadPriorityError:
return _("Setting audio device thread priorities failed");
case SettingMIDIThreadPriorityError:
diff --git a/libs/ardour/file_source.cc b/libs/ardour/file_source.cc
index 726b223273..8b503d4894 100644
--- a/libs/ardour/file_source.cc
+++ b/libs/ardour/file_source.cc
@@ -433,7 +433,7 @@ FileSource::find_2X (Session& s, DataType type, const string& path, bool must_ex
if (cnt > 1) {
error << string_compose (
- _("FileSource: \"%1\" is ambigous when searching\n\t"), pathstr) << endmsg;
+ _("FileSource: \"%1\" is ambiguous when searching\n\t"), pathstr) << endmsg;
goto out;
} else if (cnt == 0) {
diff --git a/libs/audiographer/src/general/sr_converter.cc b/libs/audiographer/src/general/sr_converter.cc
index 74da2ae6a7..1468e6a734 100644
--- a/libs/audiographer/src/general/sr_converter.cc
+++ b/libs/audiographer/src/general/sr_converter.cc
@@ -192,7 +192,7 @@ SampleRateConverter::process (ProcessContext<float> const & c)
if (throw_level (ThrowProcess) && src_data.output_frames_gen == 0 && leftover_frames) {
throw Exception (*this, boost::str (boost::format
- ("No output frames genereated with %1% leftover frames")
+ ("No output frames generated with %1% leftover frames")
% leftover_frames));
}
diff --git a/libs/backends/alsa/zita-alsa-pcmi.cc b/libs/backends/alsa/zita-alsa-pcmi.cc
index 88cdb03740..4c5298f0d9 100644
--- a/libs/backends/alsa/zita-alsa-pcmi.cc
+++ b/libs/backends/alsa/zita-alsa-pcmi.cc
@@ -743,7 +743,7 @@ int Alsa_pcmi::set_hwpar (snd_pcm_t *handle, snd_pcm_hw_params_t *hwpar, const
snd_pcm_hw_params_get_channels_max (hwpar, nchan);
if (*nchan > 1024)
{
- if (_debug & DEBUG_INIT) fprintf (stderr, "Alsa_pcmi: detected more than 1024 %s channnels, reset to 2.\n",
+ if (_debug & DEBUG_INIT) fprintf (stderr, "Alsa_pcmi: detected more than 1024 %s channels, reset to 2.\n",
sname);
*nchan = 2;
}