Hello community,

here is the log from the commit of package ffmpegthumbs for openSUSE:Factory 
checked in at 2019-04-28 20:02:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ffmpegthumbs (Old)
 and      /work/SRC/openSUSE:Factory/.ffmpegthumbs.new.5536 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ffmpegthumbs"

Sun Apr 28 20:02:04 2019 rev:48 rq:696192 version:19.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ffmpegthumbs/ffmpegthumbs.changes        
2019-03-11 13:42:17.109570796 +0100
+++ /work/SRC/openSUSE:Factory/.ffmpegthumbs.new.5536/ffmpegthumbs.changes      
2019-04-28 20:02:05.462839472 +0200
@@ -1,0 +2,31 @@
+Sat Apr 20 06:51:52 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.04.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.04.0.php
+- Changes since 19.03.90:
+  * No code changes since 19.03.90
+
+-------------------------------------------------------------------
+Tue Apr 09 20:54:38 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.03.90
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/announce-applications-19.04-rc.php
+- Changes since 19.03.80:
+  * No code changes since 19.03.80
+
+-------------------------------------------------------------------
+Wed Mar 27 06:40:55 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.03.80
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/announce-applications-19.04-beta.php
+- Changes since 18.12.3:
+  * Register all codecs and muxers before trying to generate thumbnail
+  * port away from deprecated ffmpeg APIs
+
+-------------------------------------------------------------------

Old:
----
  ffmpegthumbs-18.12.3.tar.xz

New:
----
  ffmpegthumbs-19.04.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ffmpegthumbs.spec ++++++
--- /var/tmp/diff_new_pack.H5333D/_old  2019-04-28 20:02:08.338837736 +0200
+++ /var/tmp/diff_new_pack.H5333D/_new  2019-04-28 20:02:08.374837715 +0200
@@ -22,7 +22,7 @@
 # Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 Name:           ffmpegthumbs
-Version:        18.12.3
+Version:        19.04.0
 Release:        0
 Summary:        FFmpeg-based thumbnail creator for video files
 License:        LGPL-2.0-or-later

++++++ ffmpegthumbs-18.12.3.tar.xz -> ffmpegthumbs-19.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ffmpegthumbs-18.12.3/ffmpegthumbnailer/moviedecoder.cpp 
new/ffmpegthumbs-19.04.0/ffmpegthumbnailer/moviedecoder.cpp
--- old/ffmpegthumbs-18.12.3/ffmpegthumbnailer/moviedecoder.cpp 2019-02-05 
12:19:52.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/ffmpegthumbnailer/moviedecoder.cpp 2019-02-11 
09:04:10.000000000 +0100
@@ -21,6 +21,7 @@
 
 extern "C" {
 #include <libswscale/swscale.h>
+#include <libavutil/imgutils.h>
 }
 
 using namespace std;
@@ -58,8 +59,8 @@
     m_lastWidth = -1;
     m_lastHeight = -1;
     m_lastPixfmt = AV_PIX_FMT_NONE;
+
     av_register_all();
-    avcodec_register_all();
 
     QFileInfo fileInfo(filename);
 
