[vlc-commits] lua: remove variable callback

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Mon Oct 10 
00:55:22 2011 +0200| [b29deba6610693055b031a36d45460be7a899688] | committer: 
Jean-Baptiste Kempf

lua: remove variable callback

Close #5271, #5430

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b29deba6610693055b031a36d45460be7a899688
---

 modules/lua/extension.c |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/modules/lua/extension.c b/modules/lua/extension.c
index 5281f58..8619910 100644
--- a/modules/lua/extension.c
+++ b/modules/lua/extension.c
@@ -99,7 +99,7 @@ static void inputItemMetaChanged( const vlc_event_t *p_event,
  **/
 int Open_Extension( vlc_object_t *p_this )
 {
-msg_Dbg( p_this, "Opening EXPERIMENTAL Lua Extension module" );
+msg_Dbg( p_this, "Opening Lua Extension module" );
 
 extensions_manager_t *p_mgr = ( extensions_manager_t* ) p_this;
 
@@ -189,6 +189,9 @@ void Close_Extension( vlc_object_t *p_this )
 FOREACH_END()
 
 ARRAY_RESET( p_mgr->extensions );
+
+var_DelCallback( p_this, "dialog-event",
+ vlclua_extension_dialog_callback, NULL );
 }
 
 /**

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] MacOS: remove some callbacks

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Mon Oct 10 
00:49:29 2011 +0200| [50036f112eecb9fd7c95c176ec20e5089b806b43] | committer: 
Jean-Baptiste Kempf

MacOS: remove some callbacks

Ref: #5427

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=50036f112eecb9fd7c95c176ec20e5089b806b43
---

 modules/gui/macosx/intf.m |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 2626729..f6eea48 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -557,7 +557,7 @@ static VLCMain *_o_sharedMainInstance = nil;
 
 val.b_bool = false;
 
-var_AddCallback( p_playlist, "fullscreen", FullscreenChanged, self);
+var_AddCallback(p_playlist, "fullscreen", FullscreenChanged, self);
 var_AddCallback( p_intf->p_libvlc, "intf-toggle-fscontrol", 
ShowController, self);
 //var_AddCallback(p_playlist, "item-change", PLItemChanged, self);
 var_AddCallback(p_playlist, "item-current", PLItemChanged, self);
@@ -701,6 +701,8 @@ static VLCMain *_o_sharedMainInstance = nil;
 var_DelCallback(p_playlist, "loop", PlaybackModeUpdated, self);
 var_DelCallback(p_playlist, "volume", VolumeUpdated, self);
 var_DelCallback(p_playlist, "mute", VolumeUpdated, self);
+var_DelCallback(p_playlist, "fullscreen", FullscreenChanged, self);
+var_DelCallback(p_intf->p_libvlc, "intf-toggle-fscontrol", ShowController, 
self);
 
 /* remove global observer watching for vout device changes correctly */
 [[NSNotificationCenter defaultCenter] removeObserver: self];

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Qt: correctly delete callbacks

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Mon Oct 10 
00:45:26 2011 +0200| [8dd297088ecc14cfda5297da53125b6421a32b12] | committer: 
Jean-Baptiste Kempf

Qt: correctly delete callbacks

Close #5429

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8dd297088ecc14cfda5297da53125b6421a32b12
---

 modules/gui/qt4/main_interface.cpp |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/main_interface.cpp 
b/modules/gui/qt4/main_interface.cpp
index 3b46fc4..3589d91 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -234,7 +234,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : 
QVLCMW( _p_intf )
  /
 var_AddCallback( p_intf->p_libvlc, "intf-toggle-fscontrol", IntfShowCB, 
p_intf );
 var_AddCallback( p_intf->p_libvlc, "intf-boss", IntfBossCB, p_intf );
-var_AddCallback( p_intf->p_libvlc,"intf-show", IntfRaiseMainCB, p_intf );
+var_AddCallback( p_intf->p_libvlc, "intf-show", IntfRaiseMainCB, p_intf );
 
 /* Register callback for the intf-popupmenu variable */
 var_AddCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
@@ -320,6 +320,7 @@ MainInterface::~MainInterface()
 
 /* Unregister callbacks */
 var_DelCallback( p_intf->p_libvlc, "intf-boss", IntfBossCB, p_intf );
+var_DelCallback( p_intf->p_libvlc, "intf-show", IntfRaiseMainCB, p_intf );
 var_DelCallback( p_intf->p_libvlc, "intf-toggle-fscontrol", IntfShowCB, 
p_intf );
 var_DelCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
 

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Qt: fix quitting deletion order

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Mon Oct 10 
00:35:45 2011 +0200| [af2f52eb5cb4e5f6e42f3b26e34beab2f69c1e61] | committer: 
Jean-Baptiste Kempf

Qt: fix quitting deletion order

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=af2f52eb5cb4e5f6e42f3b26e34beab2f69c1e61
---

 modules/gui/qt4/qt4.cpp |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp
index 2df7d54..96ce80d 100644
--- a/modules/gui/qt4/qt4.cpp
+++ b/modules/gui/qt4/qt4.cpp
@@ -554,12 +554,12 @@ static void *Thread( void *obj )
 else
 getSettings()->remove( "filedialog-path" );
 
-/* Delete the configuration. Application has to be deleted after that. */
-delete p_intf->p_sys->mainSettings;
-
 /* */
 delete p_intf->p_sys->pl_model;
 
+/* Delete the configuration. Application has to be deleted after that. */
+delete p_intf->p_sys->mainSettings;
+
 /* Destroy the MainInputManager */
 MainInputManager::killInstance();
 

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Freetype: fix double-free in error path

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Mon Oct 10 
00:00:14 2011 +0200| [2d4cdd7ab6ec8d58df38558f15d03b36d9c888ef] | committer: 
Jean-Baptiste Kempf

Freetype: fix double-free in error path

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2d4cdd7ab6ec8d58df38558f15d03b36d9c888ef
---

 modules/text_renderer/freetype.c |7 ---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/modules/text_renderer/freetype.c b/modules/text_renderer/freetype.c
index 069e01d..fe14eda 100644
--- a/modules/text_renderer/freetype.c
+++ b/modules/text_renderer/freetype.c
@@ -2594,9 +2594,6 @@ static int Create( vlc_object_t *p_this )
  psz_fontfile ? psz_fontfile : "(null)" );
 goto error;
 }
-#ifdef HAVE_STYLES
-free( psz_fontfile );
-#endif
 
 i_error = FT_Select_Charmap( p_sys->p_face, ft_encoding_unicode );
 if( i_error )
@@ -2627,6 +2624,10 @@ static int Create( vlc_object_t *p_this )
 
 LoadFontsFromAttachments( p_filter );
 
+#ifdef HAVE_STYLES
+free( psz_fontfile );
+#endif
+
 return VLC_SUCCESS;
 
 error:

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Qt: kill a warning

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Sun Oct  9 
23:51:35 2011 +0200| [f78dcaccdf60ded4291d6a85e0224e7ec6c7d0a3] | committer: 
Jean-Baptiste Kempf

Qt: kill a warning

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f78dcaccdf60ded4291d6a85e0224e7ec6c7d0a3
---

 modules/gui/qt4/qt4.cpp |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp
index b1b3e15..2df7d54 100644
--- a/modules/gui/qt4/qt4.cpp
+++ b/modules/gui/qt4/qt4.cpp
@@ -38,6 +38,7 @@
 #include "dialogs/help.hpp" /* Launch Update */
 #include "recents.hpp"  /* Recents Item destruction */
 #include "util/qvlcapp.hpp" /* QVLCApplication definition */
+#include "components/playlist/playlist_model.hpp" /* for ~PLModel() */
 #include 
 
 #ifdef Q_WS_X11

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Qt: export PLModel in the main struct

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Fri Oct  7 
18:25:52 2011 +0200| [a8bf114168e22da27e28b6b4473c11ec8a57bc28] | committer: 
Jean-Baptiste Kempf

Qt: export PLModel in the main struct

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a8bf114168e22da27e28b6b4473c11ec8a57bc28
---

 modules/gui/qt4/components/playlist/playlist.cpp   |2 +-
 .../gui/qt4/components/playlist/playlist_model.hpp |   13 +
 modules/gui/qt4/qt4.cpp|4 
 modules/gui/qt4/qt4.hpp|9 ++---
 4 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/modules/gui/qt4/components/playlist/playlist.cpp 
b/modules/gui/qt4/components/playlist/playlist.cpp
index 7193040..296d117 100644
--- a/modules/gui/qt4/components/playlist/playlist.cpp
+++ b/modules/gui/qt4/components/playlist/playlist.cpp
@@ -94,7 +94,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget 
*_par )
 
 setMinimumWidth( 400 );
 
