diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-05 16:20:23 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-05 16:20:23 +0000 |
| commit | 79ce26d031d109177ba4b0f637fa2960345a37a3 (patch) | |
| tree | 987dbb3419f779fbd8192795898f3f93d0291efe /src/lib/util.cc | |
| parent | a79d78d8bb6d51f6662f1f63b9f8fd19e1a0c5f1 (diff) | |
| parent | a476ad31d447b8436326ba1bf448471f321a3ca9 (diff) | |
Merge branch 'master' into 2.0
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index e8f83d4e4..15109eee0 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -756,7 +756,7 @@ ensure_ui_thread () string audio_channel_name (int c) { - assert (MAX_AUDIO_CHANNELS == 8); + assert (MAX_AUDIO_CHANNELS == 12); /* TRANSLATORS: these are the names of audio channels; Lfe (sub) is the low-frequency enhancement channel (sub-woofer). HI is the hearing-impaired audio track and @@ -769,8 +769,12 @@ audio_channel_name (int c) _("Lfe (sub)"), _("Left surround"), _("Right surround"), - _("HI"), - _("VI") + _("Hearing impaired"), + _("Visually impaired"), + _("Left centre"), + _("Right centre"), + _("Left rear surround"), + _("Right rear surround"), }; return channels[c]; |
