[vlc-commits] mkv: fix declaration/definition mismatch of demux_sys_t

2014-05-12 Thread Felix Abecassis
vlc | branch: master | Felix Abecassis felix.abecas...@gmail.com | Mon May 12 
11:13:48 2014 +0200| [7f318cff999f87f69952f7243c2800ce081539db] | committer: 
Felix Abecassis

mkv: fix declaration/definition mismatch of demux_sys_t

Kill many compiler warnings.

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

 modules/demux/mkv/chapter_command.hpp |2 +-
 modules/demux/mkv/demux.hpp   |2 +-
 modules/demux/mkv/mkv.cpp |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/demux/mkv/chapter_command.hpp 
b/modules/demux/mkv/chapter_command.hpp
index 7c8a3c1..80b3e45 100644
--- a/modules/demux/mkv/chapter_command.hpp
+++ b/modules/demux/mkv/chapter_command.hpp
@@ -35,7 +35,7 @@ const binary MATROSKA_DVD_LEVEL_PG   = 0x18;
 const binary MATROSKA_DVD_LEVEL_PTT  = 0x10;
 const binary MATROSKA_DVD_LEVEL_CN   = 0x08;
 
-class demux_sys_t;
+struct demux_sys_t;
 
 class chapter_codec_cmds_c
 {
diff --git a/modules/demux/mkv/demux.hpp b/modules/demux/mkv/demux.hpp
index c295f13..f6b910b 100644
--- a/modules/demux/mkv/demux.hpp
+++ b/modules/demux/mkv/demux.hpp
@@ -326,7 +326,7 @@ private:
 };
 
 
-class demux_sys_t
+struct demux_sys_t
 {
 public:
 demux_sys_t( demux_t  demux )
diff --git a/modules/demux/mkv/mkv.cpp b/modules/demux/mkv/mkv.cpp
index b2b85bb..c1dd781 100644
--- a/modules/demux/mkv/mkv.cpp
+++ b/modules/demux/mkv/mkv.cpp
@@ -73,7 +73,7 @@ vlc_module_begin ()
 add_shortcut( mka, mkv )
 vlc_module_end ()
 
-class demux_sys_t;
+struct demux_sys_t;
 
 static int  Demux  ( demux_t * );
 static int  Control( demux_t *, int, va_list );

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


[vlc-commits] Add VLC_CODEC_BGRA fourcc.

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jean-paul.sa...@m2x.nl | Mon May 12 
15:03:09 2014 +0200| [0df73cebc001e201d588a81119ba31106a11d340] | committer: 
Jean-Paul Saman

Add VLC_CODEC_BGRA fourcc.

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

 include/vlc_fourcc.h |2 ++
 src/misc/es_format.c |1 +
 src/misc/fourcc.c|5 -
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index fbd0d09..49d8bfc 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -226,6 +226,8 @@
 #define VLC_CODEC_RGBAVLC_FOURCC('R','G','B','A')
 /* 32 bits ARGB */
 #define VLC_CODEC_ARGBVLC_FOURCC('A','R','G','B')
+/* 32 bits BGRA */
+#define VLC_CODEC_BGRAVLC_FOURCC('B','G','R','A')
 
 /* Planar GBR 4:4:4 8 bits */
 #define VLC_CODEC_GBR_PLANAR  VLC_FOURCC('G','B','R','8')
diff --git a/src/misc/es_format.c b/src/misc/es_format.c
index 0b948cf..27622bc 100644
--- a/src/misc/es_format.c
+++ b/src/misc/es_format.c
@@ -190,6 +190,7 @@ void video_format_Setup( video_format_t *p_fmt, 
vlc_fourcc_t i_chroma,
 case VLC_CODEC_RGB32:
 case VLC_CODEC_RGBA:
 case VLC_CODEC_ARGB:
+case VLC_CODEC_BGRA:
 p_fmt-i_bits_per_pixel = 32;
 break;
 case VLC_CODEC_RGB24:
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index d6f91e9..76b78b4 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -814,6 +814,8 @@ static const staticentry_t p_list_video[] = {
 B(VLC_CODEC_RGBA, 32 bits ARGB),
 A(ARGB),
 A(AV32),
+B(VLC_CODEC_BGRA, 32 bits BGRA),
+A(BGRA),
 
 B(VLC_CODEC_GREY, 8 bits greyscale),
 A(GREY),
@@ -2084,7 +2086,8 @@ static const struct
 VLC_CODEC_RGBA16, 0 }, PACKED_FMT(2, 16) },
 { { VLC_CODEC_RGB24, 0 },  PACKED_FMT(3, 24) },
 { { VLC_CODEC_RGB32, 0 },  PACKED_FMT(4, 24) },
-{ { VLC_CODEC_RGBA, VLC_CODEC_ARGB, 0 },   PACKED_FMT(4, 32) },
+{ { VLC_CODEC_RGBA, VLC_CODEC_ARGB,
+VLC_CODEC_BGRA, 0 },   PACKED_FMT(4, 32) },
 
 { { VLC_CODEC_Y211, 0 },   { 1, { {{1,4}, {1,1}} }, 4, 32 
} },
 { { VLC_CODEC_XYZ12,  0 }, PACKED_FMT(6, 48) },

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


[vlc-commits] fourcc: Add VLC_CODEC_SVG

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Mon Mar 31 
13:54:42 2014 +0200| [c03344e9d47e4265f4cc5e706d81c67dacda2ed5] | committer: 
Jean-Paul Saman

fourcc: Add VLC_CODEC_SVG

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

 include/vlc_fourcc.h |1 +
 src/misc/fourcc.c|3 +++
 2 files changed, 4 insertions(+)

diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index b9ff963..fbd0d09 100644
--- a/include/vlc_fourcc.h
+++ b/include/vlc_fourcc.h
@@ -289,6 +289,7 @@
 #define VLC_CODEC_TIFFVLC_FOURCC('t','i','f','f')
 #define VLC_CODEC_GIF VLC_FOURCC('g','i','f',' ')
 #define VLC_CODEC_TARGA   VLC_FOURCC('t','g','a',' ')
+#define VLC_CODEC_SVG VLC_FOURCC('s','v','g',' ')
 #define VLC_CODEC_SGI VLC_FOURCC('s','g','i',' ')
 #define VLC_CODEC_PNM VLC_FOURCC('p','n','m',' ')
 #define VLC_CODEC_PCX VLC_FOURCC('p','c','x',' ')
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 1b48c05..d6f91e9 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -972,6 +972,9 @@ static const staticentry_t p_list_video[] = {
 B(VLC_CODEC_SGI, SGI Image),
 A(sgi ),
 
+B(VLC_CODEC_SVG, SVG Scalable Vector Graphics Image),
+A(svg ),
+
 B(VLC_CODEC_PNM, Portable Anymap Image),
 A(pnm ),
 

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


[vlc-commits] Build SVG decoder

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Fri Mar 28 
15:00:23 2014 +0100| [1f8ac012d231b3f303cec43ea5faa67f0aeef6cd] | committer: 
Jean-Paul Saman

Build SVG decoder

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

 configure.ac  |3 ++-
 modules/codec/Makefile.am |7 +++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 1c46cd7..af955d6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3262,9 +3262,10 @@ then
 fi
 
 dnl
-dnl  SVG module
+dnl  SVG module (text rendering and image decoding)
 dnl
 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 = 2.9.0], [SVG rendering 
library],[auto])
+PKG_ENABLE_MODULES_VLC([SVGDEC], [], [librsvg-2.0 = 2.9.0 cairo = 1.13.1], 
[SVG image decoder library],[auto])
 
 dnl
 dnl  android surface module
diff --git a/modules/codec/Makefile.am b/modules/codec/Makefile.am
index d6027fb..218bc3c 100644
--- a/modules/codec/Makefile.am
+++ b/modules/codec/Makefile.am
@@ -109,6 +109,13 @@ libjpeg_plugin_la_LIBADD = -ljpeg
 EXTRA_LTLIBRARIES += libjpeg_plugin.la
 codec_LTLIBRARIES += $(LTLIBjpeg)
 
+libsvgdec_plugin_la_SOURCES = codec/svg.c
+libsvgdec_plugin_la_CFLAGS = $(AM_CLAGS) $(CFLAGS_svgdec)
+libsvgdec_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(codecdir)'  
$(LDFLAGS_svg)
+libsvgdec_plugin_la_LIBADD = $(LIBS_svgdec)
+EXTRA_LTLIBRARIES += libsvgdec_plugin.la
+codec_LTLIBRARIES += $(LTLIBsvgdec)
+
 libsdl_image_plugin_la_SOURCES = codec/sdl_image.c
 libsdl_image_plugin_la_CFLAGS = $(AM_CFLAGS) $(SDL_IMAGE_CFLAGS)
 libsdl_image_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(codecdir)'

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


[vlc-commits] SVG decoder: various fixes

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Mon Mar 31 
11:58:22 2014 +0200| [f68056f174e904b280f05d133e25481a24c99383] | committer: 
Jean-Paul Saman

SVG decoder: various fixes

Various fixes:
- general cleanup
- fix wrong colors
- fix memleaks
- improve rsvg API usage

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

 modules/codec/svg.c |   61 +++
 1 file changed, 28 insertions(+), 33 deletions(-)

diff --git a/modules/codec/svg.c b/modules/codec/svg.c
index 386f29c..fad7530 100644
--- a/modules/codec/svg.c
+++ b/modules/codec/svg.c
@@ -4,6 +4,7 @@
  * Copyright (C) 2014 VLC authors and VideoLAN
  *
  * Authors: Adam Leggett adamvlegg...@gmail.com
+ *  Jean-Paul Saman jpsa...@videolan.org
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published by
@@ -39,13 +40,6 @@
 #include cairo/cairo.h
 
 /*
- * decoder_sys_t : svg decoder descriptor
- */
-struct decoder_sys_t
-{
-};
-
-/*
  * Local prototypes
  */
 static int  OpenDecoder   ( vlc_object_t * );
@@ -73,17 +67,14 @@ static int OpenDecoder( vlc_object_t *p_this )
 decoder_t *p_dec = (decoder_t*)p_this;
 
 if( p_dec-fmt_in.i_codec != VLC_CODEC_SVG )
-{
 return VLC_EGENERIC;
-}
 
 /* Initialize library */
 rsvg_init();
 
 /* Set output properties */
-
 p_dec-fmt_out.i_cat = VIDEO_ES;
-p_dec-fmt_out.i_codec = VLC_CODEC_RGBA;
+p_dec-fmt_out.i_codec = VLC_CODEC_RGB32;
 
 /* Set callbacks */
 p_dec-pf_decode_video = DecodeBlock;
@@ -91,13 +82,6 @@ static int OpenDecoder( vlc_object_t *p_this )
 return VLC_SUCCESS;
 }
 
-static void rsvg_cairo_size_callback(int *width, int *height, gpointer data)
-{
-RsvgDimensionData *dim = data;
-*width = dim-width;
-*height = dim-height;
-}
-
 /
  * DecodeBlock: the whole thing
  
@@ -111,7 +95,6 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t 
**pp_block )
 RsvgHandle *rsvg = NULL;
 cairo_surface_t *surface = NULL;
 cairo_t *cr = NULL;
-int stride = 0;
 
 if( !pp_block || !*pp_block ) return NULL;
 
@@ -124,48 +107,60 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t 
**pp_block )
 return NULL;
 }
 
-rsvg = rsvg_handle_new_from_data(p_block-p_buffer, p_block-i_buffer, 
NULL);
+rsvg = rsvg_handle_new_from_data( p_block-p_buffer, p_block-i_buffer, 
NULL );
 if( !rsvg )
 goto done;
 
 RsvgDimensionData dim;
-rsvg_handle_get_dimensions(rsvg, dim);
-rsvg_handle_set_size_callback(rsvg, rsvg_cairo_size_callback, dim, NULL);
+rsvg_handle_get_dimensions( rsvg, dim );
 
-p_dec-fmt_out.i_codec = VLC_CODEC_RGBA;
-p_dec-fmt_out.video.i_width = dim.width;
+p_dec-fmt_out.video.i_chroma = VLC_CODEC_RGB32;
+p_dec-fmt_out.video.i_width  = dim.width;
 p_dec-fmt_out.video.i_height = dim.height;
+p_dec-fmt_out.video.i_visible_width  = dim.width;
+p_dec-fmt_out.video.i_visible_height = dim.height;
 p_dec-fmt_out.video.i_sar_num = 1;
 p_dec-fmt_out.video.i_sar_den = 1;
-p_dec-fmt_out.video.i_rmask = 0x00ff;
+p_dec-fmt_out.video.i_rmask = 0x8080; /* Since librsvg v1.0 */
 p_dec-fmt_out.video.i_gmask = 0xff00;
-p_dec-fmt_out.video.i_bmask = 0x00ff;
+p_dec-fmt_out.video.i_bmask = 0x00ff;
+video_format_FixRgb(p_dec-fmt_out.video);
 
 /* Get a new picture */
 p_pic = decoder_NewPicture( p_dec );
 if( !p_pic )
 goto done;
 
-stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, dim.width);
-surface = cairo_image_surface_create_for_data(p_pic-p-p_pixels,
-  CAIRO_FORMAT_ARGB32,
-  dim.width, dim.height,
-  stride);
+/* NOTE: Do not use the stride calculation from cairo, because it is wrong:
+ * stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, dim.width);
+ * Use the stride from VLC its picture_t::p[0].i_pitch, which is correct.
+ */
+surface = cairo_image_surface_create_for_data( p_pic-p-p_pixels,
+   CAIRO_FORMAT_ARGB32,
+   dim.width, dim.height,
+   p_pic-p[0].i_pitch );
 if( !surface )
 {

[vlc-commits] src/misc/image.c: recognize SVG images on mime-type and extension.

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Mon Mar 31 
13:55:31 2014 +0200| [13aa51f860e87d73e48fae104341af368c1a4557] | committer: 
Jean-Paul Saman

src/misc/image.c: recognize SVG images on mime-type and extension.

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

 src/misc/image.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/misc/image.c b/src/misc/image.c
index c399b8b..f5be25b 100644
--- a/src/misc/image.c
+++ b/src/misc/image.c
@@ -554,6 +554,7 @@ static const struct
 { VLC_FOURCC('x','c','f',' '), xcf },
 { VLC_CODEC_PCX,   pcx },
 { VLC_CODEC_GIF,   gif },
+{ VLC_CODEC_SVG,   svg },
 { VLC_CODEC_TIFF,  tif },
 { VLC_CODEC_TIFF,  tiff },
 { VLC_FOURCC('l','b','m',' '), lbm },
@@ -607,6 +608,7 @@ static const struct
 { VLC_CODEC_JPEG,  image/jpeg },
 { VLC_CODEC_PCX,   image/pcx },
 { VLC_CODEC_PNG,   image/png },
+{ VLC_CODEC_SVG,   image/svg+xml },
 { VLC_CODEC_TIFF,  image/tiff },
 { VLC_CODEC_TARGA, image/x-tga },
 { VLC_FOURCC('x','p','m',' '), image/x-xpixmap },

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


[vlc-commits] demux/image.c: Detect SVG Scalable Vector Graphics Images

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Mon Mar 31 
13:56:10 2014 +0200| [55862d2ecc6ee4f6169808773ff259e20b0bef84] | committer: 
Jean-Paul Saman

demux/image.c: Detect SVG Scalable Vector Graphics Images

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

 modules/demux/image.c |   50 +
 1 file changed, 50 insertions(+)

diff --git a/modules/demux/image.c b/modules/demux/image.c
index 672e7ba..5b56913 100644
--- a/modules/demux/image.c
+++ b/modules/demux/image.c
@@ -423,6 +423,53 @@ static bool IsExif(stream_t *s)
 return true;
 }
 
