diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-12 12:22:25 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-06-12 12:22:25 +0000 |
commit | 6c5572a3e91e95c7f92f1110fac91caa241a9a87 (patch) | |
tree | 246923aadffab6a78dbbe22865245a5dfb17b597 /src/xine-engine/xine.c | |
parent | 184079276271955bc74954b0cc96298cb5ec4366 (diff) | |
download | xine-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/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index bad6a10ff..d8a7f36c2 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.c,v 1.139 2002/06/10 13:41:55 miguelfreitas Exp $ + * $Id: xine.c,v 1.140 2002/06/12 12:22:38 f1rmb Exp $ * * top-level xine functions * @@ -584,7 +584,7 @@ xine_t *xine_init (vo_driver_t *vo, pthread_mutex_lock (&this->logo_lock); this->logo_mrl = config->register_string(config, "misc.logo_mrl", XINE_LOGO_FILE, - "logo mrl, displayed in video output window", + _("logo mrl, displayed in video output window"), NULL, _logo_change_cb, (void *) this); pthread_mutex_unlock (&this->logo_lock); @@ -596,8 +596,9 @@ xine_t *xine_init (vo_driver_t *vo, #ifdef ENABLE_NLS bindtextdomain("xine-lib", XINE_LOCALEDIR); + textdomain("xine-lib"); #endif - + printf ("xine: xine_init entered\n"); this->err = XINE_ERROR_NONE; |