summaryrefslogtreecommitdiff
path: root/src/lib/util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-26 14:54:51 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-26 14:54:51 +0000
commit692c40f6b5a189b2014ed0b8aa3094f2fa93d26a (patch)
tree341b98bb0945017bfc27abc53a1174d226c2f270 /src/lib/util.cc
parentea9e85f7f92d45d0ed3ae0e10c01eaa294ca3a38 (diff)
Fix untranslated sound channel names.
Diffstat (limited to 'src/lib/util.cc')
-rw-r--r--src/lib/util.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc
index 2e4671251..9a7794ce8 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -917,12 +917,12 @@ audio_channel_name (int c)
enhancement channel (sub-woofer)./
*/
string const channels[] = {
- "Left",
- "Right",
- "Centre",
- "Lfe (sub)",
- "Left surround",
- "Right surround",
+ _("Left"),
+ _("Right"),
+ _("Centre"),
+ _("Lfe (sub)"),
+ _("Left surround"),
+ _("Right surround"),
};
return channels[c];