+static bool FindSVGmarker(int *position, const uint8_t *data, const int size, 
const char *marker)
+{
+for( int i = *position; i  size; i++)
+{
+if (memcmp(data[i], marker, strlen(marker)) == 0)
+{
+*position = i;
+return true;
+}
+}
+return false;
+}
+
+static bool IsSVG(stream_t *s)
+{
+char *ext = strstr(s-psz_path, .svg);
+if (!ext) return false;
+
+const uint8_t *header;
+int size = stream_Peek(s, header, 4096);
+int position = 0;
+
+const char xml[] = ?xml version=\;
+if (!FindSVGmarker(position, header, size, xml))
+return false;
+if (position != 0)
+return false;
+
+const char endxml[] = \0;
+if (!FindSVGmarker(position, header, size, endxml))
+return false;
+if (position = 15)
+return false;
+
+const char svg[] = svg;
+if (!FindSVGmarker(position, header, size, svg))
+return false;
+if (position  19)
+return false;
+
+/* SVG Scalable Vector Graphics image */
+
+/* NOTE: some SVG images have the mimetype set in a meta data section
+ * and some do not */
+return true;
+}
+
 static bool IsTarga(stream_t *s)
 {
 /* The header is not enough to ensure proper detection, we need
@@ -538,6 +585,9 @@ static const image_format_t formats[] = {
 { .codec = VLC_CODEC_JPEG,
   .detect = IsExif,
 },
+{ .codec = VLC_CODEC_SVG,
+  .detect = IsSVG,
+},
 { .codec = VLC_CODEC_TARGA,
   .detect = IsTarga,
 },

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


[vlc-commits] vout_subpictures.c: Fix Dereference after null check (cid 1213781)

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jean-paul.sa...@m2x.nl | Mon May 12 
16:26:11 2014 +0200| [bd4fde7b1927b3bad7731d3bf3935bee1652dccb] | committer: 
Jean-Paul Saman

vout_subpictures.c: Fix Dereference after null check (cid 1213781)

Fixes a bug introduced in commit 7d8714d90eaaf4f0e58685e62d14ac13d494f316

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

 src/video_output/vout_subpictures.c |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/video_output/vout_subpictures.c 
b/src/video_output/vout_subpictures.c
index 07db389..a051c16 100644
--- a/src/video_output/vout_subpictures.c
+++ b/src/video_output/vout_subpictures.c
@@ -1393,8 +1393,9 @@ void spu_PutSubpicture(spu_t *spu, subpicture_t *subpic)
if only if 'chain_update' has a value */
 if (chain_update  *chain_update) {
 vlc_mutex_lock(sys-lock);
-if (!sys-source_chain_update  !*sys-source_chain_update) {
-free(sys-source_chain_update);
+if (!sys-source_chain_update || !*sys-source_chain_update) {
+if (sys-source_chain_update)
+free(sys-source_chain_update);
 sys-source_chain_update = chain_update;
 chain_update = NULL;
 }

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


[vlc-commits] codec/svg.c: Add svg decoder.

2014-05-12 Thread Adam Leggett
vlc | branch: master | Adam Leggett adamvlegg...@gmail.com | Fri Mar 28 
13:01:22 2014 +0100| [96888e87d67a9edd5e6d04b6c279c3c1cfaa5bc4] | committer: 
Jean-Paul Saman

codec/svg.c: Add svg decoder.

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

 modules/codec/svg.c |  191 +++
 1 file changed, 191 insertions(+)

diff --git a/modules/codec/svg.c b/modules/codec/svg.c
new file mode 100644
index 000..386f29c
--- /dev/null
+++ b/modules/codec/svg.c
@@ -0,0 +1,191 @@
+/*
+ * svg.c: svg decoder module making use of librsvg2.
+ *
+ * Copyright (C) 2014 VLC authors and VideoLAN
+ *
+ * Authors: Adam Leggett adamvlegg...@gmail.com
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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.
+ */
+
+/*
+ * Preamble
+ */
+#ifdef HAVE_CONFIG_H
+# include config.h
+#endif
+
+#include vlc_common.h
+#include vlc_plugin.h
+#include vlc_codec.h
+
+#include glib.h
+#include glib/gstdio.h
+#include glib-object.h  /* g_object_unref( ) 
*/
+
+#include librsvg/rsvg.h
+#include cairo/cairo.h
+
+/*
+ * decoder_sys_t : svg decoder descriptor
+ */
+struct decoder_sys_t
+{
+};
+
+/*
+ * Local prototypes
+ */
+static int  OpenDecoder   ( vlc_object_t * );
+static void CloseDecoder  ( vlc_object_t * );
+
+static picture_t *DecodeBlock  ( decoder_t *, block_t ** );
+
+/*
+ * Module descriptor
+ */
+vlc_module_begin ()
+set_category( CAT_INPUT )
+set_subcategory( SUBCAT_INPUT_VCODEC )
+set_description( N_(SVG video decoder) )
+set_capability( decoder, 100 )
+set_callbacks( OpenDecoder, CloseDecoder )
+add_shortcut( svg )
+vlc_module_end ()
+
+/*
+ * OpenDecoder: probe the decoder and return score
+ */
+static int OpenDecoder( vlc_object_t *p_this )
+{
+decoder_t *p_dec = (decoder_t*)p_this;
+
+if( p_dec-fmt_in.i_codec != VLC_CODEC_SVG )
+{
+return VLC_EGENERIC;
+}
+
+/* Initialize library */
+rsvg_init();
+
+/* Set output properties */
+
+p_dec-fmt_out.i_cat = VIDEO_ES;
+p_dec-fmt_out.i_codec = VLC_CODEC_RGBA;
+
+/* Set callbacks */
+p_dec-pf_decode_video = DecodeBlock;
+
+return VLC_SUCCESS;
+}
+
+static void rsvg_cairo_size_callback(int *width, int *height, gpointer data)
+{
+RsvgDimensionData *dim = data;
+*width = dim-width;
+*height = dim-height;
+}
+
+/
+ * DecodeBlock: the whole thing
+ 
+ * This function must be fed with a complete image.
+ /
+static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
+{
+block_t *p_block;
+picture_t *p_pic = NULL;
+
+RsvgHandle *rsvg = NULL;
+cairo_surface_t *surface = NULL;
+cairo_t *cr = NULL;
+int stride = 0;
+
+if( !pp_block || !*pp_block ) return NULL;
+
+p_block = *pp_block;
+*pp_block = NULL;
+
+if( p_block-i_flags  BLOCK_FLAG_DISCONTINUITY )
+{
+block_Release( p_block );
+return NULL;
+}
+
+rsvg = rsvg_handle_new_from_data(p_block-p_buffer, p_block-i_buffer, 
NULL);
+if( !rsvg )
+goto done;
+
+   

[vlc-commits] codec/avcodec/swscale: Support VLC_CODEC_BGRA

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Thu Apr  3 
15:35:36 2014 +0200| [eae2f440af1d7e79019adc4da5f871d0592d9f91] | committer: 
Jean-Paul Saman

codec/avcodec/swscale: Support VLC_CODEC_BGRA

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

 modules/codec/avcodec/chroma.c |1 +
 modules/video_chroma/swscale.c |   10 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/modules/codec/avcodec/chroma.c b/modules/codec/avcodec/chroma.c
index 7f067ea..fbbe29a 100644
--- a/modules/codec/avcodec/chroma.c
+++ b/modules/codec/avcodec/chroma.c
@@ -128,6 +128,7 @@ static const struct
 
 {VLC_CODEC_RGBA, PIX_FMT_RGBA, 0, 0, 0 },
 {VLC_CODEC_ARGB, PIX_FMT_ARGB, 0, 0, 0 },
+{VLC_CODEC_BGRA, PIX_FMT_BGRA, 0, 0, 0 },
 {VLC_CODEC_GREY, PIX_FMT_GRAY8, 0, 0, 0},
 
  /* Paletized RGB */
diff --git a/modules/video_chroma/swscale.c b/modules/video_chroma/swscale.c
index 6559078..2763e43 100644
--- a/modules/video_chroma/swscale.c
+++ b/modules/video_chroma/swscale.c
@@ -274,6 +274,10 @@ static void FixParameters( int *pi_fmt, bool *pb_has_a, 
bool *pb_swap_uv, vlc_fo
 *pi_fmt = PIX_FMT_BGR32_1;
 *pb_has_a = true;
 break;
+case VLC_CODEC_BGRA:
+*pi_fmt = PIX_FMT_RGB32;
+*pb_has_a = true;
+break;
 case VLC_CODEC_YV12:
 *pi_fmt = PIX_FMT_YUV420P;
 *pb_swap_uv = true;
@@ -648,7 +652,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t 
*p_pic )
 /* We extract the A plane to rescale it, and then we reinject it. */
 if( p_fmti-i_chroma == VLC_CODEC_RGBA )
 ExtractA( p_sys-p_src_a, p_src, p_fmti-i_visible_width * 
p_sys-i_extend_factor, p_fmti-i_visible_height, OFFSET_A );
-else if( p_fmti-i_chroma == VLC_CODEC_ARGB )
+else if( p_fmti-i_chroma == VLC_CODEC_ARGB || p_fmti-i_chroma == 
VLC_CODEC_BGRA )
 ExtractA( p_sys-p_src_a, p_src, p_fmti-i_visible_width * 
p_sys-i_extend_factor, p_fmti-i_visible_height, 0 );
 else
 plane_CopyPixels( p_sys-p_src_a-p, p_src-p+A_PLANE );
@@ -656,7 +660,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t 
*p_pic )
 Convert( p_filter, p_sys-ctxA, p_sys-p_dst_a, p_sys-p_src_a, 
p_fmti-i_visible_height, 0, 1, false, false );
 if( p_fmto-i_chroma == VLC_CODEC_RGBA )
 InjectA( p_dst, p_sys-p_dst_a, p_fmto-i_visible_width * 
p_sys-i_extend_factor, p_fmto-i_visible_height, OFFSET_A );
-else if( p_fmto-i_chroma == VLC_CODEC_ARGB )
+else if( p_fmto-i_chroma == VLC_CODEC_ARGB || p_fmto-i_chroma == 
VLC_CODEC_BGRA )
 InjectA( p_dst, p_sys-p_dst_a, p_fmto-i_visible_width * 
p_sys-i_extend_factor, p_fmto-i_visible_height, 0 );
 else
 plane_CopyPixels( p_dst-p+A_PLANE, p_sys-p_dst_a-p );
@@ -666,7 +670,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t 
*p_pic )
 /* We inject a complete opaque alpha plane */
 if( p_fmto-i_chroma == VLC_CODEC_RGBA )
 FillA( p_dst-p[0], OFFSET_A );
-else if( p_fmto-i_chroma == VLC_CODEC_ARGB )
+else if( p_fmto-i_chroma == VLC_CODEC_ARGB || p_fmto-i_chroma == 
VLC_CODEC_BGRA )
 FillA( p_dst-p[0], 0 );
 else
 FillA( p_dst-p[A_PLANE], 0 );

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


[vlc-commits] SVG decoder: Add options

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Mon Mar 31 
16:35:19 2014 +0200| [2749995986b410e352db7d9b876f0bd3f1a470ea] | committer: 
Jean-Paul Saman

SVG decoder: Add options

Add the following options:
--svg-width
--svg-height The decoder tries to retain the source aspect ratio when scaling.
--svg-scale  The scaling value overrides the --svg-width and --svg-height for 
the image.

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

 modules/codec/svg.c |   90 ---
 1 file changed, 85 insertions(+), 5 deletions(-)

diff --git a/modules/codec/svg.c b/modules/codec/svg.c
index fad7530..ce215a2 100644
--- a/modules/codec/svg.c
+++ b/modules/codec/svg.c
@@ -47,6 +47,13 @@ static void CloseDecoder  ( vlc_object_t * );
 
 static picture_t *DecodeBlock  ( decoder_t *, block_t ** );
 
+#define TEXT_WIDTH   N_(Image width)
+#define LONG_TEXT_WIDTH  N_(Specify the width to decode the image too)
+#define TEXT_HEIGHT  N_(Image height)
+#define LONG_TEXT_HEIGHT N_(Specify the height to decode the image too)
+#define TEXT_SCALE   N_(Scale factor)
+#define LONG_TEXT_SCALE  N_(Scale factor to apply to image)
+
 /*
  * Module descriptor
  */
@@ -57,8 +64,25 @@ vlc_module_begin ()
 set_capability( decoder, 100 )
 set_callbacks( OpenDecoder, CloseDecoder )
 add_shortcut( svg )
+
+/* svg options */
+add_integer_with_range( svg-width, -1, 1, 65535,
+TEXT_WIDTH, LONG_TEXT_WIDTH, false )
+change_safe()
+add_integer_with_range( svg-height, -1, 1, 65535,
+TEXT_HEIGHT, LONG_TEXT_HEIGHT, false )
+change_safe()
+
+add_float( svg-scale, -1.0, TEXT_SCALE, LONG_TEXT_SCALE, false )
 vlc_module_end ()
 
+struct decoder_sys_t
+{
+int32_t i_width;
+int32_t i_height;
+double  f_scale;
+};
+
 /*
  * OpenDecoder: probe the decoder and return score
  */
@@ -69,6 +93,15 @@ static int OpenDecoder( vlc_object_t *p_this )
 if( p_dec-fmt_in.i_codec != VLC_CODEC_SVG )
 return VLC_EGENERIC;
 
+decoder_sys_t *p_sys = malloc( sizeof(decoder_sys_t) );
+if (!p_sys)
+return VLC_ENOMEM;
+p_dec-p_sys = p_sys;
+
+p_sys-i_width = var_InheritInteger( p_this, svg-width );
+p_sys-i_height = var_InheritInteger( p_this, svg-height );
+p_sys-f_scale = var_InheritFloat( p_this, svg-scale );
+
 /* Initialize library */
 rsvg_init();
 
@@ -89,8 +122,10 @@ static int OpenDecoder( vlc_object_t *p_this )
  /
 static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
 {
+decoder_sys_t *p_sys  = (decoder_sys_t *) p_dec-p_sys;
 block_t *p_block;
 picture_t *p_pic = NULL;
+int32_t i_width, i_height;
 
 RsvgHandle *rsvg = NULL;
 cairo_surface_t *surface = NULL;
@@ -114,11 +149,41 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t 
**pp_block )
 RsvgDimensionData dim;
 rsvg_handle_get_dimensions( rsvg, dim );
 
+if( p_sys-f_scale  0.0 )
+{
+i_width  = (int32_t)(p_sys-f_scale * dim.width);
+i_height = (int32_t)(p_sys-f_scale * dim.height);
+}
+else
+{
+/* Keep aspect */
+if( p_sys-i_width  0  p_sys-i_height  0 )
+{
+i_width  = dim.width * p_sys-i_height / dim.height;
+i_height = p_sys-i_height;
+}
+else if( p_sys-i_width  0  p_sys-i_height  0 )
+{
+i_width  = p_sys-i_width;
+i_height = dim.height * p_sys-i_width / dim.height;
+}
+else if( p_sys-i_width  0  p_sys-i_height  0 )
+{
+i_width  = dim.width * p_sys-i_height / dim.height;
+i_height = p_sys-i_height;
+}
+else
+{
+i_width  = dim.width;
+i_height = dim.height;
+}
+}
+
 p_dec-fmt_out.video.i_chroma = VLC_CODEC_RGB32;
-p_dec-fmt_out.video.i_width  = dim.width;
-p_dec-fmt_out.video.i_height = dim.height;
-p_dec-fmt_out.video.i_visible_width  = dim.width;
-p_dec-fmt_out.video.i_visible_height = dim.height;
+p_dec-fmt_out.video.i_width  = i_width;
+p_dec-fmt_out.video.i_height = i_height;
+p_dec-fmt_out.video.i_visible_width  = i_width;
+p_dec-fmt_out.video.i_visible_height = i_height;
 p_dec-fmt_out.video.i_sar_num = 1;
 p_dec-fmt_out.video.i_sar_den = 1;
 p_dec-fmt_out.video.i_rmask = 0x8080; /* Since librsvg v1.0 */
@@ -137,7 +202,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t 
**pp_block )
  */
 surface 

[vlc-commits] SVG decoder: Use alpha channel.

2014-05-12 Thread Jean-Paul Saman
vlc | branch: master | Jean-Paul Saman jpsa...@videolan.org | Thu Apr  3 
15:55:05 2014 +0200| [3f38d68df3afbc79cb6f8191bffad2e56704acdd] | committer: 
Jean-Paul Saman

SVG decoder: Use alpha channel.

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

 modules/codec/svg.c |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/modules/codec/svg.c b/modules/codec/svg.c
index ce215a2..47274fb 100644
--- a/modules/codec/svg.c
+++ b/modules/codec/svg.c
@@ -107,7 +107,7 @@ static int OpenDecoder( vlc_object_t *p_this )
 
 /* Set output properties */
 p_dec-fmt_out.i_cat = VIDEO_ES;
-p_dec-fmt_out.i_codec = VLC_CODEC_RGB32;
+p_dec-fmt_out.i_codec = VLC_CODEC_BGRA;
 
 /* Set callbacks */
 p_dec-pf_decode_video = DecodeBlock;
@@ -179,7 +179,8 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t 
**pp_block )
 }
 }
 
