diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-12 23:20:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-12 23:20:54 +0100 |
| commit | 972272a73300c4d33ae43d572eb1d11f65e2e544 (patch) | |
| tree | bd7fffb83507dd91aa2af067362b34e1a4d45ae6 /src/lib/mid_side_decoder.cc | |
| parent | bc8b8c28c40d92e1dde3267b74df022b580e7e89 (diff) | |
Fix M/S decoder input names.
Diffstat (limited to 'src/lib/mid_side_decoder.cc')
| -rw-r--r-- | src/lib/mid_side_decoder.cc | 6 |
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; } |
