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 - [email protected]
+
+- 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 - [email protected]
+
+- 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 - [email protected]
+
+- 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 <[email protected]>\n"
"Language-Team: Arabic <[email protected]>\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 <[email protected]>\n"
"Language-Team: Bulgarian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\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 <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\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 <[email protected]>\n"
"Language-Team: Czech <[email protected]>\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 <[email protected]>\n"
"Language-Team: Danish <[email protected]>\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 <[email protected]>\n"
"Language-Team: German <[email protected]>\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 <[email protected]>\n"
"Language-Team: Greek <[email protected]>\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 <[email protected]>\n"
"Language-Team: British English <[email protected]>\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 <[email protected]>\n"
"Language-Team: esperanto <[email protected]>\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 <[email protected]>\n"
"Language-Team: Spanish <[email protected]>\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 <[email protected]>\n"
"Language-Team: Estonian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\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 <[email protected]>\n"
"Language-Team: Francais <[email protected]>\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 <[email protected]>\n"
"Language-Team: Irish <[email protected]>\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 <[email protected]>\n"
"Language-Team: galician <[email protected]>\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 <[email protected]>\n"
"Language-Team: Hebrew <[email protected]>\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 <[email protected]>\n"
"Language-Team: Hungarian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Interlingua <[email protected]>\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 <[email protected]>\n"
"Language-Team: Italian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Japanese <[email protected]>\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 <[email protected]>\n"
"Language-Team: Kazakh <[email protected]>\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 <[email protected]>\n"
"Language-Team: Khmer <[email protected]>\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 <[email protected]>\n"
"Language-Team: Korean <[email protected]>\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 <[email protected]>\n"
"Language-Team: Lithuanian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Latvian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Marathi <[email protected]>\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 <[email protected]>\n"
"Language-Team: Norwegian Bokmål <[email protected]>\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 <[email protected]>\n"
"Language-Team: Low Saxon <[email protected]>\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 <[email protected]>\n"
"Language-Team: Dutch <[email protected]>\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 <[email protected]>\n"
"Language-Team: Norwegian Nynorsk <[email protected]>\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 <[email protected]>\n"
"Language-Team: ਪੰਜਾਬੀ <[email protected]>\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 <[email protected]>\n"
"Language-Team: Polish <[email protected]>\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 <[email protected]>\n"
"Language-Team: Portuguese <[email protected]>\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 <[email protected]>\n"
"Language-Team: Brazilian Portuguese <[email protected]>\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 <[email protected]>\n"
"Language-Team: Romanian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Russian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Slovak <[email protected]>\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 <[email protected]>\n"
"Language-Team: Slovenian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Serbian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\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 <[email protected]>\n"
"Language-Team: Turkish <[email protected]>\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 <[email protected]>\n"
"Language-Team: Uyghur Computer Science Association <[email protected]>\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 <[email protected]>\n"
"Language-Team: Ukrainian <[email protected]>\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 <[email protected]>\n"
"Language-Team: Walloon <[email protected]>\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 <[email protected]>\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"