From 10b715d1ffa24e81eba7f6fe3d4fa98fc637e002 Mon Sep 17 00:00:00 2001 From: Alexandre Prokoudine Date: Sun, 6 Dec 2015 01:00:20 +0100 Subject: Normalize user-visible messages to use 8-bit, 16-bit, 24-bit, 32-bit and 64-bit --- libs/ardour/export_formats.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libs/ardour/export_formats.cc') diff --git a/libs/ardour/export_formats.cc b/libs/ardour/export_formats.cc index 463a09468a..47f68fe464 100644 --- a/libs/ardour/export_formats.cc +++ b/libs/ardour/export_formats.cc @@ -156,19 +156,19 @@ HasSampleFormat::get_sample_format_name (ExportFormatBase::SampleFormat format) { switch (format) { case ExportFormatBase::SF_8: - return _("8bit"); + return _("8-bit"); case ExportFormatBase::SF_16: - return _("16bit"); + return _("16-bit"); case ExportFormatBase::SF_24: - return _("24bit"); + return _("24-bit"); case ExportFormatBase::SF_32: - return _("32bit"); + return _("32-bit"); case ExportFormatBase::SF_Float: return _("float"); case ExportFormatBase::SF_Double: return _("double"); case ExportFormatBase::SF_U8: - return _("8bit unsigned"); + return _("8-bit unsigned"); case ExportFormatBase::SF_Vorbis: return _("Vorbis sample format"); case ExportFormatBase::SF_None: -- cgit v1.2.3