From b967397b8a6f2d742a35e3c56599ed982b3264d8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 7 Jan 2013 01:05:10 +0000 Subject: [PATCH] Try to fix plural on audio channels. --- src/wx/film_editor.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 ())); } } -- 2.30.2