Fix M/S decoder input names.
authorCarl Hetherington <cth@carlh.net>
Fri, 12 Jun 2015 22:20:54 +0000 (23:20 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 12 Jun 2015 22:20:54 +0000 (23:20 +0100)
src/lib/mid_side_decoder.cc

index fe628226151e652f66ee12096d03c4ef295557fb..842d5c8ee56d066b49a2e631cfa73cabd7eb5d88 100644 (file)
@@ -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;
 }