summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_qt.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
commit6c5572a3e91e95c7f92f1110fac91caa241a9a87 (patch)
tree246923aadffab6a78dbbe22865245a5dfb17b597 /src/demuxers/demux_qt.c
parent184079276271955bc74954b0cc96298cb5ec4366 (diff)
downloadxine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.gz
xine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.bz2
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
Diffstat (limited to 'src/demuxers/demux_qt.c')
-rw-r--r--src/demuxers/demux_qt.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c
index 7ffcecbc8..4b6eeaf40 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.51 2002/06/09 11:12:22 miguelfreitas Exp $
+ * $Id: demux_qt.c,v 1.52 2002/06/12 12:22:33 f1rmb Exp $
*
*/
@@ -1204,9 +1204,9 @@ static int demux_qt_open(demux_plugin_t *this_gen,
return DEMUX_CANNOT_HANDLE;
xine_strdupa(valid_ends, (this->config->register_string(this->config,
- "mrl.ends_qt", VALID_ENDS,
- "valid mrls ending for qt demuxer",
- NULL, NULL, NULL)));
+ "mrl.ends_qt", VALID_ENDS,
+ _("valid mrls ending for qt demuxer"),
+ NULL, NULL, NULL)));
while((m = xine_strsep(&valid_ends, ",")) != NULL) {
while(*m == ' ' || *m == '\t') m++;
@@ -1437,10 +1437,9 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
demux_qt_t *this;
if (iface != 9) {
- printf ("demux_qt: plugin doesn't support plugin API version %d.\n"
- " this means there's a version mismatch between xine and this "
- " demuxer plugin.\nInstalling current demux plugins should
-help.\n",
+ printf (_("demux_qt: plugin doesn't support plugin API version %d.\n"
+ " this means there's a version mismatch between xine and this "
+ " demuxer plugin.\nInstalling current demux plugins should help.\n"),
iface);
return NULL;
}
@@ -1451,7 +1450,7 @@ help.\n",
(void*) this->config->register_string(this->config,
"mrl.ends_qt", VALID_ENDS,
- "valid mrls ending for qt demuxer",
+ _("valid mrls ending for qt demuxer"),
NULL, NULL, NULL);
this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;