Commit e0cde63a authored by Christophe Massiot's avatar Christophe Massiot

* OS X : create dummy fr.lproj etc. directories, so that the Apple menu and...

* OS X : create dummy fr.lproj etc. directories, so that the Apple menu and standard file dialogs be translated too
* modules/gui/wxwindows/open.cpp: fixed a string
* src/misc/configuration.c: don't yell when a config variable disappears
* po/de.po po/it.po: new translations by maintainers
parent 69f1de09
...@@ -469,8 +469,12 @@ VLC.app: vlc $(PLUGIN_FILES) ...@@ -469,8 +469,12 @@ VLC.app: vlc $(PLUGIN_FILES)
$(INSTALL) -m 644 share/*.psf share/*.rle VLC.app/Contents/MacOS/share $(INSTALL) -m 644 share/*.psf share/*.rle VLC.app/Contents/MacOS/share
$(INSTALL) -d VLC.app/Contents/MacOS/locale $(INSTALL) -d VLC.app/Contents/MacOS/locale
for i in $(ALL_LINGUAS); do \ for i in $(ALL_LINGUAS); do \
mkdir -p VLC.app/Contents/MacOS/locale/$${i%}/LC_MESSAGES ; \ mkdir -p VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
cp po/$${i}.gmo VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \ cp po/$${i}.gmo VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
mkdir -p VLC.app/Contents/Resources/$${i}.lproj ; \
ln -sf ../English.lproj/InfoPlist.strings VLC.app/Contents/Resources/$${i}.lproj ; \
ln -sf ../English.lproj/MainMenu.nib VLC.app/Contents/Resources/$${i}.lproj ; \
ln -sf ../English.lproj/vlc.scriptTerminology VLC.app/Contents/Resources/$${i}.lproj ; \
done done
echo -n "APPLVLC#" >| VLC.app/Contents/PkgInfo echo -n "APPLVLC#" >| VLC.app/Contents/PkgInfo
endif endif
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
· ipkg/control · ipkg/control
· debian/changelog · debian/changelog
· extras/MacOSX/vlc.pbprj/project.pbxproj · extras/MacOSX/vlc.pbprj/project.pbxproj
· extras/MacOSX/Resources/English.lproj/InfoPlist.string
- mettre à jour les ChangeLog et la TODO list pour ceux qui auraient - mettre à jour les ChangeLog et la TODO list pour ceux qui auraient
étourdiment oublié de l'updater à chaque commit étourdiment oublié de l'updater à chaque commit
- updater le numéro de version et le timestamp dans : - updater le numéro de version et le timestamp dans :
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* open.cpp : wxWindows plugin for vlc * open.cpp : wxWindows plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: open.cpp,v 1.12 2003/04/01 16:11:43 gbazin Exp $ * $Id: open.cpp,v 1.13 2003/04/06 01:00:07 massiot Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -175,7 +175,7 @@ OpenDialog::OpenDialog( intf_thread_t *_p_intf, Interface *_p_main_interface, ...@@ -175,7 +175,7 @@ OpenDialog::OpenDialog( intf_thread_t *_p_intf, Interface *_p_main_interface,
wxFlexGridSizer *sout_sizer = new wxFlexGridSizer( 2, 1, 20 ); wxFlexGridSizer *sout_sizer = new wxFlexGridSizer( 2, 1, 20 );
sout_checkbox = new wxCheckBox( panel, SoutEnable_Event, sout_checkbox = new wxCheckBox( panel, SoutEnable_Event,
_("Stream output") ); _("Stream output") );
sout_checkbox->SetToolTip( _("Use VLC has a stream server") ); sout_checkbox->SetToolTip( _("Use VLC as a stream server") );
sout_sizer->Add( sout_checkbox, 0, sout_sizer->Add( sout_checkbox, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL ); wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
sout_button = new wxButton( panel, SoutSettings_Event, _("Settings...") ); sout_button = new wxButton( panel, SoutSettings_Event, _("Settings...") );
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vlc 0.73.3\n" "Project-Id-Version: vlc 0.73.3\n"
"POT-Creation-Date: 2003-04-02 00:02+0200\n" "POT-Creation-Date: 2003-04-02 11:26+0200\n"
"PO-Revision-Date: 2002-04-18 23:38+0100\n" "PO-Revision-Date: 2002-04-18 23:38+0100\n"
"Last-Translator: Felix Khne <fk@aenneburghardt.de>\n" "Last-Translator: Felix Khne <fk@aenneburghardt.de>\n"
"Language-Team: \n" "Language-Team: \n"
......
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* configuration.c management of the modules configuration * configuration.c management of the modules configuration
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: configuration.c,v 1.52 2003/03/30 13:23:27 gbazin Exp $ * $Id: configuration.c,v 1.53 2003/04/06 01:00:07 massiot Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -170,7 +170,7 @@ void __config_PutPsz( vlc_object_t *p_this, ...@@ -170,7 +170,7 @@ void __config_PutPsz( vlc_object_t *p_this,
/* sanity checks */ /* sanity checks */
if( !p_config ) if( !p_config )
{ {
msg_Err( p_this, "option %s does not exist", psz_name ); msg_Warn( p_this, "option %s does not exist", psz_name );
return; return;
} }
if( (p_config->i_type!=CONFIG_ITEM_STRING) && if( (p_config->i_type!=CONFIG_ITEM_STRING) &&
...@@ -214,7 +214,7 @@ void __config_PutInt( vlc_object_t *p_this, const char *psz_name, int i_value ) ...@@ -214,7 +214,7 @@ void __config_PutInt( vlc_object_t *p_this, const char *psz_name, int i_value )
/* sanity checks */ /* sanity checks */
if( !p_config ) if( !p_config )
{ {
msg_Err( p_this, "option %s does not exist", psz_name ); msg_Warn( p_this, "option %s does not exist", psz_name );
return; return;
} }
if( (p_config->i_type!=CONFIG_ITEM_INTEGER) && if( (p_config->i_type!=CONFIG_ITEM_INTEGER) &&
...@@ -264,7 +264,7 @@ void __config_PutFloat( vlc_object_t *p_this, ...@@ -264,7 +264,7 @@ void __config_PutFloat( vlc_object_t *p_this,
/* sanity checks */ /* sanity checks */
if( !p_config ) if( !p_config )
{ {
msg_Err( p_this, "option %s does not exist", psz_name ); msg_Warn( p_this, "option %s does not exist", psz_name );
return; return;
} }
if( p_config->i_type != CONFIG_ITEM_FLOAT ) if( p_config->i_type != CONFIG_ITEM_FLOAT )
......
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