-PLModel *model = new PLModel( p_playlist, p_intf, p_root, this );
+PLModel *model = PLModel::getPLModel( p_intf );
 #ifdef MEDIA_LIBRARY
 MLModel *mlmodel = new MLModel( p_intf, this );
 mainView = new StandardPLPanel( this, p_intf, p_root, selector, model, 
mlmodel );
diff --git a/modules/gui/qt4/components/playlist/playlist_model.hpp 
b/modules/gui/qt4/components/playlist/playlist_model.hpp
index d1bf758..4fc4109 100644
--- a/modules/gui/qt4/components/playlist/playlist_model.hpp
+++ b/modules/gui/qt4/components/playlist/playlist_model.hpp
@@ -56,6 +56,19 @@ public:
  playlist_item_t *, QObject *parent = 0 );
 virtual ~PLModel();
 
+static PLModel* getPLModel( intf_thread_t *p_intf )
+{
+if(!p_intf->p_sys->pl_model )
+{
+playlist_Lock( THEPL );
+playlist_item_t *p_root = THEPL->p_playing;
+playlist_Unlock( THEPL );
+p_intf->p_sys->pl_model = new PLModel( THEPL, p_intf, p_root, NULL 
);
+}
+
+return p_intf->p_sys->pl_model;
+}
+
 /*** QModel subclassing ***/
 
 /* Data structure */
diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp
index c8a32b7..b1b3e15 100644
--- a/modules/gui/qt4/qt4.cpp
+++ b/modules/gui/qt4/qt4.cpp
@@ -356,6 +356,7 @@ static int Open( vlc_object_t *p_this, bool 
isDialogProvider )
 intf_sys_t *p_sys = p_intf->p_sys = new intf_sys_t;
 p_intf->p_sys->b_isDialogProvider = isDialogProvider;
 p_sys->p_mi = NULL;
+p_sys->pl_model = NULL;
 
 /* */
 vlc_sem_init (&ready, 0);
@@ -555,6 +556,9 @@ static void *Thread( void *obj )
 /* Delete the configuration. Application has to be deleted after that. */
 delete p_intf->p_sys->mainSettings;
 
+/* */
+delete p_intf->p_sys->pl_model;
+
 /* Destroy the MainInputManager */
 MainInputManager::killInstance();
 
diff --git a/modules/gui/qt4/qt4.hpp b/modules/gui/qt4/qt4.hpp
index 6d0ce5f..3e904e8 100644
--- a/modules/gui/qt4/qt4.hpp
+++ b/modules/gui/qt4/qt4.hpp
@@ -53,22 +53,25 @@ class QVLCApp;
 class QMenu;
 class MainInterface;
 class QSettings;
