summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Hahn <pmhahn@users.sourceforge.net>2002-07-10 05:38:18 +0000
committerPhilipp Hahn <pmhahn@users.sourceforge.net>2002-07-10 05:38:18 +0000
commit997bb2df1c4c8c368caca7b94add587e11105717 (patch)
treeca294f14e002b052179e1e4f5ca0a0612e6016c4 /src
parentaa37ace6a4213e130d3dc4948f0f8fda9e6c33a7 (diff)
downloadxine-lib-997bb2df1c4c8c368caca7b94add587e11105717.tar.gz
xine-lib-997bb2df1c4c8c368caca7b94add587e11105717.tar.bz2
Fix untranslateable message by ValtrII
CVS patchset: 2241 CVS date: 2002/07/10 05:38:18
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_qt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c
index a43a746f4..65dba499b 100644
--- a/src/demuxers/demux_qt.c
+++ b/src/demuxers/demux_qt.c
@@ -30,7 +30,7 @@
* build_frame_table
* free_qt_info
*
- * $Id: demux_qt.c,v 1.62 2002/07/09 20:39:26 miguelfreitas Exp $
+ * $Id: demux_qt.c,v 1.63 2002/07/10 05:38:18 pmhahn Exp $
*
*/
@@ -1356,7 +1356,7 @@ static int demux_qt_start (demux_plugin_t *this_gen,
this->bih.biHeight);
if (this->qt->audio_codec)
xine_log (this->xine, XINE_LOG_FORMAT,
- _("demux_qt: '%c%c%c%c' audio @ %d Hz, %d bits, %d channel%c\n"),
+ _("demux_qt: '%c%c%c%c' audio @ %d Hz, %d bits, %d %s\n"),
*((char *)&this->qt->audio_codec + 0),
*((char *)&this->qt->audio_codec + 1),
*((char *)&this->qt->audio_codec + 2),
@@ -1364,7 +1364,7 @@ static int demux_qt_start (demux_plugin_t *this_gen,
this->qt->audio_sample_rate,
this->qt->audio_bits,
this->qt->audio_channels,
- (this->qt->audio_channels == 1) ? 0 : 's');
+ (this->qt->audio_channels == 1) ? _("channel") : _("channels"));
/* send start buffers */
xine_demux_control_start(this->xine);