Commit 6bbf004e authored by Christophe Massiot's avatar Christophe Massiot

* Updated ChangeLog

* src/libvlc.c: Darwin doesn't have a "translation" config variable
parent 57823d10
2003-04-07 Monday 17:35 gbazin
* po/fr.po: small update.
* modules/codec/libmpeg2.c: we now bypass libmpeg2 buffer management. As a nice side effect, still pictures in dvd menus are working now :)
2003-04-07 Monday 16:02 gbazin
* modules/audio_output/directx.c, modules/audio_output/waveout.c:
cosmetic changes.
2003-04-07 Monday 13:46 gbazin
* src/libvlc.c: fixed the translation config option to also take into
account the value in the config file.
2003-04-07 Monday 13:01 gbazin
* src/libvlc.c: reload the main module in case the user asks for the
translation to be disabled. That way, the translation will even be
disabled in the preferences panel.
2003-04-07 Monday 12:41 hartman
* new dutch translation
* readded Mac OS X readme file to Mac OS X distribution
* fixed some errors in the readme
2003-04-07 Monday 11:48 gbazin
* src/misc/configuration.c: what the f??k, configuration variable names
and subtypes were being translated.
2003-04-07 Monday 09:25 gbazin
* modules/gui/wxwindows/interface.cpp: removed debug message.
2003-04-06 Sunday 23:44 massiot
* Renamed the "headphone" option to "headphone-opt" to avoid error
messages "option headphone does not exist". I'm not clever enough to find
out why it doesn't work when it's named "headphone".
2003-04-06 Sunday 23:21 massiot
* Bumped up revision number to 0.5.3
* po/* : run --update-po before the release
* ChangeLog : run --update-changelog
* toolbox : ChangeLog is UTC
* OS X : fixed a bug with the deinterlace menu and localizations (thanks
Felix)
2003-04-06 Sunday 23:00 hartman
* some small changes/fixes
2003-04-06 Sunday 21:48 gbazin 2003-04-06 Sunday 21:48 gbazin
* po/fr.po: another bunch of updates to the french translation. * po/fr.po: another bunch of updates to the french translation.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libvlc.c: main libvlc source * libvlc.c: main libvlc source
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.75 2003/04/07 13:46:06 gbazin Exp $ * $Id: libvlc.c,v 1.76 2003/04/07 21:51:27 massiot Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -331,6 +331,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] ) ...@@ -331,6 +331,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
config_LoadConfigFile( p_vlc, "main" ); config_LoadConfigFile( p_vlc, "main" );
config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE ); config_LoadCmdLine( p_vlc, &i_argc, ppsz_argv, VLC_TRUE );
# ifndef SYS_DARWIN
if( !config_GetInt( p_vlc, "translation" ) ) if( !config_GetInt( p_vlc, "translation" ) )
{ {
/* Reset the default domain */ /* Reset the default domain */
...@@ -342,6 +343,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] ) ...@@ -342,6 +343,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
module_InitBank( &libvlc ); module_InitBank( &libvlc );
module_LoadMain( &libvlc ); module_LoadMain( &libvlc );
} }
# endif
#endif #endif
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment