diff options
author | Philipp Hahn <pmhahn@users.sourceforge.net> | 2002-07-10 06:28:19 +0000 |
---|---|---|
committer | Philipp Hahn <pmhahn@users.sourceforge.net> | 2002-07-10 06:28:19 +0000 |
commit | 3c4c537245a4cbf19a3b0936ee447991590f96d9 (patch) | |
tree | 36eae10bd7938d3b5bd9a0e179d55b4c024b6b0d /src/demuxers/demux_smjpeg.c | |
parent | d447f913da20fd75b474c3e25aac7c5bd882c457 (diff) | |
download | xine-lib-3c4c537245a4cbf19a3b0936ee447991590f96d9.tar.gz xine-lib-3c4c537245a4cbf19a3b0936ee447991590f96d9.tar.bz2 |
Fix untranslateable message by ValtrII/me
CVS patchset: 2243
CVS date: 2002/07/10 06:28:19
Diffstat (limited to 'src/demuxers/demux_smjpeg.c')
-rw-r--r-- | src/demuxers/demux_smjpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c index 860cf48a2..fa26f663e 100644 --- a/src/demuxers/demux_smjpeg.c +++ b/src/demuxers/demux_smjpeg.c @@ -21,7 +21,7 @@ * For more information on the SMJPEG file format, visit: * http://www.lokigames.com/development/smjpeg.php3 * - * $Id: demux_smjpeg.c,v 1.1 2002/07/07 01:24:40 tmmm Exp $ + * $Id: demux_smjpeg.c,v 1.2 2002/07/10 06:28:19 pmhahn Exp $ */ #ifdef HAVE_CONFIG_H @@ -409,7 +409,7 @@ this->video_type = BUF_VIDEO_JPEG; this->bih.biHeight); if (this->audio_type) xine_log (this->xine, XINE_LOG_FORMAT, - _("demux_smjpeg: '%c%c%c%c' audio @ %d Hz, %d bits, %d channel%c\n"), + _("demux_smjpeg: '%c%c%c%c' audio @ %d Hz, %d bits, %d %s\n"), *((char *)&this->audio_codec + 0), *((char *)&this->audio_codec + 1), *((char *)&this->audio_codec + 2), @@ -417,7 +417,7 @@ this->video_type = BUF_VIDEO_JPEG; this->audio_sample_rate, this->audio_bits, this->audio_channels, - (this->audio_channels == 1) ? 0 : 's'); + (this->audio_channels == 1) ? _("channel") : _("channels")); /* send start buffers */ xine_demux_control_start(this->xine); |