From 3a56fa86d04c631143a45bdb34cb0e570e4ca9fb Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 29 Oct 2016 21:52:40 +0100 Subject: [PATCH] Fix attempt to internationalise an empty string causing strange channel names in the mapping view. --- src/lib/util.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/util.cc b/src/lib/util.cc index 38451e931..4eba58e05 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -533,8 +533,8 @@ short_audio_channel_name (int c) _("BsR"), _("DBP"), _("DBS"), - _(""), - _("") + "", + "" }; return channels[c]; -- 2.30.2