Hello community,

here is the log from the commit of package kontactinterface for 
openSUSE:Factory checked in at 2019-04-26 22:50:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kontactinterface (Old)
 and      /work/SRC/openSUSE:Factory/.kontactinterface.new.5536 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kontactinterface"

Fri Apr 26 22:50:00 2019 rev:43 rq:696301 version:19.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kontactinterface/kontactinterface.changes        
2019-03-11 11:11:38.889408574 +0100
+++ 
/work/SRC/openSUSE:Factory/.kontactinterface.new.5536/kontactinterface.changes  
    2019-04-26 22:50:01.633472352 +0200
@@ -1,0 +2,32 @@
+Sat Apr 20 06:51:57 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:
+  * Fix kf5 lib with old CMake version
+
+-------------------------------------------------------------------
+Tue Apr 09 20:54:43 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:
+  * Make it compiles without foreach
+  * Convert to camelcase include
+  * Workaround qt5.13 bug
+
+-------------------------------------------------------------------
+Wed Mar 27 06:41:06 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:
+  * Fix compile with Qt 5.13 and QT_DISABLE_DEPRECATED_BEFORE=0x060000
+
+-------------------------------------------------------------------

Old:
----
  kontactinterface-18.12.3.tar.xz

New:
----
  kontactinterface-19.04.0.tar.xz

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

Other differences:
------------------
++++++ kontactinterface.spec ++++++
--- /var/tmp/diff_new_pack.FfVlR5/_old  2019-04-26 22:50:02.533471892 +0200
+++ /var/tmp/diff_new_pack.FfVlR5/_new  2019-04-26 22:50:02.533471892 +0200
@@ -22,7 +22,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kontactinterface
-Version:        18.12.3
+Version:        19.04.0
 Release:        0
 Summary:        KDE PIM Libraries: Interface to Contacts
 License:        LGPL-2.1-or-later

++++++ kontactinterface-18.12.3.tar.xz -> kontactinterface-19.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/.gitignore 
new/kontactinterface-19.04.0/.gitignore
--- old/kontactinterface-18.12.3/.gitignore     2019-02-08 07:52:52.000000000 
+0100
+++ new/kontactinterface-19.04.0/.gitignore     2019-04-08 07:23:13.000000000 
+0200
@@ -16,6 +16,6 @@
 Makefile
 avail
 random_seed
-/build/
+/build*/
 CMakeLists.txt.user*
 *.unc-backup*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/CMakeLists.txt 
new/kontactinterface-19.04.0/CMakeLists.txt
--- old/kontactinterface-18.12.3/CMakeLists.txt 2019-03-05 01:23:30.000000000 
+0100
+++ new/kontactinterface-19.04.0/CMakeLists.txt 2019-04-12 02:14:21.000000000 
+0200
@@ -1,12 +1,12 @@
-cmake_minimum_required(VERSION 3.0)
-set(PIM_VERSION "5.10.3")
+cmake_minimum_required(VERSION 3.5)
+set(PIM_VERSION "5.11.0")
 
 project(KontactInterface VERSION ${PIM_VERSION})
 
 # ECM setup
-set(KF5_VERSION "5.51.0")
+set(KF5_MIN_VERSION "5.56.0")
 
-find_package(ECM ${KF5_VERSION} CONFIG REQUIRED)
+find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
 include(GenerateExportHeader)
@@ -35,7 +35,7 @@
 )
 
 ########### Find packages ###########