-p_dec-fmt_out.video.i_chroma = VLC_CODEC_RGB32;
+p_dec-fmt_out.i_codec =
+p_dec-fmt_out.video.i_chroma = VLC_CODEC_BGRA;
 p_dec-fmt_out.video.i_width  = i_width;
 p_dec-fmt_out.video.i_height = i_height;
 p_dec-fmt_out.video.i_visible_width  = i_width;
@@ -200,6 +201,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t 
**pp_block )
  * stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, dim.width);
  * Use the stride from VLC its picture_t::p[0].i_pitch, which is correct.
  */
+memset(p_pic-p[0].p_pixels, 0, p_pic-p[0].i_pitch * p_pic-p[0].i_lines);
 surface = cairo_image_surface_create_for_data( p_pic-p-p_pixels,
CAIRO_FORMAT_ARGB32,
i_width, i_height,

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


[vlc-commits] vlc_es: use define for es count

2014-05-12 Thread Francois Cartegnie
vlc | branch: master | Francois Cartegnie fcvlc...@free.fr | Sun May 11 
23:08:36 2014 +0200| [1f5843e627a73b6704d661d83a003c2697090b92] | committer: 
Francois Cartegnie

vlc_es: use define for es count

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

 include/vlc_es.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/vlc_es.h b/include/vlc_es.h
index 9d631ac..5790d23 100644
--- a/include/vlc_es.h
+++ b/include/vlc_es.h
@@ -426,8 +426,8 @@ enum es_format_category_e
 AUDIO_ES,
 SPU_ES,
 NAV_ES,
-ES_CATEGORY_COUNT
 };
