diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-12-12 15:43:57 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-12-12 15:43:57 +0000 |
commit | 6d3895b24a2d38e599cbce4df10e805ab0eaca93 (patch) | |
tree | d1f88a85654d65899d5106f6533ada2ac050986e /src | |
parent | 15d6107e3edc9277924cc85b7155170ff27ebb21 (diff) | |
download | xine-lib-6d3895b24a2d38e599cbce4df10e805ab0eaca93.tar.gz xine-lib-6d3895b24a2d38e599cbce4df10e805ab0eaca93.tar.bz2 |
- Czech translation update
- added one plural
- sync po-files
CVS patchset: 7822
CVS date: 2005/12/12 15:43:57
Diffstat (limited to 'src')
-rw-r--r-- | src/post/audio/upmix_mono.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/post/audio/upmix_mono.c b/src/post/audio/upmix_mono.c index c0e4bcf31..62b40e18c 100644 --- a/src/post/audio/upmix_mono.c +++ b/src/post/audio/upmix_mono.c @@ -22,7 +22,7 @@ * This is an up-mix audio filter post plugin. * It simply converts Mono into Stereo. * - * $Id: upmix_mono.c,v 1.3 2005/07/26 17:55:50 miguelfreitas Exp $ + * $Id: upmix_mono.c,v 1.4 2005/12/12 15:44:02 valtri Exp $ * */ @@ -149,7 +149,9 @@ static int upmix_mono_port_open(xine_audio_port_t *port_gen, xine_stream_t *stre } else { if ( this->channels != 1) xprintf(stream->xine, XINE_VERBOSITY_LOG, - _(LOG_MODULE ": upmixing a single channel from original %d channels stream.\n"), this->channels); + ngettext(LOG_MODULE ": upmixing a single channel from original %d channel stream.\n", + LOG_MODULE ": upmixing a single channel from original %d channels stream.\n", + this->channels), this->channels); else { xprintf(stream->xine, XINE_VERBOSITY_LOG, _(LOG_MODULE ": audio device not capable of AO_CAP_MODE_STEREO.\n")); |