mirror of
https://github.com/videolan/vlc.git
synced 2025-01-19 14:18:11 +08:00
* 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
This commit is contained in:
parent
69f1de09c1
commit
e0cde63a7d
@ -469,8 +469,12 @@ VLC.app: vlc $(PLUGIN_FILES)
|
||||
$(INSTALL) -m 644 share/*.psf share/*.rle VLC.app/Contents/MacOS/share
|
||||
$(INSTALL) -d VLC.app/Contents/MacOS/locale
|
||||
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 ; \
|
||||
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
|
||||
echo -n "APPLVLC#" >| VLC.app/Contents/PkgInfo
|
||||
endif
|
||||
|
@ -15,6 +15,7 @@
|
||||
· ipkg/control
|
||||
· debian/changelog
|
||||
· 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
|
||||
étourdiment oublié de l'updater à chaque commit
|
||||
- updater le numéro de version et le timestamp dans :
|
||||
|
@ -2,7 +2,7 @@
|
||||
* open.cpp : wxWindows plugin for vlc
|
||||
*****************************************************************************
|
||||
* 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>
|
||||
*
|
||||
@ -175,7 +175,7 @@ OpenDialog::OpenDialog( intf_thread_t *_p_intf, Interface *_p_main_interface,
|
||||
wxFlexGridSizer *sout_sizer = new wxFlexGridSizer( 2, 1, 20 );
|
||||
sout_checkbox = new wxCheckBox( panel, SoutEnable_Event,
|
||||
_("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,
|
||||
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
|
||||
sout_button = new wxButton( panel, SoutSettings_Event, _("Settings...") );
|
||||
|
2
po/de.po
2
po/de.po
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Last-Translator: Felix Kühne <fk@aenneburghardt.de>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -2,7 +2,7 @@
|
||||
* configuration.c management of the modules configuration
|
||||
*****************************************************************************
|
||||
* 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>
|
||||
*
|
||||
@ -170,7 +170,7 @@ void __config_PutPsz( vlc_object_t *p_this,
|
||||
/* sanity checks */
|
||||
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;
|
||||
}
|
||||
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 )
|
||||
/* sanity checks */
|
||||
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;
|
||||
}
|
||||
if( (p_config->i_type!=CONFIG_ITEM_INTEGER) &&
|
||||
@ -264,7 +264,7 @@ void __config_PutFloat( vlc_object_t *p_this,
|
||||
/* sanity checks */
|
||||
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;
|
||||
}
|
||||
if( p_config->i_type != CONFIG_ITEM_FLOAT )
|
||||
|
Loading…
Reference in New Issue
Block a user