diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_qt.c | 4 | ||||
-rw-r--r-- | src/demuxers/demux_smjpeg.c | 4 | ||||
-rw-r--r-- | src/demuxers/demux_wav.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 6088ee0ab..93a30ad6a 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.71 2002/07/19 03:21:49 miguelfreitas Exp $ + * $Id: demux_qt.c,v 1.72 2002/07/19 14:07:38 pmhahn Exp $ * */ @@ -1434,7 +1434,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) ? _("channel") : _("channels")); + ngettext("channel", "channels", this->qt->audio_channels)); /* send start buffers */ xine_demux_control_start(this->xine); diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c index d9cc2fa0b..4d267e95e 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.4 2002/07/17 18:17:49 miguelfreitas Exp $ + * $Id: demux_smjpeg.c,v 1.5 2002/07/19 14:07:38 pmhahn Exp $ */ #ifdef HAVE_CONFIG_H @@ -412,7 +412,7 @@ this->video_type = BUF_VIDEO_JPEG; this->audio_sample_rate, this->audio_bits, this->audio_channels, - (this->audio_channels == 1) ? _("channel") : _("channels")); + ngettext("channel", "channels", this->audio_channels)); /* send start buffers */ xine_demux_control_start(this->xine); diff --git a/src/demuxers/demux_wav.c b/src/demuxers/demux_wav.c index f39ff4223..b75411914 100644 --- a/src/demuxers/demux_wav.c +++ b/src/demuxers/demux_wav.c @@ -20,7 +20,7 @@ * MS WAV File Demuxer by Mike Melanson (melanson@pcisys.net) * based on WAV specs that are available far and wide * - * $Id: demux_wav.c,v 1.5 2002/07/17 18:17:49 miguelfreitas Exp $ + * $Id: demux_wav.c,v 1.6 2002/07/19 14:07:38 pmhahn Exp $ * */ @@ -314,7 +314,7 @@ static int demux_wav_start (demux_plugin_t *this_gen, this->wave->nSamplesPerSec, this->wave->wBitsPerSample, this->wave->nChannels, - (this->wave->nChannels == 1) ? _("channel") : _("channels")); + ngettext("channel", "channels", this->wave->nChannels)); xine_log(this->xine, XINE_LOG_FORMAT, _("demux_wav: running time = %d min, %d sec\n"), this->data_size / this->wave->nAvgBytesPerSec / 60, |