summaryrefslogtreecommitdiff
path: root/libs/ardour/sndfile_helpers.cc
diff options
context:
space:
mode:
authorAlexandre Prokoudine <alexandre.prokoudine@gmail.com>2015-12-06 01:00:20 +0100
committerRobin Gareus <robin@gareus.org>2015-12-06 01:00:20 +0100
commit10b715d1ffa24e81eba7f6fe3d4fa98fc637e002 (patch)
treec31de89df946c79f25ebc10aabb4b0b053d0aed7 /libs/ardour/sndfile_helpers.cc
parent9fa4d3c77fca18ed767c5c7d365c65d06b7efc5b (diff)
Normalize user-visible messages to use 8-bit, 16-bit, 24-bit, 32-bit and 64-bit
Diffstat (limited to 'libs/ardour/sndfile_helpers.cc')
-rw-r--r--libs/ardour/sndfile_helpers.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/ardour/sndfile_helpers.cc b/libs/ardour/sndfile_helpers.cc
index 08c57bfec2..1b69ca2d0a 100644
--- a/libs/ardour/sndfile_helpers.cc
+++ b/libs/ardour/sndfile_helpers.cc
@@ -34,7 +34,7 @@ const char * const sndfile_header_formats_strings[SNDFILE_HEADER_FORMATS+1] = {
N_("WAV"),
N_("AIFF"),
N_("CAF"),
- N_("W64 (64 bit WAV)"),
+ N_("W64 (64-bit WAV)"),
N_("FLAC"),
N_("Ogg/Vorbis"),
N_("raw (no header)"),
@@ -63,11 +63,11 @@ int sndfile_header_formats[SNDFILE_HEADER_FORMATS] = {
};
const char * const sndfile_bitdepth_formats_strings[SNDFILE_BITDEPTH_FORMATS+1] = {
- N_("Signed 16 bit PCM"),
- N_("Signed 24 bit PCM"),
- N_("Signed 32 bit PCM"),
- N_("Signed 8 bit PCM"),
- N_("32 bit float"),
+ N_("Signed 16-bit PCM"),
+ N_("Signed 24-bit PCM"),
+ N_("Signed 32-bit PCM"),
+ N_("Signed 8-bit PCM"),
+ N_("32-bit float"),
0
};