From 6c5572a3e91e95c7f92f1110fac91caa241a9a87 Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Wed, 12 Jun 2002 12:22:25 +0000 Subject: Remove no more needed XINE_LOGO. Internationalize all config related stuff. Fix not registered mrl ending in roq/film demuxer. Add bindtextdomain() calls in load_plugins (for audio/video out plugins). CVS patchset: 2066 CVS date: 2002/06/12 12:22:25 --- src/libxvid/xine_decoder.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/libxvid') diff --git a/src/libxvid/xine_decoder.c b/src/libxvid/xine_decoder.c index e33ceb02f..dd6415109 100644 --- a/src/libxvid/xine_decoder.c +++ b/src/libxvid/xine_decoder.c @@ -221,9 +221,9 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { XVID_INIT_PARAM xinit; if (iface_version != 9) { - printf ("xvid: plugin doesn't support plugin API version %d.\n" - "xvid: this means there's a version mismatch between xine and this\n" - "xvid: decoder plugin. Installing current plugins should help.\n", + printf (_("xvid: plugin doesn't support plugin API version %d.\n" + "xvid: this means there's a version mismatch between xine and this\n" + "xvid: decoder plugin. Installing current plugins should help.\n"), iface_version); return NULL; } @@ -231,9 +231,9 @@ video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { xinit.cpu_flags = 0; xvid_init(NULL, 0, &xinit, NULL); if (xinit.api_version != API_VERSION) { - printf ("xvid: there is mismatch between API used by currently installed XviD\n" - "xvid: library (%d.%d) and library used to compile this plugin (%d.%d).\n" - "xvid: Compiling this plugin against current XviD library should help.\n", + printf (_("xvid: there is mismatch between API used by currently installed XviD\n" + "xvid: library (%d.%d) and library used to compile this plugin (%d.%d).\n" + "xvid: Compiling this plugin against current XviD library should help.\n"), xinit.api_version >> 16, xinit.api_version & 0xFFFF, API_VERSION >> 16, API_VERSION & 0xFFFF); return NULL; -- cgit v1.2.3