+class PLModel;
 
 struct intf_sys_t
 {
 vlc_thread_t thread;
 
 QVLCApp *p_app;  /* Main Qt Application */
+
 MainInterface *p_mi; /* Main Interface, NULL if DialogProvider Mode */
 
 QSettings *mainSettings; /* Qt State settings not messing main VLC ones */
 
-bool b_isDialogProvider; /* Qt mode or Skins mode */
-
-int  i_screenHeight; /* Detection of Small screens */
+PLModel *pl_model;
 
 QString filepath;/* Last path used in dialogs */
 
+int  i_screenHeight; /* Detection of Small screens */
+
+bool b_isDialogProvider; /* Qt mode or Skins mode */
 #ifdef WIN32
 bool disable_volume_keys;
 #endif

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Qt: first attempt at a QMenuView

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Fri Oct  7 
17:07:06 2011 +0200| [6196b0322f5f89b7c27c4b985faa662f98be777c] | committer: 
Jean-Baptiste Kempf

Qt: first attempt at a QMenuView

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6196b0322f5f89b7c27c4b985faa662f98be777c
---

 modules/gui/qt4/Modules.am |3 +
 modules/gui/qt4/util/qmenuview.cpp |  123 
 modules/gui/qt4/util/qmenuview.hpp |   57 +
 3 files changed, 183 insertions(+), 0 deletions(-)

diff --git a/modules/gui/qt4/Modules.am b/modules/gui/qt4/Modules.am
index e3c9310..22c2277 100644
--- a/modules/gui/qt4/Modules.am
+++ b/modules/gui/qt4/Modules.am
@@ -70,6 +70,7 @@ nodist_SOURCES_qt4 = \
util/timetooltip.moc.cpp \
util/customwidgets.moc.cpp \
util/searchlineedit.moc.cpp \
+   util/qmenuview.moc.cpp \
util/qvlcapp.moc.cpp \
util/pictureflow.moc.cpp \
util/buttons/RoundButton.moc.cpp \
@@ -309,6 +310,7 @@ SOURCES_qt4 =   qt4.cpp \
util/customwidgets.cpp \
util/searchlineedit.cpp \
util/registry.cpp \
+   util/qmenuview.cpp \
util/qt_dirs.cpp \
util/pictureflow.cpp \
util/buttons/BrowseButton.cpp \
@@ -389,6 +391,7 @@ noinst_HEADERS = \
util/searchlineedit.hpp \
util/qvlcframe.hpp \
util/qvlcapp.hpp \
+   util/qmenuview.hpp \
util/qt_dirs.hpp \
util/registry.hpp \
util/pictureflow.hpp \
diff --git a/modules/gui/qt4/util/qmenuview.cpp 
b/modules/gui/qt4/util/qmenuview.cpp
new file mode 100644
index 000..d409812
--- /dev/null
+++ b/modules/gui/qt4/util/qmenuview.cpp
@@ -0,0 +1,123 @@
+/*
+ * QMenuView
+ 
+ * Copyright © 2011 VLC authors and VideoLAN
+ * $Id$
+ *
+ * Authors: Jean-Baptiste Kempf 
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 
USA.
+ */
+
+#include "qt4.hpp"
+#include "util/qmenuview.hpp"
+
+#include "components/playlist/vlc_model.hpp" /* data( IsCurrentRole ) */
+
+#include 
+#include 
+#include 
+
+
+/***
+ * This is a simple view, like a QListView, but displayed as a QMenu
+ * So far, this is quite limited.
+ *
+ * This is now linked to VLC's models. It should be splittable in the future.
+ *
+ * TODO: - limit the number of the menu, as a Q_PROPERTY
+ *   - limit the width of the entries
+ *   - deal with a root item
+ ***/
+
+Q_DECLARE_METATYPE(QModelIndex); // So we can store it in a QVariant
+
+QMenuView::QMenuView( QWidget * parent )
+  : QMenu( parent )
+{
+m_model = NULL;
+
+/* Rebuild the Menu just before showing it */
+CONNECT( this, aboutToShow(), this, rebuild() );
+
+/* */
+CONNECT( this, triggered(QAction*), this, activate(QAction*) );
+}
+
+/* */
+void QMenuView::rebuild()
+{
+if( !m_model )
+return;
+
+/* Clear all Items */
+clear();
+
+/* Rebuild from root */
+build( QModelIndex() );
+}
+
+/* */
+void QMenuView::build( const QModelIndex &parent )
+{
+for( int i = 0; i < m_model->rowCount( parent ); i++ )
+{
+QModelIndex idx = m_model->index(i, 0, parent);
+if( m_model->hasChildren( idx ) )
+{
+build( idx );
+}
+else
+{
+addAction( createActionFromIndex( idx ) );
+}
+}
+}
+
+/* Create individual actions */
+QAction* QMenuView::createActionFromIndex( QModelIndex index )
+{
+QIcon icon = qvariant_cast( index.data( Qt::DecorationRole ) );
+QAction * action = new QAction( icon, index.data().toString(), this );
+
+/* Display in bold the active element */
+if( index.data( VLCModel::IsCurrentRole ).toBool() )
+{
+QFont font; font.setBold ( true );
+action->setFont( font );
+}
+
+/* Some items could be hypothetically disabled */
+action->setEnabled( index.flags().testFlag( Qt::ItemIsEnabled ) );
+
+/* */
+QVariant variant; variant.setValue( index );
+action->setData( var

[vlc-commits] Qt: Adding a Fast Playlist access in the right-click menus

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Fri Oct  7 
18:58:09 2011 +0200| [50a2677b2d7c7f675fbffa6597655c10886ae09c] | committer: 
Jean-Baptiste Kempf

Qt: Adding a Fast Playlist access in the right-click menus

As asked by Laurent
Close #4722

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=50a2677b2d7c7f675fbffa6597655c10886ae09c
---

 modules/gui/qt4/menus.cpp |   27 +++
 1 files changed, 19 insertions(+), 8 deletions(-)

diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index 3c2b403..197bb88 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -36,17 +36,19 @@
 
 #include 
 #include 
-#include   /* vout_thread_t */
-#include 
+#include  /* vout_thread_t */
+#include  /* audio_output_t */
 
 #include "menus.hpp"
 
-#include "main_interface.hpp"  /* View modifications */
-#include "dialogs_provider.hpp"/* Dialogs display */
-#include "input_manager.hpp"   /* Input Management */
-#include "recents.hpp" /* Recent Items */
-#include "actions_manager.hpp" /* Actions Management: play+volume */
-#include "extensions_manager.hpp"  /* Extensions menu*/
+#include "main_interface.hpp" /* View modifications */
+#include "dialogs_provider.hpp"   /* Dialogs display */
+#include "input_manager.hpp"  /* Input Management */
+#include "recents.hpp"/* Recent Items */
+#include "actions_manager.hpp"/* Actions Management: 
play+volume */
+#include "extensions_manager.hpp" /* Extensions menu */
+#include "util/qmenuview.hpp" /* Simple Playlist menu */
+#include "components/playlist/playlist_model.hpp" /* PLModel getter */
 
 #include 
 #include 
@@ -1062,6 +1064,15 @@ void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool 
show )
 menu->addMenu( submenu );
 }
 
+/* */
+QMenuView *plMenu = new QMenuView( menu );
+plMenu->setTitle( qtr("Playlist") );
+PLModel *model = PLModel::getPLModel( p_intf );
+plMenu->setModel( model );
+CONNECT( plMenu, activated(const QModelIndex&),
+ model, activateItem(const QModelIndex&));
+menu->addMenu( plMenu );
+
 /* Static entries for ending, like open */
 PopupMenuStaticEntries( menu );
 

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Update NEWS for TS

2011-10-09 Thread Jean-Baptiste Kempf
vlc | branch: master | Jean-Baptiste Kempf  | Sun Oct  9 
14:16:10 2011 +0200| [c98e449b8bdaae59fc6e85be69ce36e2c2cba9f9] | committer: 
Jean-Baptiste Kempf

Update NEWS for TS

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c98e449b8bdaae59fc6e85be69ce36e2c2cba9f9
---

 NEWS |   39 +--
 1 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/NEWS b/NEWS
index 3bbb98f..97f1388 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,8 @@ Important notes:
Use --rtsp-host and --rtsp-port respectively.
  * The --miface-addr option does not exist anymore. To select the multicast
output interface, use --miface instead, e.g. --miface=eth0.
+ * The Windows version will only work with Windows XP SP2 or later.
+   Windows 2000 SP4, Windows XP < SP2, Windows 2003 SP0 are now unsupported.
 
 Important changes for packagers:
  * The default builds now assume that the operating system uses UTF-8 for
@@ -35,8 +37,6 @@ Important changes for packagers:
  * The default tarballs are now compressed with XZ/LZMA: .tar.xz
  * OSS support is not compiled on Linux by default, pass --enable-oss to the
configure script if you use OSSv4 or really want to use OSS emulation.
- * The Windows version will only work with Windows XP SP2 or later.
-   Windows 2000 SP4, Windows XP < SP2, Windows 2003 SP0 are now unsupported.
 
  * The NPAPI webplugin has moved to git://git.videolan.org/npapi-vlc.git
  * The ActiveX webplugin has moved to git://git.videolan.org/activex-vlc.git
@@ -92,16 +92,17 @@ Demuxers:
  * Support for caf, mtv, awb, f4v, amr, vro (DVD-VR) files
  * Ogg, flv, mxf, amr seeking improvements
  * Major improvements in Matroska (mkv) chapters/segments handling
+ * Support for duration and better seeking in Mpeg-TS files (.ts, .m2ts, .mts)
 
 Interfaces:
- * Skins2 / Qt: misc improvements and usability fixes
  * Qt: effects dialogs rework
  * Qt: new CoverFlow-like view of the playlist
  * Qt: port to MacOS X platform
+ * Qt: small look improvements
+ * Skins2 / Qt: misc improvements and usability fixes
  * Skins2: fullscreen controller support, relative placement support
and important cleanups and optimisations
- * ncurses: heavy refactor of the complete interface
- * Mac OS X: re-written Main Window, which also includes the Video Output
+ * Mac OS X: re-written Main Window, which also includes the Video Windows
  * Mac OS X: new Audio Effects panel adding Compressor and Spatializer filters
  * Mac OS X: new Track Synchronization panel
  * Mac OS X: new Video Effects panel for color and geometry adjustments
@@ -109,6 +110,7 @@ Interfaces:
  * Mac OS X: support for the native fullscreen mode on OS X Lion
  * Mac OS X: enhanced AppleScript support
  * The rc and telnet lua interfaces were merged into a new "cli" interface
+ * ncurses: heavy refactor of the complete interface
  * dbus: Rewrite of the main loop to use a more efficient poll-based model
  * dbus: Upgrade to an mpris2 compliant interface, see http://www.mpris.org
  * webUI/http: Rewrite of the web interface, using jQuery
@@ -125,15 +127,16 @@ Video Output:
chroma conversion
  * New video output for Android platform, based on Surface
  * Support for 9/10bits output in the OpenGL output
- * Updated OpenGL video output for Mac, which now requires a
-   Quartz Extreme capable machine
+ * Updated OpenGL video output for Mac, requires a Quartz Extreme capable 
machine
 
-Audio Output:
+Audio Output and Filters:
  * New audio output based on AudioQueue API for iOS
  * New audio output in memory (amem)
  * Important simplification and improvements in the core audio output
  * New audio output based on OpenSL ES API for Android
  * New audio resampler using the Secret Rabbit Code (a.k.a. libsamplerate)
+ * New Compressor filter, a dynamic range compressor
+ * New simplistic Karaoke filter
 
 Video Filter:
  * New gradfun filter for debanding videos using dithering
@@ -148,12 +151,8 @@ Video Filter:
  * New OpenMAX DL IPCS filter for color space conversion and resizing
  * Major improvements in the freetype text-rendering module, notably supporting
blackbox and customizable shadow
-   - The freetype module is used by default on the Mac now in favor of
- quartztext, which can still be enabled manually
-
-Audio Filter:
- * New Compressor filter, a dynamic range compressor
- * New simplistic Karaoke filter
+   NB: The freetype module is now used by default on the Mac OS X instead of
+   the quartztext module, which can still be enabled manually.
 
 Stream output:
  * New livehttp-module for HTTP Live Streaming (IETF draft) output
@@ -995,7 +994,8 @@ Demuxers:
 
 Access:
  * Add extra caching for files on network shares
- * Prevent integer underflow in Real pseudo-RTSP module, discovered by tixxDZ, 
DZCORE Labs, Algeria
+ * Prevent integer underflow in Real pseudo-RTSP module, discovered by tixxDZ,
+   DZCORE Labs, Algeria
 
 Decoders:
  * Fix seeking in mpeg2 video files
@@ -1020,7 +1020,8 @@ Mac OS X Interface:

[vlc-commits] l10n: German update

2011-10-09 Thread Mario Siegmann
vlc | branch: master | Mario Siegmann  | Sun Oct  9 
20:56:37 2011 +0100| [1149d39956d1499ce4183ddaa8bbe0363e3b8f25] | committer: 
Christophe Mutricy

l10n: German update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1149d39956d1499ce4183ddaa8bbe0363e3b8f25
---

 po/de.po |   21 +++--
 1 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/po/de.po b/po/de.po
index 9e5f03f..aaa790a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,5 +1,5 @@
 # German translation of VLC
-# (c) 2002-2010 the VideoLAN team
+# (c) 2002-2011 the VideoLAN team
 # $Id$
 #
 # Thanks to Thomas Graf  for starting a translation in 2002.
@@ -17,10 +17,10 @@ msgstr ""
 "Project-Id-Version: VLC 1.1.x\n"
 "Report-Msgid-Bugs-To: vlc-de...@videolan.org\n"
 "POT-Creation-Date: 2011-10-09 17:15+0100\n"
-"PO-Revision-Date: 2011-05-20 22:29+0100\n"
+"PO-Revision-Date: 2011-10-06 21:25+0100\n"
 "Last-Translator: Mario Siegmann \n"
 "Language-Team: German\n"
-"Language: de\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -16552,17 +16552,19 @@ msgstr "VLC Debug-Protokoll (%s).rtfd"
 
 #: modules/gui/macosx/intf.m:1955
 msgid "Relaunch required"
-msgstr ""
+msgstr "Neustart erforderlich"
 
 #: modules/gui/macosx/intf.m:1956
 msgid ""
 "To make sure that VLC no longer listens to your media key events, it needs "
 "to be restarted."
 msgstr ""
+"Um sicher zu gehen, dass der VLC nicht länger auf Ereignisse der "
+"Medientasten wartet, ist ein Neustart notwendig."
 
 #: modules/gui/macosx/intf.m:1957
 msgid "Relaunch VLC"
-msgstr ""
+msgstr "VLC Neustarten"
 
 #: modules/gui/macosx/macosx.m:55
 msgid "Video device"
@@ -17404,8 +17406,7 @@ msgstr "Automatisch nach Updates suchen"
 
 #: modules/gui/macosx/simple_prefs.m:268
 msgid "Enable Growl notifications (on playlist item change)"
-msgstr ""
-"Growl-Benachrichtigungen aktivieren (nach Wechsel des Wiedergabeobjekts)"
+msgstr "Growl-Nachrichten aktivieren (nach Wechsel des Wiedergabeobjekts)"
 
 #: modules/gui/macosx/simple_prefs.m:271
 msgid "Default Encoding"
@@ -26799,9 +26800,9 @@ msgid ""
 "requires YV12/I420 fourcc. By default vlc writes the fourcc of the picture "
 "frame into the output destination."
 msgstr ""
-"Der YUV4MPEG2 Header ist kompatibel mit der mplayer yuv Video Ausgabe und "
-"benötigt YV12/I420 fourcc. Standardmäßig schreibt VLC den fourcc des Picture "
-"Frames in das Ausgabeziel. "
+"Der YUV4MPEG2-Header ist kompatibel mit der mplayer yuv Video-Ausgabe und "
+"benötigt YV12/I420 fourcc. Standardmäßig schreibt VLC den fourcc des Picture-"
+"Frames in das Ausgabeziel."
 
 #: modules/video_output/yuv.c:59
 msgid "YUV output"

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Estonian update

2011-10-09 Thread Mihkel Kirjutas
vlc | branch: master | Mihkel Kirjutas  | Sun Oct  9 
20:56:09 2011 +0100| [beb2cf0cab34e355db71992c3c823883f957aa4c] | committer: 
Christophe Mutricy

l10n: Estonian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=beb2cf0cab34e355db71992c3c823883f957aa4c
---

 po/et.po |  180 ++
 1 files changed, 134 insertions(+), 46 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=beb2cf0cab34e355db71992c3c823883f957aa4c
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Fix previous Estonian update

2011-10-09 Thread Mihkel Kirjutas
vlc/vlc-1.1 | branch: master | Mihkel Kirjutas  | Sun Oct  9 
20:50:50 2011 +0100| [e3b5535b5903152eb3b3fdacb1e4a4d47482e2d0] | committer: 
Christophe Mutricy

l10n: Fix previous Estonian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=e3b5535b5903152eb3b3fdacb1e4a4d47482e2d0
---

 po/et.po |  169 ++
 1 files changed, 125 insertions(+), 44 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commitdiff;h=e3b5535b5903152eb3b3fdacb1e4a4d47482e2d0
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: German update

2011-10-09 Thread Mario Siegmann
vlc/vlc-1.1 | branch: master | Mario Siegmann  | Sun Oct 
 9 20:51:45 2011 +0100| [fae6303598131ae6e1ca1987e07c83f77760b4ef] | committer: 
Christophe Mutricy

l10n: German update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=fae6303598131ae6e1ca1987e07c83f77760b4ef
---

 po/de.po |   19 ++-
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/po/de.po b/po/de.po
index 9bb5ab7..71f3aa1 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,5 +1,5 @@
 # German translation of VLC
-# (c) 2002-2010 the VideoLAN team
+# (c) 2002-2011 the VideoLAN team
 # $Id$
 #
 # Thanks to Thomas Graf  for starting a translation in 2002.
@@ -17,7 +17,7 @@ msgstr ""
 "Project-Id-Version: VLC 1.1.x\n"
 "Report-Msgid-Bugs-To: vlc-de...@videolan.org\n"
 "POT-Creation-Date: 2011-10-06 20:33+0300\n"
-"PO-Revision-Date: 2011-05-20 22:29+0100\n"
+"PO-Revision-Date: 2011-10-06 21:25+0100\n"
 "Last-Translator: Mario Siegmann \n"
 "Language-Team: German\n"
 "Language: \n"
@@ -15495,17 +15495,19 @@ msgstr "VLC Debug-Protokoll (%s).rtfd"
 
 #: modules/gui/macosx/intf.m:2857
 msgid "Relaunch required"
-msgstr ""
+msgstr "Neustart erforderlich"
 
 #: modules/gui/macosx/intf.m:2858
 msgid ""
 "To make sure that VLC no longer listens to your media key events, it needs "
 "to be restarted."
 msgstr ""
+"Um sicher zu gehen, dass der VLC nicht länger auf Ereignisse der "
+"Medientasten wartet, ist ein Neustart notwendig."
 
 #: modules/gui/macosx/intf.m:2859
 msgid "Relaunch VLC"
-msgstr ""
+msgstr "VLC Neustarten"
 
 #: modules/gui/macosx/macosx.m:53
 msgid "Video device"
@@ -16370,8 +16372,7 @@ msgstr "Automatisch nach Updates suchen"
 
 #: modules/gui/macosx/simple_prefs.m:275
 msgid "Enable Growl notifications (on playlist item change)"
-msgstr ""
-"Growl-Benachrichtigungen aktivieren (nach Wechsel des Wiedergabeobjekts)"
+msgstr "Growl-Nachrichten aktivieren (nach Wechsel des Wiedergabeobjekts)"
 
 #: modules/gui/macosx/simple_prefs.m:278
 msgid "Default Encoding"
@@ -25632,9 +25633,9 @@ msgid ""
 "requires YV12/I420 fourcc. By default vlc writes the fourcc of the picture "
 "frame into the output destination."
 msgstr ""
-"Der YUV4MPEG2 Header ist kompatibel mit der mplayer yuv Video Ausgabe und "
-"benötigt YV12/I420 fourcc. Standardmäßig schreibt VLC den fourcc des Picture "
-"Frames in das Ausgabeziel. "
+"Der YUV4MPEG2-Header ist kompatibel mit der mplayer yuv Video-Ausgabe und "
+"benötigt YV12/I420 fourcc. Standardmäßig schreibt VLC den fourcc des Picture-"
+"Frames in das Ausgabeziel."
 
 #: modules/video_output/yuv.c:59
 msgid "YUV output"

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Fix name of PulseAudio SD

2011-10-09 Thread Rémi Denis-Courmont
vlc | branch: master | Rémi Denis-Courmont  | Sun Oct  9 
22:28:48 2011 +0300| [71947139143078beeaf5e221cc24662bc144e239] | committer: 
Rémi Denis-Courmont

Fix name of PulseAudio SD

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=71947139143078beeaf5e221cc24662bc144e239
---

 modules/services_discovery/pulse.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/services_discovery/pulse.c 
b/modules/services_discovery/pulse.c
index 02e6802..725580d 100644
--- a/modules/services_discovery/pulse.c
+++ b/modules/services_discovery/pulse.c
@@ -39,8 +39,8 @@ static void Close (vlc_object_t *);
 VLC_SD_PROBE_HELPER("pulse", "Audio capture", SD_CAT_DEVICES);
 
 vlc_module_begin ()
-set_shortname (N_("Video capture"))
-set_description (N_("Video capture (Video4Linux)"))
+set_shortname (N_("Audio capture"))
+set_description (N_("Audio capture (PulseAudio)"))
 set_category (CAT_PLAYLIST)
 set_subcategory (SUBCAT_PLAYLIST_SD)
 set_capability ("services_discovery", 0)

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Remove deleted file

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Sun Oct  9 
20:03:30 2011 +0100| [bc8426ff79fd28b27cd6746a416f20fbc290cef9] | committer: 
Christophe Mutricy

Remove deleted file

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bc8426ff79fd28b27cd6746a416f20fbc290cef9
---

 po/POTFILES.in |1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/po/POTFILES.in b/po/POTFILES.in
index 70979ef..8f7b86d 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1156,6 +1156,5 @@ modules/visualization/visual/visual.h
 #modules/gui/qt4/ui/sprefs_subtitles.h
 #modules/gui/qt4/ui/sprefs_video.h
 #modules/gui/qt4/ui/streampanel.h
-#modules/gui/qt4/ui/v4l2.h
 #modules/gui/qt4/ui/video_effects.h
 #modules/gui/qt4/ui/vlm.h

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Refresh .po with 1.2 vlc.pot

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Sun Oct  9 
19:58:52 2011 +0100| [48e64bfb8ea320f495d6789e03f39d3b2ec79cd2] | committer: 
Christophe Mutricy

l10n: Refresh .po with 1.2 vlc.pot

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=48e64bfb8ea320f495d6789e03f39d3b2ec79cd2
---

 po/ar.po|38162 ++--
 po/be.po|25451 --
 po/ca.po|39930 ---
 po/ckb.po   |28083 +++---
 po/co.po|23800 +++
 po/cs.po|36013 +
 po/da.po|36749 +-
 po/en_GB.po |34433 +++
 po/fa.po|28623 +++
 po/fur.po   |34404 +++
 po/hi.po|26876 ++--
 po/hr.po|39301 --
 po/ka.po|35336 
 po/kk.po|35348 +
 po/ko.po|37131 ++-
 po/kur.po   |   13 +-
 po/lv.po|30861 -
 po/mk.po|23815 +++
 po/ml.po|23822 +++
 po/mn.po|30550 -
 po/ms.po|38489 +++--
 po/my.po|29487 +++
 po/ne.po|30806 +-
 po/oc.po|33116 ++---
 po/ps.po|29822 -
 po/pt_PT.po |36083 +-
 po/sl.po|39420 ---
 po/sq.po|25886 +--
 po/ta.po|29865 
 po/tet.po   |2 -
 po/tl.po|2 -
 po/vi.po|33735 +++---
 32 files changed, 536691 insertions(+), 458717 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=48e64bfb8ea320f495d6789e03f39d3b2ec79cd2
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Typo

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Sun Oct  9 
20:01:31 2011 +0100| [d1d9f60c1a34eea585655e81f0c5e0ff9474356f] | committer: 
Christophe Mutricy

Typo

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d1d9f60c1a34eea585655e81f0c5e0ff9474356f
---

 po/POTFILES.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/po/POTFILES.in b/po/POTFILES.in
index de43198..70979ef 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -226,7 +226,7 @@ modules/access/mms/mmstu.c
 modules/access/mms/mmstu.h
 modules/access/mtp.c
 modules/access/oss.c
-modules/access/pulsesrc.c
+modules/access/pulse.c
 modules/access/pvr.c
 modules/access/qtcapture.m
 modules/access/rar/access.c

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Romanian update

2011-10-09 Thread Cristian Secară
vlc | branch: master | Cristian Secară  | Sun Oct  9 
19:38:08 2011 +0100| [d28c0d90bef1f8fbe98bd4616ef48b7332f29d53] | committer: 
Christophe Mutricy

l10n: Romanian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d28c0d90bef1f8fbe98bd4616ef48b7332f29d53
---

 po/ro.po |37241 ++
 1 files changed, 20233 insertions(+), 17008 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=d28c0d90bef1f8fbe98bd4616ef48b7332f29d53
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: French update

2011-10-09 Thread Éric Lassauge
vlc | branch: master | Éric Lassauge  | Sun Oct 
 9 19:56:51 2011 +0100| [9e0d2f6d46eaf07945e7237083e3ea69c826c28f] | committer: 
Christophe Mutricy

l10n: French update

Collection of 1.1.X updates
Extra contributors: Benoît Tuduri, Rémi Denis-Courmont, Jean-Baptiste Kempf

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9e0d2f6d46eaf07945e7237083e3ea69c826c28f
---

 po/fr.po |31283 ++
 1 files changed, 17259 insertions(+), 14024 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=9e0d2f6d46eaf07945e7237083e3ea69c826c28f
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Afrikaans update

2011-10-09 Thread Friedel Wolff
vlc | branch: master | Friedel Wolff  | Sun Oct  9 
17:57:58 2011 +0100| [f2f22b9518646e64d68d8a67138d0fb2270378d4] | committer: 
Christophe Mutricy

l10n: Afrikaans update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f2f22b9518646e64d68d8a67138d0fb2270378d4
---

 po/af.po |31195 ++
 1 files changed, 17298 insertions(+), 13897 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=f2f22b9518646e64d68d8a67138d0fb2270378d4
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Add new languages

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Sun Oct  9 
19:53:14 2011 +0100| [c0e8aefafa4466bf53014ae13468510126de62ac] | committer: 
Christophe Mutricy

Add new languages

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c0e8aefafa4466bf53014ae13468510126de62ac
---

 po/LINGUAS |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/po/LINGUAS b/po/LINGUAS
index 1a61b63..f8631a2 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -1,9 +1,14 @@
+ach
 af
+am
 ar
+ast
 be
 bg
 bn
+br
 ca
+cgg
 ckb
 co
 cs
@@ -15,9 +20,11 @@ es
 et
 eu
 fa
+ff
 fi
 fr
 fur
+ga
 gl
 he
 hi
@@ -25,12 +32,14 @@ hr
 hu
 hy
 id
+is
 it
 ja
 ka
 kk
 km
 ko
+lg
 lt
 lv
 ml
@@ -66,3 +75,4 @@ vi
 wa
 zh_CN
 zh_TW
+zu

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Zulu translation

2011-10-09 Thread Sipho Sibiya
vlc | branch: master | Sipho Sibiya  | Sun Oct  9 
19:52:19 2011 +0100| [3281f7bd7859ffb2d7614a0775974c8eef41311a] | committer: 
Christophe Mutricy

l10n: Initial Zulu translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3281f7bd7859ffb2d7614a0775974c8eef41311a
---

 po/zu.po |27260 ++
 1 files changed, 27260 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=3281f7bd7859ffb2d7614a0775974c8eef41311a
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Traditional Chinese update

2011-10-09 Thread Frank Chao
vlc | branch: master | Frank Chao  | Sun Oct  9 19:51:23 
2011 +0100| [d53e3bd690c869a6c090afeba2f177b8328ddeeb] | committer: Christophe 
Mutricy

l10n: Traditional Chinese update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d53e3bd690c869a6c090afeba2f177b8328ddeeb
---

 po/zh_TW.po |35719 +++
 1 files changed, 18892 insertions(+), 16827 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=d53e3bd690c869a6c090afeba2f177b8328ddeeb
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Simplified Chinese update

2011-10-09 Thread Dean Lee
vlc | branch: master | Dean Lee  | Sun Oct  9 19:50:40 2011 
+0100| [75df117bcdce615fa94985c0ed8bb0b95611c911] | committer: Christophe 
Mutricy

l10n: Simplified Chinese update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=75df117bcdce615fa94985c0ed8bb0b95611c911
---

 po/zh_CN.po |25092 +--
 1 files changed, 14173 insertions(+), 10919 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=75df117bcdce615fa94985c0ed8bb0b95611c911
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Walloon update

2011-10-09 Thread Gaëtan Rousseaux
vlc | branch: master | Gaëtan Rousseaux  | Sun Oct  9 
19:49:52 2011 +0100| [be65fdb797db7505bdcebf10eba3a3a2a295ff15] | committer: 
Christophe Mutricy

l10n: Walloon update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=be65fdb797db7505bdcebf10eba3a3a2a295ff15
---

 po/wa.po |25558 ++
 1 files changed, 14080 insertions(+), 11478 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=be65fdb797db7505bdcebf10eba3a3a2a295ff15
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Turkish update

2011-10-09 Thread Kaya Zeren
vlc | branch: master | Kaya Zeren  | Sun Oct  9 19:47:15 
2011 +0100| [e5838d25f5f4594f58f90befc4f35312e593867b] | committer: Christophe 
Mutricy

l10n: Turkish update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e5838d25f5f4594f58f90befc4f35312e593867b
---

 po/tr.po |39278 ++
 1 files changed, 21750 insertions(+), 17528 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=e5838d25f5f4594f58f90befc4f35312e593867b
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Ukrainian update

2011-10-09 Thread Oleksandr Natalenko
vlc | branch: master | Oleksandr Natalenko  | Sun Oct  9 
19:48:41 2011 +0100| [fe37cd14d43af26e4d0e67030ede637defe0de9e] | committer: 
Christophe Mutricy

l10n: Ukrainian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fe37cd14d43af26e4d0e67030ede637defe0de9e
---

 po/uk.po |26083 +++---
 1 files changed, 14676 insertions(+), 11407 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=fe37cd14d43af26e4d0e67030ede637defe0de9e
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Thai update

2011-10-09 Thread T. Chomphuming
vlc | branch: master | T. Chomphuming  | Sun Oct  9 
19:46:27 2011 +0100| [5e77bff03fc8ef05424f5a2291779521f57cdf85] | committer: 
Christophe Mutricy

l10n: Thai update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5e77bff03fc8ef05424f5a2291779521f57cdf85
---

 po/th.po |34675 +-
 1 files changed, 16221 insertions(+), 18454 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=5e77bff03fc8ef05424f5a2291779521f57cdf85
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Swedish update

2011-10-09 Thread Daniel Nylander
vlc | branch: master | Daniel Nylander  | Sun Oct  9 
19:45:26 2011 +0100| [1518c59b98e3de3eb0ccc28feb4fb4d1d55d69ca] | committer: 
Christophe Mutricy

l10n: Swedish update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1518c59b98e3de3eb0ccc28feb4fb4d1d55d69ca
---

 po/sv.po |30707 ++
 1 files changed, 16672 insertions(+), 14035 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=1518c59b98e3de3eb0ccc28feb4fb4d1d55d69ca
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Slovak update

2011-10-09 Thread Marián Hikaník
vlc | branch: master | Marián Hikaník  | Sun Oct  9 
19:43:39 2011 +0100| [3c2d1777b294a8dacb26be7e8499fb95bb776573] | committer: 
Christophe Mutricy

l10n: Slovak update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3c2d1777b294a8dacb26be7e8499fb95bb776573
---

 po/sk.po |31771 ++
 1 files changed, 17561 insertions(+), 14210 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=3c2d1777b294a8dacb26be7e8499fb95bb776573
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Serbian update

2011-10-09 Thread Predrag Ljubenović
vlc | branch: master | Predrag Ljubenović  | Sun 
Oct  9 19:44:39 2011 +0100| [bc7e6a7a1b59f292e44b6da6de63702e52672294] | 
committer: Christophe Mutricy

l10n: Serbian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bc7e6a7a1b59f292e44b6da6de63702e52672294
---

 po/sr.po |38366 +-
 1 files changed, 20529 insertions(+), 17837 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=bc7e6a7a1b59f292e44b6da6de63702e52672294
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Russian update

2011-10-09 Thread Alexander Law
vlc | branch: master | Alexander Law  | Sun Oct  9 
19:39:55 2011 +0100| [618d131e95e4537b6b02fc64ea9872aeeddef448] | committer: 
Christophe Mutricy

l10n: Russian update

With some fixes by Konstantin Pavlov, xoxmodav and Amychok

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=618d131e95e4537b6b02fc64ea9872aeeddef448
---

 po/ru.po |42903 ++
 1 files changed, 20492 insertions(+), 22411 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=618d131e95e4537b6b02fc64ea9872aeeddef448
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Sinhala update

2011-10-09 Thread Ajith Manjula
vlc | branch: master | Ajith Manjula  | Sun Oct  9 
19:42:14 2011 +0100| [0b24327e95baf10a8ad17867a4249aa279cc4acc] | committer: 
Christophe Mutricy

l10n: Sinhala update

Collection of 1.1.X updates
Extra contributor: H.Shalitha Vikum 

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0b24327e95baf10a8ad17867a4249aa279cc4acc
---

 po/si.po |33352 +++---
 1 files changed, 18872 insertions(+), 14480 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=0b24327e95baf10a8ad17867a4249aa279cc4acc
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Brazillian Portuguese update

2011-10-09 Thread Sidney Doria
vlc | branch: master | Sidney Doria  | Sun Oct  9 19:36:59 
2011 +0100| [90dd7df1ac1c2f072ae9de9f59facd690dd78f7c] | committer: Christophe 
Mutricy

l10n: Brazillian Portuguese update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=90dd7df1ac1c2f072ae9de9f59facd690dd78f7c
---

 po/pt_BR.po |39513 ---
 1 files changed, 21588 insertions(+), 17925 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=90dd7df1ac1c2f072ae9de9f59facd690dd78f7c
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Polish update

2011-10-09 Thread Michał Trzebiatowski
vlc | branch: master | Michał Trzebiatowski  | Sun Oct 
 9 19:35:56 2011 +0100| [909490035d0983f85c7ce7e7bccb0aac1233fcb0] | committer: 
Christophe Mutricy

l10n: Polish update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=909490035d0983f85c7ce7e7bccb0aac1233fcb0
---

 po/pl.po |28457 +++---
 1 files changed, 15888 insertions(+), 12569 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=909490035d0983f85c7ce7e7bccb0aac1233fcb0
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Punjabi update

2011-10-09 Thread A S Alam
vlc | branch: master | A S Alam  | Sun Oct  9 19:35:12 2011 
+0100| [353921b256d5bd18d465f12d4092db175ead1ea7] | committer: Christophe 
Mutricy

l10n: Punjabi update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=353921b256d5bd18d465f12d4092db175ead1ea7
---

 po/pa.po |27386 +-
 1 files changed, 14744 insertions(+), 12642 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=353921b256d5bd18d465f12d4092db175ead1ea7
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Nynorsk update

2011-10-09 Thread Eirik U. Birkeland
vlc | branch: master | Eirik U. Birkeland  | Sun Oct  9 
19:34:11 2011 +0100| [bb43f7c825058636cdfeee9a7e0416ab2b50adf0] | committer: 
Christophe Mutricy

l10n: Nynorsk update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bb43f7c825058636cdfeee9a7e0416ab2b50adf0
---

 po/nn.po |36362 +-
 1 files changed, 19670 insertions(+), 16692 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=bb43f7c825058636cdfeee9a7e0416ab2b50adf0
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Norwegian Bokmål up?==?UTF-8?Q?date

2011-10-09 Thread Olav Dahlum
vlc | branch: master | Olav Dahlum  | Sun Oct  9 19:30:17 
2011 +0100| [c75a79826b729ff744079f01f8f9a7b808754a72] | committer: Christophe 
Mutricy

l10n: Norwegian Bokmål update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c75a79826b729ff744079f01f8f9a7b808754a72
---

 po/nb.po |7 --
 1 files changed, 17415 insertions(+), 15922 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=c75a79826b729ff744079f01f8f9a7b808754a72
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Dutch update

2011-10-09 Thread Thomas De Rocker
vlc | branch: master | Thomas De Rocker  | Sun Oct  
9 19:32:19 2011 +0100| [e008354d3a0ed8cd8c72c0b53daf3879c19284c4] | committer: 
Christophe Mutricy

l10n: Dutch update

Collection of 1.1.X updates
Extra contributors: Myckel Habets, Jean-Paul Saman

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e008354d3a0ed8cd8c72c0b53daf3879c19284c4
---

 po/nl.po |31906 ++
 1 files changed, 17551 insertions(+), 14355 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=e008354d3a0ed8cd8c72c0b53daf3879c19284c4
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Khmer update

2011-10-09 Thread Khoem Sokhem
vlc | branch: master | Khoem Sokhem  | Sun Oct  9 
18:34:01 2011 +0100| [500c7c752391458ed5c596dd6ebbb3513959473d] | committer: 
Christophe Mutricy

l10n: Khmer update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=500c7c752391458ed5c596dd6ebbb3513959473d
---

 po/km.po |35018 +-
 1 files changed, 18743 insertions(+), 16275 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=500c7c752391458ed5c596dd6ebbb3513959473d
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Luganda translation

2011-10-09 Thread James Olweny
vlc | branch: master | James Olweny  | Sun Oct  9 
19:17:01 2011 +0100| [e2a1d49ea3f092676cda731d1aec8808e8814373] | committer: 
Christophe Mutricy

l10n: Initial Luganda translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e2a1d49ea3f092676cda731d1aec8808e8814373
---

 po/lg.po |27338 ++
 1 files changed, 27338 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=e2a1d49ea3f092676cda731d1aec8808e8814373
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Lithuanian update

2011-10-09 Thread Mindaugas Baranauskas
vlc | branch: master | Mindaugas Baranauskas  | Sun Oct  9 
19:17:50 2011 +0100| [65edf6b42624fcd974030dff55381df063c9e337] | committer: 
Christophe Mutricy

l10n: Lithuanian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=65edf6b42624fcd974030dff55381df063c9e337
---

 po/lt.po |36544 ++
 1 files changed, 19902 insertions(+), 16642 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=65edf6b42624fcd974030dff55381df063c9e337
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Japanese update

2011-10-09 Thread Fumio Nakayama
vlc | branch: master | Fumio Nakayama  | Sun Oct  9 
18:31:23 2011 +0100| [adcf3acb2f518f45d48aeb2182b733851971c3b9] | committer: 
Christophe Mutricy

l10n: Japanese update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=adcf3acb2f518f45d48aeb2182b733851971c3b9
---

 po/ja.po |38899 ++
 1 files changed, 21362 insertions(+), 17537 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=adcf3acb2f518f45d48aeb2182b733851971c3b9
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Icelandic Translation

2011-10-09 Thread Andri Pálsson
vlc | branch: master | Andri Pálsson  | Sun Oct  9 
18:29:49 2011 +0100| [97b8c41928324416364c6e3746f531b1aacf2c0d] | committer: 
Christophe Mutricy

l10n: Initial Icelandic Translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=97b8c41928324416364c6e3746f531b1aacf2c0d
---

 po/is.po |26209 ++
 1 files changed, 26209 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=97b8c41928324416364c6e3746f531b1aacf2c0d
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Italian update

2011-10-09 Thread Vincenzo Reale
vlc | branch: master | Vincenzo Reale  | Sun Oct  9 
18:30:24 2011 +0100| [ce2947e1f361862fb219819333b76f7a065423dd] | committer: 
Christophe Mutricy

l10n: Italian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ce2947e1f361862fb219819333b76f7a065423dd
---

 po/it.po |30825 ++
 1 files changed, 16714 insertions(+), 14111 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=ce2947e1f361862fb219819333b76f7a065423dd
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: New Armenian translation

2011-10-09 Thread Eduard Babayan
vlc | branch: master | Eduard Babayan  | Sun Oct  9 18:27:15 
2011 +0100| [a6f20aa9d74811f28f1259c020b1df806d835ab7] | committer: Christophe 
Mutricy

l10n: New Armenian translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a6f20aa9d74811f28f1259c020b1df806d835ab7
---

 po/hy.po |26288 +-
 1 files changed, 14074 insertions(+), 12214 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=a6f20aa9d74811f28f1259c020b1df806d835ab7
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Indonesian update

2011-10-09 Thread Luqman Hakim
vlc | branch: master | Luqman Hakim  | Sun Oct  9 18:28:26 
2011 +0100| [32d8cac975091b2d8d00201795036ac0d920f496] | committer: Christophe 
Mutricy

l10n: Indonesian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=32d8cac975091b2d8d00201795036ac0d920f496
---

 po/id.po |39419 +-
 1 files changed, 21124 insertions(+), 18295 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=32d8cac975091b2d8d00201795036ac0d920f496
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Hebrew update

2011-10-09 Thread Yaron Shahrabani
vlc | branch: master | Yaron Shahrabani  | Sun Oct  9 
18:25:33 2011 +0100| [5ac5eef3d8a273e18df009200359114a99d05171] | committer: 
Christophe Mutricy

l10n: Hebrew update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5ac5eef3d8a273e18df009200359114a99d05171
---

 po/he.po |27999 +-
 1 files changed, 14732 insertions(+), 13267 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=5ac5eef3d8a273e18df009200359114a99d05171
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Hungarian update

2011-10-09 Thread Gabor Kelemen
vlc | branch: master | Gabor Kelemen  | Sun Oct  9 18:26:37 
2011 +0100| [a6102986ff152414ab7b4424497668326a349ea8] | committer: Christophe 
Mutricy

l10n: Hungarian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a6102986ff152414ab7b4424497668326a349ea8
---

 po/hu.po |36667 ++
 1 files changed, 20265 insertions(+), 16402 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=a6102986ff152414ab7b4424497668326a349ea8
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Irish translation

2011-10-09 Thread Seanán Ó Coistín
vlc | branch: master | Seanán Ó Coistín  | Sun Oct  9 
18:24:10 2011 +0100| [445d8ac2ddec4d8bf062a38a068627b9cce0ef7f] | committer: 
Christophe Mutricy

l10n: Initial Irish translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=445d8ac2ddec4d8bf062a38a068627b9cce0ef7f
---

 po/ga.po |26452 ++
 1 files changed, 26452 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=445d8ac2ddec4d8bf062a38a068627b9cce0ef7f
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Galician update

2011-10-09 Thread Gonçalo Cordeiro
vlc | branch: master | Gonçalo Cordeiro  | Sun Oct  9 
18:24:53 2011 +0100| [a5a5db66b21efdf2c8cbc65fea22831b3ff0daa2] | committer: 
Christophe Mutricy

l10n: Galician update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a5a5db66b21efdf2c8cbc65fea22831b3ff0daa2
---

 po/gl.po |39651 ++
 1 files changed, 21775 insertions(+), 17876 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=a5a5db66b21efdf2c8cbc65fea22831b3ff0daa2
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Finnish update

2011-10-09 Thread Juha Jeronen
vlc | branch: master | Juha Jeronen  | Sun Oct  9 18:22:35 
2011 +0100| [3119623a4e03db73613eef1034bcb91964a15841] | committer: Christophe 
Mutricy

l10n: Finnish update

Collection of 1.1.X updates
Extra contributor: Otto Kekäläinen 

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3119623a4e03db73613eef1034bcb91964a15841
---

 po/fi.po |41494 ++
 1 files changed, 22666 insertions(+), 18828 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=3119623a4e03db73613eef1034bcb91964a15841
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Peul translation

2011-10-09 Thread Ibrahima SARR
vlc | branch: master | Ibrahima SARR  | Sun Oct  9 
18:21:21 2011 +0100| [40ceb1e9dcbc57bb2e3ca33d505c366690483d29] | committer: 
Christophe Mutricy

l10n: Initial Peul translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=40ceb1e9dcbc57bb2e3ca33d505c366690483d29
---

 po/ff.po |27234 ++
 1 files changed, 27234 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=40ceb1e9dcbc57bb2e3ca33d505c366690483d29
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Estonian update

2011-10-09 Thread Mihkel Kirjutas
vlc | branch: master | Mihkel Kirjutas  | Sun Oct  9 
18:15:25 2011 +0100| [fdf2ed070ea4dd3301605213b823fc2104623ca0] | committer: 
Christophe Mutricy

l10n: Estonian update

Collection of 1.1.X update
Extra contributor: Mattias Põldaru 

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fdf2ed070ea4dd3301605213b823fc2104623ca0
---

 po/et.po |37617 +++---
 1 files changed, 21215 insertions(+), 16402 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=fdf2ed070ea4dd3301605213b823fc2104623ca0
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Major update of Basque translation

2011-10-09 Thread Xabier Aramendi
vlc | branch: master | Xabier Aramendi  | Sun Oct  9 
18:20:31 2011 +0100| [56418fb815aace8145e4852d0e6cd2f655cb0696] | committer: 
Christophe Mutricy

l10n: Major update of Basque translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=56418fb815aace8145e4852d0e6cd2f655cb0696
---

 po/eu.po |35322 +++---
 1 files changed, 19868 insertions(+), 15454 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=56418fb815aace8145e4852d0e6cd2f655cb0696
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Greek update

2011-10-09 Thread Manolis Stefanis
vlc | branch: master | Manolis Stefanis  | Sun Oct  9 
18:13:35 2011 +0100| [b6b20de084bcfa1fb5e405b322e006545b35ec05] | committer: 
Christophe Mutricy

l10n: Greek update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b6b20de084bcfa1fb5e405b322e006545b35ec05
---

 po/el.po |34429 --
 1 files changed, 17871 insertions(+), 16558 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=b6b20de084bcfa1fb5e405b322e006545b35ec05
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Spanish update

2011-10-09 Thread David González
vlc | branch: master | David González  | Sun Oct  9 
18:14:34 2011 +0100| [80f96c31bb51d1e7bb00de93409df4c7516a8522] | committer: 
Christophe Mutricy

l10n: Spanish update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=80f96c31bb51d1e7bb00de93409df4c7516a8522
---

 po/es.po |31612 ++
 1 files changed, 17315 insertions(+), 14297 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=80f96c31bb51d1e7bb00de93409df4c7516a8522
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Chiga translation

2011-10-09 Thread Florence Tushabe
vlc | branch: master | Florence Tushabe  | Sun Oct  9 
18:09:55 2011 +0100| [184a7ec6125532b220092b48a04a9b690ffb69cd] | committer: 
Christophe Mutricy

l10n: Initial Chiga translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=184a7ec6125532b220092b48a04a9b690ffb69cd
---

 po/cgg.po |27067 +
 1 files changed, 27067 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=184a7ec6125532b220092b48a04a9b690ffb69cd
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: German update

2011-10-09 Thread Mario Siegmann
vlc | branch: master | Mario Siegmann  | Sun Oct  9 
18:12:05 2011 +0100| [de083c05dd08bff9538e491982a6030b6d661e5d] | committer: 
Christophe Mutricy

l10n: German update

Collection of the 1.1.X updates
Extra contributor: Michał Trzebiatowski and Felix Paul Kühne

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=de083c05dd08bff9538e491982a6030b6d661e5d
---

 po/de.po |44404 +-
 1 files changed, 20734 insertions(+), 23670 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=de083c05dd08bff9538e491982a6030b6d661e5d
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Breton translation

2011-10-09 Thread Denis Arnaud
vlc | branch: master | Denis Arnaud  | Sun Oct  9 
18:08:48 2011 +0100| [ca38797078238cc79861de8b79151df222e9c138] | committer: 
Christophe Mutricy

l10n: Initial Breton translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ca38797078238cc79861de8b79151df222e9c138
---

 po/br.po |26067 ++
 1 files changed, 26067 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=ca38797078238cc79861de8b79151df222e9c138
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Bulgarian update

2011-10-09 Thread Ivo Ivanov
vlc | branch: master | Ivo Ivanov  | Sun Oct  9 18:04:47 2011 
+0100| [67b5e78b03acc61fe2b20c6194f8a4cb0a593f0b] | committer: Christophe 
Mutricy

l10n: Bulgarian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=67b5e78b03acc61fe2b20c6194f8a4cb0a593f0b
---

 po/bg.po |30304 ++
 1 files changed, 16653 insertions(+), 13651 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=67b5e78b03acc61fe2b20c6194f8a4cb0a593f0b
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Bengali update

2011-10-09 Thread Israt Jahan
vlc | branch: master | Israt Jahan  | Sun Oct  9 18:06:32 
2011 +0100| [bec2b59f285975a26a1f363c9343cda58c41d1a1] | committer: Christophe 
Mutricy

l10n: Bengali update

Collection of all 1.1.X updates
Additional contributor: Jamil Ahmed 

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bec2b59f285975a26a1f363c9343cda58c41d1a1
---

 po/bn.po |27302 --
 1 files changed, 14187 insertions(+), 13115 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=bec2b59f285975a26a1f363c9343cda58c41d1a1
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Asturian translation

2011-10-09 Thread Xuacu Saturio
vlc | branch: master | Xuacu Saturio  | Sun Oct  9 18:02:42 
2011 +0100| [a06c8a9eb92cbd51fdaa94b033132ffc1f322780] | committer: Christophe 
Mutricy

l10n: Initial Asturian translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a06c8a9eb92cbd51fdaa94b033132ffc1f322780
---

 po/ast.po |25750 +
 1 files changed, 25750 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=a06c8a9eb92cbd51fdaa94b033132ffc1f322780
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Acoli translation

2011-10-09 Thread Alfred John
vlc | branch: master | Alfred John  | Sun Oct  9 
17:54:25 2011 +0100| [06400299b9e5ba1a18442ed92881bd4a77e9d4f0] | committer: 
Christophe Mutricy

l10n: Initial Acoli translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=06400299b9e5ba1a18442ed92881bd4a77e9d4f0
---

 po/ach.po |27234 +
 1 files changed, 27234 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=06400299b9e5ba1a18442ed92881bd4a77e9d4f0
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Initial Amharic translation

2011-10-09 Thread Solomon Gizaw
vlc | branch: master | Solomon Gizaw  | Sun Oct  9 18:00:12 
2011 +0100| [321b7ad859b9b7eddf21245f60c1769e1ef665b6] | committer: Christophe 
Mutricy

l10n: Initial Amharic translation

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=321b7ad859b9b7eddf21245f60c1769e1ef665b6
---

 po/am.po |27217 ++
 1 files changed, 27217 insertions(+), 0 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=321b7ad859b9b7eddf21245f60c1769e1ef665b6
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Update vlc.pot

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Sun Oct  9 
17:51:16 2011 +0100| [7d0408b96b406042bd42af3da1b0005ff46e61b0] | committer: 
Christophe Mutricy

l10n: Update vlc.pot

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7d0408b96b406042bd42af3da1b0005ff46e61b0
---

 po/vlc.pot |23316 
 1 files changed, 12522 insertions(+), 10794 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc.git/?a=commitdiff;h=7d0408b96b406042bd42af3da1b0005ff46e61b0
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] Add the .h generated from .ui and comment them.

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Thu Apr 29 
23:55:11 2010 +0100| [be87168f996be7003c280882967854a2dc69efed] | committer: 
Christophe Mutricy

