Fix incorrect conversion of audio from DCP sources (#642).
[dcpomatic.git] / 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;
 }