summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/mid_side_decoder.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/mid_side_decoder.cc b/src/lib/mid_side_decoder.cc
index fe6282261..842d5c8ee 100644
--- a/src/lib/mid_side_decoder.cc
+++ b/src/lib/mid_side_decoder.cc
@@ -89,10 +89,8 @@ MidSideDecoder::input_names () const
{
vector<string> n;
- /// TRANSLATORS: this is the name of the `mid' channel for mid-side decoding
- n.push_back (_("Mid"));
- /// TRANSLATORS: this is the name of the `side' channel for mid-side decoding
- n.push_back (_("Side"));
+ n.push_back (_("Left"));
+ n.push_back (_("Right"));
return n;
}