Add the .h generated from .ui and comment them.

So that I don't forget them when I generate vlc.pot

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=be87168f996be7003c280882967854a2dc69efed
---

 po/POTFILES.in |   22 ++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/po/POTFILES.in b/po/POTFILES.in
index 38a0773..c2a75bd 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1135,3 +1135,25 @@ modules/visualization/visual/fft.c
 modules/visualization/visual/fft.h
 modules/visualization/visual/visual.c
 modules/visualization/visual/visual.h
+
+# Qt4 .ui files
+# uncomment (and prepend $builddir} if you want to generate a proper vlc.pot 
+
+#modules/gui/qt4/ui/equalizer.h
+#modules/gui/qt4/ui/open.h
+#modules/gui/qt4/ui/open_capture.h
+#modules/gui/qt4/ui/open_disk.h
+#modules/gui/qt4/ui/open_file.h
+#modules/gui/qt4/ui/open_net.h
+#modules/gui/qt4/ui/podcast_configuration.h
+#modules/gui/qt4/ui/profiles.h
+#modules/gui/qt4/ui/sout.h
+#modules/gui/qt4/ui/sprefs_audio.h
+#modules/gui/qt4/ui/sprefs_input.h
+#modules/gui/qt4/ui/sprefs_interface.h
+#modules/gui/qt4/ui/sprefs_subtitles.h
+#modules/gui/qt4/ui/sprefs_video.h
+#modules/gui/qt4/ui/streampanel.h
+#modules/gui/qt4/ui/v4l2.h
+#modules/gui/qt4/ui/video_effects.h
+#modules/gui/qt4/ui/vlm.h

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] i18n: Add more .ui-generated .h