-find_package(KF5 ${KF5_VERSION} REQUIRED COMPONENTS
+find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
     CoreAddons
     Parts
     WindowSystem
@@ -76,8 +76,16 @@
 
 install(EXPORT KF5KontactInterfaceTargets DESTINATION 
"${CMAKECONFIG_INSTALL_DIR}" FILE KF5KontactInterfaceTargets.cmake NAMESPACE 
KF5::)
 
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
-
+# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 
reevaluate it)
+if (${Qt5Widgets_VERSION} STRGREATER "5.13")
+   MESSAGE(STATUS "Qt version: ${Qt5Widgets_VERSION} DISABLE compile without 
deprecated methods. bug QTBUG-74665")
+else()
+   add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+endif()
+if (${KF5Config_VERSION} STRGREATER "5.56.0")
+        add_definitions(-DQT_NO_FOREACH)
+        MESSAGE(STATUS "compile without foreach")
+endif()
 
 add_subdirectory(src)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-18.12.3/KF5KontactInterfaceConfig.cmake.in 
new/kontactinterface-19.04.0/KF5KontactInterfaceConfig.cmake.in
--- old/kontactinterface-18.12.3/KF5KontactInterfaceConfig.cmake.in     
2019-02-08 07:52:52.000000000 +0100
+++ new/kontactinterface-19.04.0/KF5KontactInterfaceConfig.cmake.in     
2019-04-08 07:23:13.000000000 +0200
@@ -1,6 +1,6 @@
 @PACKAGE_INIT@
 include(CMakeFindDependencyMacro)
-find_dependency(KF5Parts "@KF5_VERSION@")
+find_dependency(KF5Parts "@KF5_MIN_VERSION@")
 
 if(NOT CMAKE_VERSION VERSION_LESS "3.10.0")
   # CMake 3.9+ warns about automoc on files without Q_OBJECT, and doesn't know 
about other macros.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ar/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ar/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ar/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ar/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2009-07-21 12:38+0400\n"
 "Last-Translator: Zayed Al-Saidi <zayed.alsa...@gmail.com>\n"
 "Language-Team: Arabic <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/bg/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/bg/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/bg/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/bg/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2011-07-21 19:01+0300\n"
 "Last-Translator: Yasen Pramatarov <ya...@lindeas.com>\n"
 "Language-Team: Bulgarian <d...@fsa-bg.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/bs/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/bs/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/bs/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/bs/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdepimlibs\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2013-10-18 20:13+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian <b...@li.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ca/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ca/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ca/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ca/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2016-03-29 16:50+0100\n"
 "Last-Translator: Antoni Bella Pérez <antonibel...@yahoo.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-18.12.3/po/ca@valencia/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ca@valencia/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ca@valencia/kontactinterfaces5.po   
2019-03-05 01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ca@valencia/kontactinterfaces5.po   
2019-04-12 02:14:21.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2016-03-29 16:50+0100\n"
 "Last-Translator: Antoni Bella Pérez <antonibel...@yahoo.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/cs/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/cs/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/cs/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/cs/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2010-12-18 19:15+0100\n"
 "Last-Translator: Vít Pelčák <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/da/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/da/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/da/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/da/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-06-03 18:17+0100\n"
 "Last-Translator: Jan Madsen <jan.madsen...@gmail.com>\n"
 "Language-Team: Danish <da...@dansk-gruppen.dk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/de/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/de/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/de/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/de/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-18 22:55+0200\n"
 "Last-Translator: Thomas Reitelbach <t...@erdfunkstelle.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/el/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/el/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/el/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/el/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-26 13:40+0300\n"
 "Last-Translator: Spiros Georgaras <sngeorga...@otenet.gr>\n"
 "Language-Team: Greek <i18...@lists.hellug.gr>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-18.12.3/po/en_GB/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/en_GB/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/en_GB/kontactinterfaces5.po 2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/en_GB/kontactinterfaces5.po 2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2014-08-17 13:14+0100\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-l10n-en...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/eo/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/eo/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/eo/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/eo/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2009-11-15 12:06+0100\n"
 "Last-Translator: Axel Rousseau <a...@esperanto-jeunes.org>\n"
 "Language-Team: esperanto <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/es/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/es/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/es/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/es/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2013-11-25 14:08+0100\n"
 "Last-Translator: Javier Vinal <fjvi...@gmail.com>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/et/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/et/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/et/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/et/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-06-04 00:37+0300\n"
 "Last-Translator: Marek Laane <b...@smail.ee>\n"
 "Language-Team: Estonian <kde...@linux.ee>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/fi/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/fi/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/fi/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/fi/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2013-01-20 20:04:10+0000\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <lokalisoi...@lists.coss.fi>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/fr/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/fr/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/fr/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/fr/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-25 02:57+0200\n"
 "Last-Translator: Mickael Sibelle <kim...@gmail.com>\n"
 "Language-Team: Francais <kde-francoph...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ga/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ga/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ga/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ga/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces.po\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-18 07:38-0500\n"
 "Last-Translator: Kevin Scannell <ksca...@gmail.com>\n"
 "Language-Team: Irish <gaeilge-gnuli...@lists.sourceforge.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/gl/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/gl/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/gl/kontactinterfaces5.po    2019-03-05 
01:23:28.000000000 +0100
+++ new/kontactinterface-19.04.0/po/gl/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-06-11 23:25+0200\n"
 "Last-Translator: mvillarino <mvillar...@users.sourceforge.net>\n"
 "Language-Team: galician <proxe...@trasno.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/he/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/he/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/he/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/he/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2017-05-16 06:41-0400\n"
 "Last-Translator: Copied by Zanata <copied-by-zan...@zanata.org>\n"
 "Language-Team: Hebrew <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/hu/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/hu/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/hu/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/hu/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4.2\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2010-12-26 15:54+0100\n"
 "Last-Translator: Kristóf Kiszel <ulys...@kubuntu.org>\n"
 "Language-Team: Hungarian <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ia/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ia/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ia/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ia/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2011-11-07 16:33+0100\n"
 "Last-Translator: g.sora <g.s...@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/it/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/it/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/it/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/it/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-07-05 15:48+0000\n"
 "Last-Translator: Federico Zenith <zen...@chemeng.ntnu.no>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ja/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ja/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ja/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ja/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-03-01 07:00+0900\n"
 "Last-Translator: Yukiko Bando <yba...@k6.dion.ne.jp>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/kk/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/kk/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/kk/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/kk/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2011-02-11 04:57+0600\n"
 "Last-Translator: Sairan Kikkarin <sai...@computer.org>\n"
 "Language-Team: Kazakh <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/km/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/km/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/km/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/km/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-12-17 10:53+0700\n"
 "Last-Translator: Khoem Sokhem <khoemsok...@khmeros.info>\n"
 "Language-Team: Khmer <supp...@khmeros.info>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ko/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ko/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ko/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ko/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2014-03-03 00:26+0900\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <k...@peremen.name>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/lt/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/lt/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/lt/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/lt/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2012-08-02 20:05+0300\n"
 "Last-Translator: Liudas Ališauskas <liudas.alisaus...@gmail.com>\n"
 "Language-Team: Lithuanian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/lv/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/lv/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/lv/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/lv/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-06-18 08:27+0300\n"
 "Last-Translator: Viesturs Zarins <viesturs.zar...@mii.lu.lv>\n"
 "Language-Team: Latvian <loc...@laka.lv>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/mr/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/mr/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/mr/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/mr/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2013-03-13 15:19+0530\n"
 "Last-Translator: Chetan Khona <che...@kompkin.com>\n"
 "Language-Team: Marathi <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/nb/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/nb/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/nb/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/nb/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-08-13 11:15+0200\n"
 "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-18.12.3/po/nds/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/nds/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/nds/kontactinterfaces5.po   2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/nds/kontactinterfaces5.po   2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-29 23:45+0200\n"
 "Last-Translator: Sönke Dibbern <s_dibb...@web.de>\n"
 "Language-Team: Low Saxon <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/nl/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/nl/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/nl/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/nl/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-07-21 22:26+0200\n"
 "Last-Translator: Rinse de Vries <rinsedevr...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/nn/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/nn/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/nn/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/nn/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-09-14 12:12+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/pa/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/pa/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/pa/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/pa/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2010-01-16 08:10+0530\n"
 "Last-Translator: A S Alam <aa...@users.sf.net>\n"
 "Language-Team: ਪੰਜਾਬੀ <punjabi-us...@lists.sf.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/pl/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/pl/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/pl/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/pl/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2014-08-16 08:02+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/pt/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/pt/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/pt/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/pt/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-17 23:44+0100\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/kontactinterface-18.12.3/po/pt_BR/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/pt_BR/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/pt_BR/kontactinterfaces5.po 2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/pt_BR/kontactinterfaces5.po 2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2014-08-16 10:47-0300\n"
 "Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ro/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ro/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ro/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ro/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-12-31 21:48+0200\n"
 "Last-Translator: Sergiu Bivol <ser...@ase.md>\n"
 "Language-Team: Romanian <kde-i18n...@lists.kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ru/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ru/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ru/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ru/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2010-12-06 23:11+0300\n"
 "Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/sk/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/sk/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/sk/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/sk/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2014-08-14 14:17+0200\n"
 "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/sl/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/sl/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/sl/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/sl/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-11-01 17:21+0100\n"
 "Last-Translator: Andrej Vernekar <andrej.verne...@moj.net>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/sr/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/sr/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/sr/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/sr/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2009-01-15 14:07+0100\n"
 "Last-Translator: Slobodan Simic <slsi...@gmail.com>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/sv/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/sv/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/sv/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/sv/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-17 14:55+0200\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <s...@li.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/tr/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/tr/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/tr/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/tr/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kdepimlibs-kde4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2014-11-12 01:06+0200\n"
 "Last-Translator: Kaan Ozdincer <kaanozdin...@gmail.com>\n"
 "Language-Team: Turkish <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/ug/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/ug/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/ug/kontactinterfaces5.po    2019-03-05 
01:23:29.000000000 +0100
+++ new/kontactinterface-19.04.0/po/ug/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2013-09-08 07:05+0900\n"
 "Last-Translator: Gheyret Kenji <ghey...@gmail.com>\n"
 "Language-Team: Uyghur Computer Science Association <u...@yahoogroups.com>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/uk/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/uk/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/uk/kontactinterfaces5.po    2019-03-05 
01:23:30.000000000 +0100
+++ new/kontactinterface-19.04.0/po/uk/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -1,5 +1,5 @@
 # Translation of kontactinterfaces5.po to Ukrainian
-# Copyright (C) 2018 This_file_is_part_of_KDE
+# Copyright (C) 2014 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-18 20:14+0300\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <translat...@linux.org.ua>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/po/wa/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/wa/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/wa/kontactinterfaces5.po    2019-03-05 
01:23:30.000000000 +0100
+++ new/kontactinterface-19.04.0/po/wa/kontactinterfaces5.po    2019-04-12 
02:14:21.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-07-21 14:29+0200\n"
 "Last-Translator: Jean Cayron <jean.cay...@gmail.com>\n"
 "Language-Team: Walloon <li...@walon.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kontactinterface-18.12.3/po/zh_CN/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/zh_CN/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/zh_CN/kontactinterfaces5.po 2019-03-05 
01:23:30.000000000 +0100
+++ new/kontactinterface-19.04.0/po/zh_CN/kontactinterfaces5.po 2019-04-12 
02:14:21.000000000 +0200
@@ -6,8 +6,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
-"PO-Revision-Date: 2019-02-20 23:28\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
+"PO-Revision-Date: 2019-04-09 18:52\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/kontactinterface-18.12.3/po/zh_TW/kontactinterfaces5.po 
new/kontactinterface-19.04.0/po/zh_TW/kontactinterfaces5.po
--- old/kontactinterface-18.12.3/po/zh_TW/kontactinterfaces5.po 2019-03-05 
01:23:30.000000000 +0100
+++ new/kontactinterface-19.04.0/po/zh_TW/kontactinterfaces5.po 2019-04-12 
02:14:21.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kontactinterfaces\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:58+0100\n"
+"POT-Creation-Date: 2018-08-16 09:13+0200\n"
 "PO-Revision-Date: 2008-05-20 12:28+0800\n"
 "Last-Translator: Frank Weng (a.k.a. Franklin) <franklin at goodhorse dot idv "
 "dot tw>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/src/summary.cpp 
new/kontactinterface-19.04.0/src/summary.cpp
--- old/kontactinterface-18.12.3/src/summary.cpp        2019-02-08 
07:52:52.000000000 +0100
+++ new/kontactinterface-19.04.0/src/summary.cpp        2019-04-08 
07:23:13.000000000 +0200
@@ -83,7 +83,7 @@
 {
     QWidget *box = new QWidget(parent);
     QHBoxLayout *hbox = new QHBoxLayout;
-    hbox->setMargin(0);
+    hbox->setContentsMargins(0, 0, 0, 0);
     hbox->setSpacing(0);
     box->setLayout(hbox);
     box->setAutoFillBackground(true);
@@ -148,7 +148,7 @@
         painter.drawRect(0, 0, pm.width(), pm.height());
         painter.end();
         drag->setPixmap(pm);
-        drag->start(Qt::MoveAction);
+        drag->exec(Qt::MoveAction);
     } else {
         QWidget::mouseMoveEvent(event);
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kontactinterface-18.12.3/src/uniqueapphandler.cpp 
new/kontactinterface-19.04.0/src/uniqueapphandler.cpp
--- old/kontactinterface-18.12.3/src/uniqueapphandler.cpp       2019-02-08 
07:52:52.000000000 +0100
+++ new/kontactinterface-19.04.0/src/uniqueapphandler.cpp       2019-04-08 
07:23:13.000000000 +0200
@@ -20,7 +20,7 @@
 */
 
 #include "uniqueapphandler.h"
-#include <qdbusabstractadaptor.h>
+#include <QDBusAbstractAdaptor>
 #include "core.h"
 
 #include "processes.h"


Reply via email to