From: Carl Hetherington Date: Mon, 7 Jan 2013 01:05:10 +0000 (+0000) Subject: Try to fix plural on audio channels. X-Git-Tag: v2.0.48~1354^2~7 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=b967397b8a6f2d742a35e3c56599ed982b3264d8;p=dcpomatic.git Try to fix plural on audio channels. --- diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 22fd1cc14..dece24568 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -1075,7 +1075,12 @@ FilmEditor::setup_audio_details () _audio->SetLabel (wxT ("")); } else { stringstream s; - s << _film->audio_stream()->channels () << " channels, " << _film->audio_stream()->sample_rate() << "Hz"; + if (_film->audio_stream()->channels() == 1) { + s << "1 channel"; + } else { + s << _film->audio_stream()->channels () << " channels"; + } + s << ", " << _film->audio_stream()->sample_rate() << "Hz"; _audio->SetLabel (std_to_wx (s.str ())); } }