2011-10-09 Thread Christophe Mutricy
vlc | branch: master | Christophe Mutricy  | Sun Oct  9 
16:16:33 2011 +0100| [df3d04156c6d79e5acf1dbe1b7e7ed115ba4f57f] | committer: 
Christophe Mutricy

i18n: Add more .ui-generated .h

to the commented section

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=df3d04156c6d79e5acf1dbe1b7e7ed115ba4f57f
---

 po/POTFILES.in |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/po/POTFILES.in b/po/POTFILES.in
index c2a75bd..de43198 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1139,7 +1139,9 @@ modules/visualization/visual/visual.h
 # Qt4 .ui files
 # uncomment (and prepend $builddir} if you want to generate a proper vlc.pot 
 
+#modules/gui/qt4/ui/about.h
 #modules/gui/qt4/ui/equalizer.h
+#modules/gui/qt4/ui/messages_panel.h
 #modules/gui/qt4/ui/open.h
 #modules/gui/qt4/ui/open_capture.h
 #modules/gui/qt4/ui/open_disk.h

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Estonian update

2011-10-09 Thread Mihkel Kirjutas
vlc/vlc-1.1 | branch: master | Mihkel Kirjutas  | Sun Oct  9 
17:09:23 2011 +0100| [4aed8dbe26619badc5310c51e4a664d0605e6987] | committer: 
Christophe Mutricy