@@ -131,21 +132,14 @@
 
 bool MovieDecoder::initializeVideo()
 {
-    for (unsigned int i = 0; i < m_pFormatContext->nb_streams; i++) {
-        if (m_pFormatContext->streams[i]->codec->codec_type == 
AVMEDIA_TYPE_VIDEO) {
-            m_pVideoStream = m_pFormatContext->streams[i];
-            m_VideoStream = i;
-            break;
-        }
-    }
-
+    m_VideoStream = av_find_best_stream(m_pFormatContext, AVMEDIA_TYPE_VIDEO, 
-1, -1, &m_pVideoCodec, 0);
     if (m_VideoStream < 0) {
         qDebug() << "Could not find video stream";
         return false;
     }
 
-    m_pVideoCodecContext = m_pFormatContext->streams[m_VideoStream]->codec;
-    m_pVideoCodec = avcodec_find_decoder(m_pVideoCodecContext->codec_id);
+    m_pVideoCodecContext = avcodec_alloc_context3(m_pVideoCodec);
+    avcodec_parameters_to_context(m_pVideoCodecContext, 
m_pFormatContext->streams[m_VideoStream]->codecpar);
 
     if (m_pVideoCodec == NULL) {
         // set to NULL, otherwise avcodec_close(m_pVideoCodecContext) crashes
@@ -205,7 +199,7 @@
 
     int ret = av_seek_frame(m_pFormatContext, -1, timestamp, 0);
     if (ret >= 0) {
-        avcodec_flush_buffers(m_pFormatContext->streams[m_VideoStream]->codec);
+        avcodec_flush_buffers(m_pVideoCodecContext);
     } else {
         qDebug() << "Seeking in video failed";
         return;
@@ -258,17 +252,13 @@
 
     int frameFinished = 0;
 
-#if LIBAVCODEC_VERSION_MAJOR < 53
-    int bytesDecoded = avcodec_decode_video(m_pVideoCodecContext, m_pFrame, 
&frameFinished, m_pPacket->data, m_pPacket->size);
-#else
-    int bytesDecoded = avcodec_decode_video2(m_pVideoCodecContext, m_pFrame, 
&frameFinished, m_pPacket);
-#endif
-
-    if (bytesDecoded < 0) {
-        qDebug() << "Failed to decode video frame: bytesDecoded < 0";
+    avcodec_send_packet(m_pVideoCodecContext, m_pPacket);
+    int ret = avcodec_receive_frame(m_pVideoCodecContext, m_pFrame);
+    if (ret == AVERROR(EAGAIN)) {
+        return false;
     }
 
-    return (frameFinished > 0);
+    return true;
 }
 
 bool MovieDecoder::getVideoPacket()
@@ -350,7 +340,7 @@
     return true;
 }
 
-bool MovieDecoder::processFilterGraph(AVPicture *dst, const AVPicture *src,
+bool MovieDecoder::processFilterGraph(AVFrame *dst, const AVFrame *src,
                                 enum AVPixelFormat pixfmt, int width, int 
height)
 {
     if (!m_filterGraph || width != m_lastWidth ||
@@ -377,7 +367,7 @@
         return false;
     }
 
-    av_picture_copy(dst, (const AVPicture *) m_filterFrame, pixfmt, width, 
height);
+    av_image_copy(dst->data, dst->linesize, (const uint8_t 
**)m_filterFrame->data, m_filterFrame->linesize, pixfmt, width, height);
     av_frame_unref(m_filterFrame);
 
     return true;
@@ -386,7 +376,7 @@
 void MovieDecoder::getScaledVideoFrame(int scaledSize, bool 
maintainAspectRatio, VideoFrame& videoFrame)
 {
     if (m_pFrame->interlaced_frame) {
-        processFilterGraph((AVPicture*) m_pFrame, (AVPicture*) m_pFrame, 
m_pVideoCodecContext->pix_fmt,
+        processFilterGraph((AVFrame*) m_pFrame, (AVFrame*) m_pFrame, 
m_pVideoCodecContext->pix_fmt,
                               m_pVideoCodecContext->width, 
m_pVideoCodecContext->height);
     }
 
@@ -459,9 +449,9 @@
 {
     *avFrame = av_frame_alloc();
 
-    int numBytes = avpicture_get_size(format, width, height);
+    int numBytes = av_image_get_buffer_size (format, width + 1, height + 1, 
16);
     *frameBuffer = reinterpret_cast<quint8*>(av_malloc(numBytes));
-    avpicture_fill((AVPicture*) *avFrame, *frameBuffer, format, width, height);
+    av_image_fill_arrays ((*avFrame)->data, (*avFrame)->linesize, 
*frameBuffer, format, width, height, 1);
 }
 
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ffmpegthumbs-18.12.3/ffmpegthumbnailer/moviedecoder.h 
new/ffmpegthumbs-19.04.0/ffmpegthumbnailer/moviedecoder.h
--- old/ffmpegthumbs-18.12.3/ffmpegthumbnailer/moviedecoder.h   2019-02-05 
12:19:52.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/ffmpegthumbnailer/moviedecoder.h   2019-02-11 
09:04:10.000000000 +0100
@@ -61,7 +61,7 @@
 
     void deleteFilterGraph();
     bool initFilterGraph(enum AVPixelFormat pixfmt, int width, int height);
-    bool processFilterGraph(AVPicture *dst, const AVPicture *src, enum 
AVPixelFormat pixfmt, int width, int height);
+    bool processFilterGraph(AVFrame *dst, const AVFrame *src, enum 
AVPixelFormat pixfmt, int width, int height);
 
 private:
     int                     m_VideoStream;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/ca/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/ca/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/ca/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/ca/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2018-12-27 13:12+0100\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/ca@valencia/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/ca@valencia/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/ca@valencia/ffmpegthumbs.po     2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/ca@valencia/ffmpegthumbs.po     2019-04-12 
02:07:31.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2018-12-27 13:12+0100\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/cs/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/cs/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/cs/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/cs/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2019-01-25 16:59+0100\n"
 "Last-Translator: Vit Pelcak <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/en_GB/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/en_GB/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/en_GB/ffmpegthumbs.po   1970-01-01 
01:00:00.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/en_GB/ffmpegthumbs.po   2019-04-12 
02:07:31.000000000 +0200
@@ -0,0 +1,24 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
+#
+# Steve Allewell <steve.allew...@gmail.com>, 2019.
+msgid ""
+msgstr ""
+"Project-Id-Version: ffmpegthumbs\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-03-24 20:54+0000\n"
+"Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
+"Language-Team: British English <kde-i18n-...@kde.org>\n"
+"Language: en_GB\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 19.07.70\n"
+
+#: ffmpegthumbnailer.cpp:65
+#, kde-format
+msgctxt "@option:check"
+msgid "Embed filmstrip effect"
+msgstr "Embed filmstrip effect"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/es/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/es/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/es/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/es/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -1,27 +1,26 @@
 # Spanish translations for ffmpegthumbs.po package.
-# Copyright (C) 2019 This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) 2019 This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 #
-# Eloy Cuadra <ecua...@eloihr.net>, %Y.
 # Automatically generated, 2019.
-# Eloy Cuadra <ecua...@eloihr.net>, 2019.
+# Víctor Rodrigo Córdoba <vrcord...@gmail.com>, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2019-01-14 21:14+0100\n"
-"Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-01-02 17:35+0100\n"
+"Last-Translator: Víctor Rodrigo Córdoba <vrcord...@gmail.com>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 18.12.1\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: ffmpegthumbnailer.cpp:65
 #, kde-format
 msgctxt "@option:check"
 msgid "Embed filmstrip effect"
-msgstr "Incrustar el efecto tira de película"
+msgstr "Incrustar efecto filmina"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/fi/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/fi/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/fi/ffmpegthumbs.po      1970-01-01 
01:00:00.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/fi/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -0,0 +1,24 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
+# Tommi Nieminen <transla...@legisign.org>, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: ffmpegthumbs\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-04-01 17:17+0200\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Lokalize 2.0\n"
+
+#: ffmpegthumbnailer.cpp:65
+#, kde-format
+msgctxt "@option:check"
+msgid "Embed filmstrip effect"
+msgstr "Upota filminauhatehoste"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/fr/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/fr/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/fr/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/fr/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2019-01-22 12:09+0800\n"
 "Last-Translator: Simon Depiets <sdepi...@gmail.com>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/gl/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/gl/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/gl/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/gl/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -1,13 +1,13 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 #
 # Adrián Chaves (Gallaecio) <adr...@chaves.io>, 2018.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2018-12-28 19:26+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2018-12-28 19:32+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <kde-i18n-...@kde.org>\n"
 "Language: gl\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/it/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/it/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/it/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/it/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2018-12-27 19:52+0100\n"
 "Last-Translator: Vincenzo Reale <smart2...@baslug.org>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/ja/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/ja/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/ja/ffmpegthumbs.po      1970-01-01 
01:00:00.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/ja/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -0,0 +1,21 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: ffmpegthumbs\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2018-12-30 22:21-0800\n"
+"Last-Translator: Japanese KDE translation team <kde...@kde.org>\n"
+"Language-Team: Japanese <kde...@kde.org>\n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Accelerator-Marker: &\n"
+"X-Text-Markup: kde4\n"
+
+#: ffmpegthumbnailer.cpp:65
+#, kde-format
+msgctxt "@option:check"
+msgid "Embed filmstrip effect"
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/nl/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/nl/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/nl/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/nl/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -1,13 +1,13 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 #
 # Freek de Kruijf <freekdekru...@kde.nl>, 2018.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2018-12-27 12:39+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2018-12-27 12:49+0100\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n...@kde.org>\n"
 "Language: nl\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/pl/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/pl/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/pl/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/pl/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -1,13 +1,13 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 #
 # Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>, 2019.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2019-01-02 15:05+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-01-27 10:20+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
 "Language: pl\n"
@@ -16,7 +16,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 19.03.70\n"
 
 #: ffmpegthumbnailer.cpp:65
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/pt/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/pt/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/pt/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/pt/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2018-12-28 18:18+0000\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/pt_BR/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/pt_BR/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/pt_BR/ffmpegthumbs.po   2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/pt_BR/ffmpegthumbs.po   2019-04-12 
02:07:31.000000000 +0200
@@ -1,15 +1,16 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
+# Translation of ffmpegthumbs.po to Brazilian Portuguese
+# Copyright (C) 2018 This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Luiz Fernando Ranghetti <elchev...@opensuse.org>, 2019.
+# André Marcelo Alvarenga <alvare...@kde.org>, 2018.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2019-01-29 17:17-0200\n"
-"Last-Translator: Luiz Fernando Ranghetti <elchev...@opensuse.org>\n"
-"Language-Team: Portuguese <kde-i18n-pt...@kde.org>\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2018-12-30 22:09-0300\n"
+"Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n"
+"Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/ru/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/ru/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/ru/ffmpegthumbs.po      1970-01-01 
01:00:00.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/ru/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -0,0 +1,25 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
+#
+# Alexander Yavorsky <kekc...@gmail.com>, 2019.
+msgid ""
+msgstr ""
+"Project-Id-Version: ffmpegthumbs\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n";
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-02-05 21:27+0300\n"
+"Last-Translator: Alexander Yavorsky <kekc...@gmail.com>\n"
+"Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
+"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Lokalize 18.12.1\n"
+
+#: ffmpegthumbnailer.cpp:65
+#, kde-format
+msgctxt "@option:check"
+msgid "Embed filmstrip effect"
+msgstr "Добавлять рамку киноплёнки"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/sk/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/sk/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/sk/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/sk/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2018-12-29 22:32+0100\n"
 "Last-Translator: iRoman Paholík <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/sv/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/sv/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/sv/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/sv/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -1,16 +1,16 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 #
 # Stefan Asserhäll <stefan.asserh...@bredband.net>, 2018.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2018-12-27 09:31+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2018-12-27 09:59+0100\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
-"Language: sv_SE\n"
+"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/uk/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/uk/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/uk/ffmpegthumbs.po      2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/uk/ffmpegthumbs.po      2019-04-12 
02:07:31.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
 "PO-Revision-Date: 2018-12-27 07:50+0200\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/zh_CN/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/zh_CN/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/zh_CN/ffmpegthumbs.po   2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/zh_CN/ffmpegthumbs.po   2019-04-12 
02:07:31.000000000 +0200
@@ -1,14 +1,14 @@
 # SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2019-02-20 23:28\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-04-09 18:51\n"
 "Last-Translator: guoyunhe <i...@guoyunhe.me>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ffmpegthumbs-18.12.3/po/zh_TW/ffmpegthumbs.po 
new/ffmpegthumbs-19.04.0/po/zh_TW/ffmpegthumbs.po
--- old/ffmpegthumbs-18.12.3/po/zh_TW/ffmpegthumbs.po   2019-03-05 
01:12:53.000000000 +0100
+++ new/ffmpegthumbs-19.04.0/po/zh_TW/ffmpegthumbs.po   2019-04-12 
02:07:31.000000000 +0200
@@ -1,13 +1,13 @@
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the ffmpegthumbs package.
 #
 # pan93412 <pan93...@gmail.com>, 2019.
 msgid ""
 msgstr ""
-"Project-Id-Version: \n"
+"Project-Id-Version: ffmpegthumbs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-12-27 07:18+0100\n"
-"PO-Revision-Date: 2019-01-05 12:53+0800\n"
+"POT-Creation-Date: 2018-12-27 03:15+0100\n"
+"PO-Revision-Date: 2019-01-04 01:38+0800\n"
 "Last-Translator: pan93412 <pan93...@gmail.com>\n"
 "Language-Team: Chinese <zh-l...@linux.org.tw>\n"
 "Language: zh_TW\n"


Reply via email to