+#define ES_CATEGORY_COUNT (NAV_ES + 1)
 
 /**
  * This function will fill all RGB shift from RGB masks.

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


[vlc-commits] playlist: fetcher: remove unused policy

2014-05-12 Thread Francois Cartegnie
vlc | branch: master | Francois Cartegnie fcvlc...@free.fr | Mon May 12 
12:44:27 2014 +0200| [4330d4567b5fa51ae41497c1f4a5c553a511426f] | committer: 
Francois Cartegnie

playlist: fetcher: remove unused policy

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

 src/playlist/fetcher.c |2 --
 1 file changed, 2 deletions(-)

diff --git a/src/playlist/fetcher.c b/src/playlist/fetcher.c
index b6a9ee9..6901f94 100644
--- a/src/playlist/fetcher.c
+++ b/src/playlist/fetcher.c
@@ -49,7 +49,6 @@ struct playlist_fetcher_t
 vlc_mutex_t lock;
 vlc_cond_t  wait;
 boolb_live;
-int i_art_policy;
 int i_waiting;
 input_item_t**pp_waiting;
 
@@ -74,7 +73,6 @@ playlist_fetcher_t *playlist_fetcher_New( vlc_object_t 
*parent )
 p_fetcher-b_live = false;
 p_fetcher-i_waiting = 0;
 p_fetcher-pp_waiting = NULL;
-p_fetcher-i_art_policy = var_GetInteger( parent, album-art );
 ARRAY_INIT( p_fetcher-albums );
 
 return p_fetcher;

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


[vlc-commits] vda: readd ref buffer flag (for ffmpeg variant only)

2014-05-12 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Mon May 12 
23:20:19 2014 +0200| [549b87a056dd69e1dee2bc04cd370d302f99c81b] | committer: 
David Fuhrmann

vda: readd ref buffer flag (for ffmpeg variant only)

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

 modules/codec/avcodec/vda.c |1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/codec/avcodec/vda.c b/modules/codec/avcodec/vda.c
index 3d05418..9da0527 100644
--- a/modules/codec/avcodec/vda.c
+++ b/modules/codec/avcodec/vda.c
@@ -190,6 +190,7 @@ static int Setup( vlc_va_t *external, void **pp_hw_ctx, 
vlc_fourcc_t *pi_chroma,
 
 memset( p_va-hw_ctx, 0, sizeof(p_va-hw_ctx) );
 p_va-hw_ctx.format = 'avc1';
+p_va-hw_ctx.use_ref_buffer = 1;
 
 int i_pix_fmt = var_CreateGetInteger( p_va-p_log, avcodec-vda-pix-fmt );
 

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


[vlc-commits] macosx: addons: add a new addon class for the model representation

2014-05-12 Thread David Fuhrmann
vlc | branch: master | David Fuhrmann dfuhrm...@videolan.org | Sun May 11 
19:49:00 2014 +0200| [44e1e3c7e802cdc5fee12ca7672a9e463f631242] | committer: 
David Fuhrmann

macosx: addons: add a new addon class for the model representation

Also loads the locally installed addons properly to mark these ones
as installed.

close #11476

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

 modules/gui/macosx/AddonListDataSource.h |   45 +
 modules/gui/macosx/AddonListDataSource.m |   80 ++
 modules/gui/macosx/AddonManager.m|   66 +---
 modules/gui/macosx/Modules.am|2 +
 4 files changed, 151 insertions(+), 42 deletions(-)

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


[vlc-commits] l10n: Modern Greek update

2014-05-12 Thread Savvas Nesseris
vlc | branch: master | Savvas Nesseris modernphilosopher82-2...@yahoo.com | 
Mon May 12 17:03:08 2014 -0400| [1759a9194af67c7394471b518c604c5cc228e5c6] | 
committer: Christoph Miebach

l10n: Modern Greek update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/el.po | 4770 +++---
 1 file changed, 2359 insertions(+), 2411 deletions(-)

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


[vlc-commits] l10n: Welsh update

2014-05-12 Thread Aled Powell
vlc | branch: master | Aled Powell a...@aledpowell.com | Mon May 12 17:02:41 
2014 -0400| [72f992867adb770a43812832c97645f0503aa212] | committer: Christoph 
Miebach

l10n: Welsh update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/cy.po | 4629 ++
 1 file changed, 2243 insertions(+), 2386 deletions(-)

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


[vlc-commits] l10n: Aragonese update

2014-05-12 Thread Chesús Daniel Trigo
vlc | branch: master | Chesús Daniel Trigo xuxin...@gmail.com | Mon May 12 
17:01:20 2014 -0400| [d75bda5a0e6bd3942ee6dcf3fd9d2374d1a5060f] | committer: 
Christoph Miebach

l10n: Aragonese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/an.po | 6870 --
 1 file changed, 3511 insertions(+), 3359 deletions(-)

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


[vlc-commits] l10n: Catalan update

2014-05-12 Thread Pau Iranzo
vlc | branch: master | Pau Iranzo pau...@gmail.com | Mon May 12 17:02:30 2014 
-0400| [c587adcf651ce98e65e7d682d5c0dbeb91aba276] | committer: Christoph Miebach

l10n: Catalan update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ca.po | 4787 +++---
 1 file changed, 2380 insertions(+), 2407 deletions(-)

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


[vlc-commits] l10n: Basque update

2014-05-12 Thread Julen Ruiz Aizpuru
vlc | branch: master | Julen Ruiz Aizpuru jul...@gmail.com | Mon May 12 
17:03:47 2014 -0400| [b86140fcdc6227ba88399c5577ec1dcc39e97030] | committer: 
Christoph Miebach

l10n: Basque update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/eu.po | 4170 ++
 1 file changed, 2000 insertions(+), 2170 deletions(-)

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


[vlc-commits] l10n: Finnish update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:04:04 
2014 -0400| [9d6cbacea3aada87e61bca1df0936d496f6f058e] | committer: Christoph 
Miebach

l10n: Finnish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/fi.po | 4083 +-
 1 file changed, 1940 insertions(+), 2143 deletions(-)

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


[vlc-commits] l10n: Estonian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:03:36 
2014 -0400| [85c6cff1fcfa43251e691e315ec18834715eedde] | committer: Christoph 
Miebach

l10n: Estonian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/et.po | 4554 ++
 1 file changed, 2199 insertions(+), 2355 deletions(-)

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


[vlc-commits] l10n: Fulah update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:03:54 
2014 -0400| [330b1d7599884ef2ff6d1ca8c03bd118381fa144] | committer: Christoph 
Miebach

l10n: Fulah update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ff.po | 5076 +++---
 1 file changed, 2509 insertions(+), 2567 deletions(-)

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


[vlc-commits] l10n: Azerbaijani update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:38 
2014 -0400| [accabf53102b145e00720698f8ae707fe3105033] | committer: Christoph 
Miebach

l10n: Azerbaijani update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/az.po | 4102 ++
 1 file changed, 1957 insertions(+), 2145 deletions(-)

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


[vlc-commits] l10n: Arabic update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:28 
2014 -0400| [b77b722aa36e06c3596c837f64e29fe25f29d051] | committer: Christoph 
Miebach

l10n: Arabic update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ar.po | 4391 ++
 1 file changed, 2112 insertions(+), 2279 deletions(-)

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


[vlc-commits] l10n: Gujarati update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:04:30 
2014 -0400| [0fdebf70840e8b0c256822eed5522e9a331f8abb] | committer: Christoph 
Miebach

l10n: Gujarati update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/gu.po | 4117 ++
 1 file changed, 1961 insertions(+), 2156 deletions(-)

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


[vlc-commits] l10n: Scottish Gaelic update

2014-05-12 Thread Michael Bauer
vlc | branch: master | Michael Bauer f...@akerbeltz.org | Mon May 12 17:04:16 
2014 -0400| [a90fc9e5bb7a2fa30d461dfd922d21b87d6b1b9d] | committer: Christoph 
Miebach

l10n: Scottish Gaelic update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/gd.po | 4078 ++
 1 file changed, 1941 insertions(+), 2137 deletions(-)

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


[vlc-commits] l10n: Galician update

2014-05-12 Thread Gonçalo Cordeiro
vlc | branch: master | Gonçalo Cordeiro gzcorde...@gmail.com | Mon May 12 
17:04:26 2014 -0400| [93cbfffcd0b05c352440888acb64f60c7453f1b4] | committer: 
Christoph Miebach

l10n: Galician update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/gl.po | 4352 +++---
 1 file changed, 2159 insertions(+), 2193 deletions(-)

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


[vlc-commits] l10n: Bulgarian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:55 
2014 -0400| [b17c0a194e4ba80cb428b70b2da33a40b7c01e81] | committer: Christoph 
Miebach

l10n: Bulgarian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/bg.po | 4351 ++
 1 file changed, 2084 insertions(+), 2267 deletions(-)

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


[vlc-commits] l10n: Asturian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:34 
2014 -0400| [1e427e8b6c4f62db11418e8bfe7d8f8a7ac3f3ad] | committer: Christoph 
Miebach

l10n: Asturian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ast.po | 6870 +++--
 1 file changed, 3514 insertions(+), 3356 deletions(-)

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


[vlc-commits] l10n: Persian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:03:51 
2014 -0400| [40235c283bad658ada2c5f91be2df40d6a8d8a26] | committer: Christoph 
Miebach

l10n: Persian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/fa.po | 4851 ++
 1 file changed, 2367 insertions(+), 2484 deletions(-)

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


[vlc-commits] l10n: Initial Amharic (Ethiopia) translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:14 
2014 -0400| [8b9bc1d48140ca5fb882b8c9f8b4bd9aa4436c3d] | committer: Christoph 
Miebach

l10n: Initial Amharic (Ethiopia) translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/am_ET.po |27031 +++
 1 file changed, 27031 insertions(+)

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


[vlc-commits] l10n: Bosnian update

2014-05-12 Thread Adnan Memija
vlc | branch: master | Adnan Memija sream...@live.com | Mon May 12 17:02:18 
2014 -0400| [6e3986d876d600c28a2dace57be6d59c34809feb] | committer: Christoph 
Miebach

l10n: Bosnian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/bs.po | 4287 ++
 1 file changed, 2047 insertions(+), 2240 deletions(-)

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


[vlc-commits] l10n: Taking po files from 2.1

2014-05-12 Thread Christoph Miebach
vlc | branch: master | Christoph Miebach christoph.mieb...@web.de | Mon May 
12 15:05:27 2014 -0400| [2ccc40075e72db53ce18fd7badb1c4d075920e3a] | committer: 
Christoph Miebach

l10n: Taking po files from 2.1

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

 po/ach.po   | 4407 ++-
 po/af.po| 4411 ++-
 po/am.po| 4405 ++-
 po/an.po| 4260 ++-
 po/ar.po|13266 +---
 po/ast.po   | 4382 ++-
 po/az.po| 4225 +-
 po/be.po|16173 ---
 po/bg.po|10271 -
 po/bn.po| 4403 ++-
 po/bn_IN.po | 4382 ++-
 po/br.po| 4249 ++-
 po/bs.po| 5334 +++--
 po/ca.po|24520 +--
 po/cgg.po   | 4405 ++-
 po/ckb.po   | 4408 ++-
 po/co.po| 4265 ++-
 po/cs.po| 4155 +-
 po/cy.po| 5506 +++---
 po/da.po| 6309 +++
 po/de.po| 6463 +---
 po/el.po|13136 
 po/en_GB.po | 4666 ++--
 po/es.po| 6381 +---
 po/et.po| 9022 --
 po/eu.po|14051 +-
 po/fa.po|15841 +-
 po/ff.po| 4245 ++-
 po/fi.po|12769 ---
 po/fr.po| 9351 ---
 po/fur.po   | 4430 +--
 po/ga.po| 4396 ++-
 po/gd.po| 5962 ---
 po/gl.po| 4163 +-
 po/gu.po| 5128 +++--
 po/he.po| 7241 ++
 po/hi.po| 5487 ++---
 po/hr.po| 5477 +++--
 po/hu.po|11826 ++--
 po/hy.po| 4284 ++-
 po/ia.po| 4234 ++-
 po/id.po|13407 
 po/is.po| 4557 +--
 po/it.po|14097 --
 po/ja.po| 4197 +-
 po/ka.po| 4414 ++-
 po/kk.po| 4383 ++-
 po/km.po|12182 +++--
 po/kn.po| 4118 +-
 po/ko.po|17199 +++--
 po/kur.po   |6 +-
 po/ky.po| 4233 ++-
 po/lg.po| 4408 ++-
 po/lt.po|1 +---
 po/lv.po| 4410 ++-
 po/mk.po| 4250 ++-
 po/ml.po| 4233 ++-
 po/mn.po| 4252 ++-
 po/mr.po| 6018 ---
 po/ms.po|23079 ++-
 po/my.po| 4230 ++-
 po/nb.po|12370 +++---
 po/ne.po|18419 
 po/nl.po| 4608 +--
 po/nn.po| 4295 ++-
 po/oc.po|12094 ++---
 po/or.po| 4798 ++--
 po/pa.po| 8616 +++--
 po/pl.po| 7308 +-
 po/ps.po| 4270 ++-
 po/pt_BR.po |12440 +++---
 po/pt_PT.po |14632 ---
 po/ro.po|13120 +++-
 po/ru.po| 4145 +-
 po/si.po|11195 +--
 po/sk.po| 4717 ++--
 po/sl.po|10152 ++---
 po/sq.po| 4402 ++-
 po/sr.po| 4297 ++-
 po/sv.po|17571 +-
 po/ta.po| 7740 +--
 po/te.po| 5574 +++---
 po/tet.po   | 4264 ++-
 po/th.po| 8027 ++-
 po/tl.po| 4264 ++-
 po/tr.po| 7575 +-
 po/uk.po| 5378 ++---
 po/uz.po| 4668 ++--
 po/vi.po|17101 +
 po/wa.po| 8963 --
 po/zh_CN.po | 4138 +-
 po/zh_TW.po |12311 --
 po/zu.po| 4403 ++-
 93 files changed, 371726 insertions(+), 340091 deletions(-)

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


[vlc-commits] l10n: Initial Catalan (Valencian) translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:02:33 
2014 -0400| [ff2d06c6e931321f64943e027db06422642d28b0] | committer: Christoph 
Miebach

l10n: Initial Catalan (Valencian) translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/c...@valencia.po |29770 
+
 1 file changed, 29770 insertions(+)

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


[vlc-commits] l10n: Bengali (India) update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:02:03 
2014 -0400| [d7478ee87c881224eb1c40a068a1d620da4ac41e] | committer: Christoph 
Miebach

l10n: Bengali (India) update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/bn_IN.po | 6851 ++-
 1 file changed, 3508 insertions(+), 3343 deletions(-)

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


[vlc-commits] l10n: French update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:04:13 
2014 -0400| [f0f236258895d68ed121890ac1ece035b37ed990] | committer: Christoph 
Miebach

l10n: French update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/fr.po | 4281 ++
 1 file changed, 2104 insertions(+), 2177 deletions(-)

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


[vlc-commits] l10n: Belarusian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:47 
2014 -0400| [aa66c49d36804d92e81b8747faef59394c59ac70] | committer: Christoph 
Miebach

l10n: Belarusian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/be.po | 6069 +++---
 1 file changed, 3016 insertions(+), 3053 deletions(-)

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


[vlc-commits] l10n: Spanish update

2014-05-12 Thread David González
vlc | branch: master | David González pico@gmail.com | Mon May 12 
17:03:28 2014 -0400| [175b7a6704633bd1c2cf07d051d5254d1527b7e3] | committer: 
Christoph Miebach

l10n: Spanish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/es.po | 4362 +++---
 1 file changed, 2163 insertions(+), 2199 deletions(-)

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


[vlc-commits] l10n: Breton update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:02:15 
2014 -0400| [02a66cc63281161a9baa12a83b0bb18d19fb249e] | committer: Christoph 
Miebach

l10n: Breton update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/br.po | 5394 +++---
 1 file changed, 2698 insertions(+), 2696 deletions(-)

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


[vlc-commits] l10n: Initial Spanish (Mexico) translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:03:11 
2014 -0400| [6471cf913de709aaa162057ae7809bcaeffba010] | committer: Christoph 
Miebach

l10n: Initial Spanish (Mexico) translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/es_MX.po |29458 +++
 1 file changed, 29458 insertions(+)

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


[vlc-commits] l10n: Danish update

2014-05-12 Thread Aputsiaĸ Niels Janussen
vlc | branch: master | Aputsiaĸ Niels Janussen a...@isit.gl | Mon May 12 
17:02:47 2014 -0400| [1cb75bf3530e353a68d99c4b5056125b194fb8b6] | committer: 
Christoph Miebach

l10n: Danish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/da.po | 4160 ++
 1 file changed, 1986 insertions(+), 2174 deletions(-)

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


[vlc-commits] l10n: German update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:02:57 
2014 -0400| [02cbd0c00786b2eeb72648854d9fe5f2ec5c4311] | committer: Christoph 
Miebach

l10n: German update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/de.po | 4821 +++---
 1 file changed, 2397 insertions(+), 2424 deletions(-)

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


[vlc-commits] l10n: Czech update

2014-05-12 Thread Tomáš Chvátal
vlc | branch: master | Tomáš Chvátal tomas.chva...@gmail.com | Mon May 12 
17:02:37 2014 -0400| [6112f4a0b2d4ca88b642a3c50b2f07407954ee3b] | committer: 
Christoph Miebach

l10n: Czech update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/cs.po | 4161 ++
 1 file changed, 1986 insertions(+), 2175 deletions(-)

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


[vlc-commits] l10n: Bengali update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:02:11 
2014 -0400| [812a20f2c547e9cc3b8b87004b2ef7715c84a1b4] | committer: Christoph 
Miebach

l10n: Bengali update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/bn.po |11934 --
 1 file changed, 5348 insertions(+), 6586 deletions(-)

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


[vlc-commits] l10n: Nepali update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:06:45 
2014 -0400| [e5daecab54f8aee944cdf516f2eee979a34e63b7] | committer: Christoph 
Miebach

l10n: Nepali update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ne.po | 4096 ++
 1 file changed, 1951 insertions(+), 2145 deletions(-)

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


[vlc-commits] l10n: Portuguese update

2014-05-12 Thread Manuela Silva/Alfredo Silva
vlc | branch: master | Manuela Silva/Alfredo Silva manuela.si...@sky.com | 
Mon May 12 17:07:44 2014 -0400| [6ee2c494707ae97b067b61a0f92aa7d0786d223f] | 
committer: Christoph Miebach

l10n: Portuguese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/pt_PT.po | 4511 +--
 1 file changed, 2241 insertions(+), 2270 deletions(-)

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


[vlc-commits] l10n: Hungarian update

2014-05-12 Thread Gabor Kelemen
vlc | branch: master | Gabor Kelemen kelemeng at gnome dot hu | Mon May 12 
17:04:49 2014 -0400| [819f78d1fb8efd39ca27480085bf0085cbc5b44a] | committer: 
Christoph Miebach

l10n: Hungarian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/hu.po | 4353 +++---
 1 file changed, 2163 insertions(+), 2190 deletions(-)

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


[vlc-commits] l10n: Initial Kapampangan translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:07:11 
2014 -0400| [2901c92f16711a3def9a52e9a3efdd7d8bea58e4] | committer: Christoph 
Miebach

l10n: Initial Kapampangan translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/pam.po |27035 +
 1 file changed, 27035 insertions(+)

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


[vlc-commits] l10n: Initial Kurdish (Iraq) translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:05:58 
2014 -0400| [ac470b9616a06d49a88fbbb3d8456517cd0f] | committer: Christoph 
Miebach

l10n: Initial Kurdish (Iraq) translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ku_IQ.po |27076 +++
 1 file changed, 27076 insertions(+)

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


[vlc-commits] l10n: Kannada update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:05:44 
2014 -0400| [ed94b26405205835d054f315a9baa543f224dd8e] | committer: Christoph 
Miebach

l10n: Kannada update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/kn.po |16439 +++---
 1 file changed, 9178 insertions(+), 7261 deletions(-)

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


[vlc-commits] l10n: Oriya update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:07:08 
2014 -0400| [06a2d39134ad9996b8837dd97ea7f18b426183a4] | committer: Christoph 
Miebach

l10n: Oriya update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/or.po | 4064 ++
 1 file changed, 1936 insertions(+), 2128 deletions(-)

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


[vlc-commits] l10n: Slovak update

2014-05-12 Thread Marián Hikaník
vlc | branch: master | Marián Hikaník mhika...@users.sourceforge.net | Mon 
May 12 17:08:14 2014 -0400| [daca788ae19a1611608f7a9ec730f611aef3] | 
committer: Christoph Miebach

l10n: Slovak update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/sk.po | 4355 +++---
 1 file changed, 2161 insertions(+), 2194 deletions(-)

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


[vlc-commits] l10n: Slovenian update

2014-05-12 Thread Martin Srebotnjak
vlc | branch: master | Martin Srebotnjak mi...@filmsi.net | Mon May 12 
17:08:25 2014 -0400| [7d56e7819dbcd6836e808c90836b91788d4c3fa1] | committer: 
Christoph Miebach

l10n: Slovenian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/sl.po | 4141 ++
 1 file changed, 1976 insertions(+), 2165 deletions(-)

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


[vlc-commits] l10n: Romanian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:07:50 
2014 -0400| [decbdbf1166f688d3905c4ff7a5d4d1d2016e8b5] | committer: Christoph 
Miebach

l10n: Romanian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ro.po | 5980 --
 1 file changed, 3124 insertions(+), 2856 deletions(-)

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


[vlc-commits] l10n: Burmese update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:06:34 
2014 -0400| [9cbb6bea98d9cd5277e057ddbf47366ff2c6bb27] | committer: Christoph 
Miebach

l10n: Burmese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/my.po | 4346 ++
 1 file changed, 2080 insertions(+), 2266 deletions(-)

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


[vlc-commits] l10n: Norwegian Bokmål update

2014-05-12 Thread Stian Jørgensrud
vlc | branch: master | Stian Jørgensrud stian...@gmail.com | Mon May 12 
17:06:38 2014 -0400| [a6c6a887362f033438fad1725faa92bcc7de97cd] | committer: 
Christoph Miebach

l10n: Norwegian Bokmål update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/nb.po | 4605 ++
 1 file changed, 2225 insertions(+), 2380 deletions(-)

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


[vlc-commits] l10n: Kazakh update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:05:30 
2014 -0400| [9a6cb0ddfcc1e7b6e6f72cc0bd3f830e71b1cc23] | committer: Christoph 
Miebach

l10n: Kazakh update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/kk.po | 9059 --
 1 file changed, 4683 insertions(+), 4376 deletions(-)

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


[vlc-commits] l10n: Khmer update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:05:41 
2014 -0400| [5d9f54b99a99fdf0aa29b696968bd7c490ed4715] | committer: Christoph 
Miebach

l10n: Khmer update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/km.po | 6254 +++---
 1 file changed, 3111 insertions(+), 3143 deletions(-)

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


[vlc-commits] l10n: Malayalam update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:06:11 
2014 -0400| [532c00c74ef539d0bcefd71f078cbb48c4cbe86a] | committer: Christoph 
Miebach

l10n: Malayalam update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ml.po | 4327 ++
 1 file changed, 2079 insertions(+), 2248 deletions(-)

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


[vlc-commits] l10n: Malay update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:06:30 
2014 -0400| [fb34235b5c178fc062528cd324c0e217891610e0] | committer: Christoph 
Miebach

l10n: Malay update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ms.po | 4356 +++---
 1 file changed, 2161 insertions(+), 2195 deletions(-)

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


[vlc-commits] l10n: Initial Kabyle translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:05:26 
2014 -0400| [9bf026250da4e2c840bac7e0262c8c7e168e325f] | committer: Christoph 
Miebach

l10n: Initial Kabyle translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/kab.po |27028 +
 1 file changed, 27028 insertions(+)

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


[vlc-commits] l10n: Mongolian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:06:15 
2014 -0400| [9e7e6b89e6a291c6c970b004db809bd6024912e3] | committer: Christoph 
Miebach

l10n: Mongolian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/mn.po | 6066 +++---
 1 file changed, 3044 insertions(+), 3022 deletions(-)

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


[vlc-commits] l10n: Initial Tatar translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:23:06 
2014 -0400| [bdd2c7c4d3c220f159dac9e230a3f9112eaa31aa] | committer: Christoph 
Miebach

l10n: Initial Tatar translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/tt.po |27025 ++
 1 file changed, 27025 insertions(+)

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


[vlc-commits] l10n: Tamil update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:22:46 
2014 -0400| [f2db43d87243a8486eee64c6bfb86c05110c] | committer: Christoph 
Miebach

l10n: Tamil update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ta.po | 4074 +-
 1 file changed, 1935 insertions(+), 2139 deletions(-)

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


[vlc-commits] l10n: Sinhala update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:08:05 
2014 -0400| [15a301bad37811927eb882dbb0a63b091af603d6] | committer: Christoph 
Miebach

l10n: Sinhala update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/si.po | 4133 ++
 1 file changed, 1979 insertions(+), 2154 deletions(-)

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


[vlc-commits] l10n: Indonesian update

2014-05-12 Thread Luqman Hakim
vlc | branch: master | Luqman Hakim o...@rocketmail.com | Mon May 12 17:04:56 
2014 -0400| [76e4a0f709683ffd9168c52fee8d114da4de2f7c] | committer: Christoph 
Miebach

l10n: Indonesian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/id.po | 4836 ++
 1 file changed, 2364 insertions(+), 2472 deletions(-)

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


[vlc-commits] l10n: Marathi update

2014-05-12 Thread Suraj Kawade
vlc | branch: master | Suraj Kawade suraj.kaw...@gmail.com | Mon May 12 
17:06:19 2014 -0400| [feb95df02f97e818e86a09efce08b817adfd0331] | committer: 
Christoph Miebach

l10n: Marathi update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/mr.po | 4142 ++
 1 file changed, 1975 insertions(+), 2167 deletions(-)

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


[vlc-commits] l10n: Acoli update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:01:11 
2014 -0400| [a2dfcec5fd3de0be68d2dd48cebb09555604722b] | committer: Christoph 
Miebach

l10n: Acoli update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ach.po |10420 +
 1 file changed, 4275 insertions(+), 6145 deletions(-)

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


[vlc-commits] l10n: Thai update

2014-05-12 Thread Thanakrit Chomphuming
vlc | branch: master | Thanakrit Chomphuming jerng...@gmail.com | Mon May 12 
17:22:53 2014 -0400| [6d380232a58190bcaac115fe29d59980b75e0b63] | committer: 
Christoph Miebach

l10n: Thai update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/th.po | 4102 ++
 1 file changed, 1960 insertions(+), 2142 deletions(-)

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


[vlc-commits] l10n: Telugu update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:22:49 
2014 -0400| [0ddcaeef428f8bfe270e0c5339f37833015b9f13] | committer: Christoph 
Miebach

l10n: Telugu update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/te.po | 4089 ++
 1 file changed, 1947 insertions(+), 2142 deletions(-)

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


[vlc-commits] l10n: Polish update

2014-05-12 Thread Michał Trzebiatowski
vlc | branch: master | Michał Trzebiatowski hippie_1...@hotmail.com | Mon May 
12 17:07:26 2014 -0400| [53e7cb95b02186b3d689d163c783ea19037caa00] | committer: 
Christoph Miebach

l10n: Polish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/pl.po | 4347 +++---
 1 file changed, 2156 insertions(+), 2191 deletions(-)

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


[vlc-commits] l10n: Hindi update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:04:38 
2014 -0400| [7098273ca81f1c6ef5013f09f174723795577bad] | committer: Christoph 
Miebach

l10n: Hindi update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/hi.po | 4081 ++
 1 file changed, 1943 insertions(+), 2138 deletions(-)

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


[vlc-commits] l10n: Uzbek update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:24:43 
2014 -0400| [79fad96ecc4bc98b22dc37ec49b69280ea76ee95] | committer: Christoph 
Miebach

l10n: Uzbek update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/uz.po | 4210 ++
 1 file changed, 2016 insertions(+), 2194 deletions(-)

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


[vlc-commits] l10n: Albanian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:08:31 
2014 -0400| [b9b6172e6def24ae97c18317fbd268088ab46144] | committer: Christoph 
Miebach

l10n: Albanian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/sq.po |10500 +++---
 1 file changed, 4570 insertions(+), 5930 deletions(-)

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


[vlc-commits] l10n: Simplified Chinese update

2014-05-12 Thread Dean Lee
vlc | branch: master | Dean Lee xslid...@gmail.com | Mon May 12 17:27:59 2014 
-0400| [3b5a9fd9c8431f55ac2aed9ae0e8209537387b0e] | committer: Christoph Miebach

l10n: Simplified Chinese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/zh_CN.po | 4311 +--
 1 file changed, 2140 insertions(+), 2171 deletions(-)

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


[vlc-commits] l10n: Lithuanian update

2014-05-12 Thread Mindaugas Baranauskas
vlc | branch: master | Mindaugas Baranauskas em...@super.lt | Mon May 12 
17:06:04 2014 -0400| [10813c282fef93c23999b15067b49f379deb68d2] | committer: 
Christoph Miebach

l10n: Lithuanian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/lt.po | 4133 ++
 1 file changed, 1968 insertions(+), 2165 deletions(-)

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


[vlc-commits] l10n: Punjabi update

2014-05-12 Thread Amanpreet Singh Alam
vlc | branch: master | Amanpreet Singh Alam apb...@gmail.com | Mon May 12 
17:07:14 2014 -0400| [e33d6fa26648b86782f703fa5a616d1c8818976d] | committer: 
Christoph Miebach

l10n: Punjabi update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/pa.po | 4197 ++
 1 file changed, 2003 insertions(+), 2194 deletions(-)

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


[vlc-commits] l10n: Italian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:05:13 
2014 -0400| [5ec330f4ca45f9488d5b27171598da5a3a2710fa] | committer: Christoph 
Miebach

l10n: Italian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/it.po | 4523 +++---
 1 file changed, 2297 insertions(+), 2226 deletions(-)

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


[vlc-commits] l10n: Latvian update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:06:08 
2014 -0400| [85d23edc2c6ad74caf0b10afd51fecc81dc200d2] | committer: Christoph 
Miebach

l10n: Latvian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/lv.po |11970 ++
 1 file changed, 5053 insertions(+), 6917 deletions(-)

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


[vlc-commits] l10n: Initial Silesian translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:08:48 
2014 -0400| [f87050a9e7fde5021cfe1355089ef974c01ca4c1] | committer: Christoph 
Miebach

l10n: Initial Silesian translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/szl.po |27030 +
 1 file changed, 27030 insertions(+)

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


[vlc-commits] l10n: Initial Samoan translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:08:28 
2014 -0400| [9a8e179838de7e41c08858deed2c63e90c827a8c] | committer: Christoph 
Miebach

l10n: Initial Samoan translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/sm.po |27039 ++
 1 file changed, 27039 insertions(+)

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


[vlc-commits] l10n: Occitan update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:07:04 
2014 -0400| [4fb335545b260b4f6fdd3d4d86b4fbd601639ac9] | committer: Christoph 
Miebach

l10n: Occitan update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/oc.po | 4078 ++
 1 file changed, 1940 insertions(+), 2138 deletions(-)

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


[vlc-commits] l10n: Hebrew update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:04:34 
2014 -0400| [d7233ca7f34fe08758000d1a4a10a094fa1a2261] | committer: Christoph 
Miebach

l10n: Hebrew update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/he.po | 4086 ++
 1 file changed, 1943 insertions(+), 2143 deletions(-)

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


[vlc-commits] l10n: Turkish update

2014-05-12 Thread Kaya Zeren
vlc | branch: master | Kaya Zeren kayaze...@gmail.com | Mon May 12 17:23:03 
2014 -0400| [61e2a6b9c5355a91acceca44c422d6599622961d] | committer: Christoph 
Miebach

l10n: Turkish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/tr.po | 4354 +++---
 1 file changed, 2160 insertions(+), 2194 deletions(-)

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


[vlc-commits] l10n: Brazilian Portuguese update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:07:37 
2014 -0400| [4368a5cdbafe6f4e7ad6e4f94e07b2720fe44ba9] | committer: Christoph 
Miebach

l10n: Brazilian Portuguese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/pt_BR.po | 4145 ---
 1 file changed, 1981 insertions(+), 2164 deletions(-)

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


[vlc-commits] l10n: Dutch update

2014-05-12 Thread Thomas De Rocker
vlc | branch: master | Thomas De Rocker thomasderoc...@hotmail.com | Mon May 
12 17:06:58 2014 -0400| [2444a4a7de0de3cc2819392e926f412766358cec] | committer: 
Christoph Miebach

l10n: Dutch update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/nl.po | 4356 +++---
 1 file changed, 2163 insertions(+), 2193 deletions(-)

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


[vlc-commits] l10n: Traditional Chinese update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:28:04 
2014 -0400| [182c94b8b51baa50863861165b9d16a8b4c19a65] | committer: Christoph 
Miebach

l10n: Traditional Chinese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/zh_TW.po | 4373 +--
 1 file changed, 2121 insertions(+), 2252 deletions(-)

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


[vlc-commits] l10n: Vietnamese update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:26:03 
2014 -0400| [09f525f9013321653355eb760eb76913e30e4757] | committer: Christoph 
Miebach

l10n: Vietnamese update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/vi.po | 4088 ++
 1 file changed, 1944 insertions(+), 2144 deletions(-)

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


[vlc-commits] l10n: Russian update

2014-05-12 Thread Alexander Lakhin
vlc | branch: master | Alexander Lakhin exclus...@gmail.com | Mon May 12 
17:08:00 2014 -0400| [f8ebdc3c5050f470b8e67976bf8d1b392289d8dc] | committer: 
Christoph Miebach

l10n: Russian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ru.po | 4337 +++---
 1 file changed, 2153 insertions(+), 2184 deletions(-)

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


[vlc-commits] l10n: Ukrainian update

2014-05-12 Thread Andriy Bandura
vlc | branch: master | Andriy Bandura andriykopanyt...@gmail.com | Mon May 12 
17:24:36 2014 -0400| [354b5ba79d525cd410754301d804c13506b74e24] | committer: 
Christoph Miebach

l10n: Ukrainian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/uk.po | 4370 +++---
 1 file changed, 2167 insertions(+), 2203 deletions(-)

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


[vlc-commits] l10n: Initial Urdu translation

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:24:39 
2014 -0400| [f67e7d4668552a2318c784ba1364cce3abf005dc] | committer: Christoph 
Miebach

l10n: Initial Urdu translation

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/ur.po |27029 ++
 1 file changed, 27029 insertions(+)

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


[vlc-commits] l10n: Walloon update

2014-05-12 Thread VideoLAN
vlc | branch: master | VideoLAN video...@videolan.org | Mon May 12 17:26:35 
2014 -0400| [ee115de142ac653a7dd27c92344b4be54e88a07d] | committer: Christoph 
Miebach

l10n: Walloon update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/wa.po | 4076 ++
 1 file changed, 1941 insertions(+), 2135 deletions(-)

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


[vlc-commits] l10n: Swedish update

2014-05-12 Thread A. Regnander
vlc | branch: master | A. Regnander anton_r_3 at hotmail.com | Mon May 12 
17:08:45 2014 -0400| [36c6720ed9abc5d72059a54dafc2587197110149] | committer: 
Christoph Miebach

l10n: Swedish update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/sv.po | 5132 +++---
 1 file changed, 2603 insertions(+), 2529 deletions(-)

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


[vlc-commits] l10n: Serbian update

2014-05-12 Thread Đorđe Vasiljević
vlc | branch: master | Đorđe Vasiljević theranchcow...@gmail.com | Mon May 12 
17:08:38 2014 -0400| [5470d27dd1231dced453e17c3523490b94f231f0] | committer: 
Christoph Miebach

l10n: Serbian update

Signed-off-by: Christoph Miebach christoph.mieb...@web.de

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

 po/sr.po | 4411 ++
 1 file changed, 2111 insertions(+), 2300 deletions(-)

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