l10n: Estonian update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=4aed8dbe26619badc5310c51e4a664d0605e6987
---

 po/et.po |  247 --
 1 files changed, 80 insertions(+), 167 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commitdiff;h=4aed8dbe26619badc5310c51e4a664d0605e6987
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Polish update

2011-10-09 Thread Michał Trzebiatowski
vlc/vlc-1.1 | branch: master | Michał Trzebiatowski  | 
Sun Oct  9 15:31:40 2011 +0100| [7074c7a75f7a62fad687a1f0ad015fa21cc08156] | 
committer: Christophe Mutricy

l10n: Polish update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=7074c7a75f7a62fad687a1f0ad015fa21cc08156
---

 po/pl.po | 9293 --
 1 files changed, 3554 insertions(+), 5739 deletions(-)

Diff:   
http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commitdiff;h=7074c7a75f7a62fad687a1f0ad015fa21cc08156
___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits


[vlc-commits] l10n: Simplified Chinese update

2011-10-09 Thread Dean Lee
vlc/vlc-1.1 | branch: master | Dean Lee  | Sun Oct  9 
15:36:00 2011 +0100| [da320692ffdb340c589a9b8de80879732519b57e] | committer: 
Christophe Mutricy

l10n: Simplified Chinese update

Signed-off-by: Christophe Mutricy 

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=da320692ffdb340c589a9b8de80879732519b57e
---

 po/zh_CN.po |   10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index ece2dcb..c69e2f2 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,10 +1,10 @@
 # Translation to Simplified Chinese.
-# Copyright (C) 2008-2010 the VideoLAN team
+# Copyright (C) 2008-2011 the VideoLAN team
 # This file is distributed under the same license as the VLC package.
 #
 # Yoyo , 2008.
 # Wei Mingzhi , 2009.
-# Dean Lee , 2010.
+# Dean Lee , 2010-2011.
 #
 msgid ""
 msgstr ""
@@ -14639,17 +14639,17 @@ msgstr "VLC 调试记录 (%s).rtfd"
 
 #: modules/gui/macosx/intf.m:2857
 msgid "Relaunch required"
-msgstr ""
+msgstr "需要重启"
 
 #: modules/gui/macosx/intf.m:2858
 msgid ""
 "To make sure that VLC no longer listens to your media key events, it needs "
 "to be restarted."
-msgstr ""
+msgstr "要确保 VLC 不再监听您的媒体键事件,需要重新启动 VLC。"
 
 #: modules/gui/macosx/intf.m:2859
 msgid "Relaunch VLC"
-msgstr ""
+msgstr "重新启动 VLC"
 
 #: modules/gui/macosx/macosx.m:53
 msgid "Video device"

___
vlc-commits mailing list
vlc-commits@videolan.org
http://mailman.videolan.org/listinfo/vlc-commits