Hello community, here is the log from the commit of package mailimporter for openSUSE:Factory checked in at 2019-08-16 15:41:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mailimporter (Old) and /work/SRC/openSUSE:Factory/.mailimporter.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mailimporter" Fri Aug 16 15:41:54 2019 rev:42 rq:723756 version:19.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/mailimporter/mailimporter.changes 2019-07-26 12:25:24.518433947 +0200 +++ /work/SRC/openSUSE:Factory/.mailimporter.new.22127/mailimporter.changes 2019-08-16 15:41:55.981764152 +0200 @@ -1,0 +2,31 @@ +Fri Aug 9 08:32:19 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Update to 19.08.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08.0.php +- No code change since 19.07.90 + +------------------------------------------------------------------- +Tue Aug 06 16:50:51 UTC 2019 - [email protected] + +- Update to 19.07.90 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-rc.php +- No code changes since 19.07.80 + +------------------------------------------------------------------- +Tue Jul 23 11:59:07 UTC 2019 - [email protected] + +- Update to 19.07.80 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-beta.php +- Changes since 19.04.3: + * When we use framework 5.59.0 we can use new logging file directory + * It was fixed in 5.13.0beta2 + * metainfo.yaml: Fix cmakename, is own top-level entry + * It compiles fine without foreach + +------------------------------------------------------------------- Old: ---- mailimporter-19.04.3.tar.xz New: ---- applications.keyring mailimporter-19.08.0.tar.xz mailimporter-19.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mailimporter.spec ++++++ --- /var/tmp/diff_new_pack.Kcz3kD/_old 2019-08-16 15:41:57.017763851 +0200 +++ /var/tmp/diff_new_pack.Kcz3kD/_new 2019-08-16 15:41:57.017763851 +0200 @@ -21,13 +21,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: mailimporter -Version: 19.04.3 +Version: 19.08.0 Release: 0 Summary: Mail import functionality for KDE PIM License: GPL-2.0-or-later Group: Development/Libraries/C and C++ -URL: http://www.kde.org -Source0: %{name}-%{version}.tar.xz +URL: https://www.kde.org +Source: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz +%if %{with lang} +Source1: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif BuildRequires: akonadi-contact-devel BuildRequires: akonadi-mime-devel BuildRequires: akonadi-server-devel ++++++ mailimporter-19.04.3.tar.xz -> mailimporter-19.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/CMakeLists.txt new/mailimporter-19.08.0/CMakeLists.txt --- old/mailimporter-19.04.3/CMakeLists.txt 2019-07-09 02:26:54.000000000 +0200 +++ new/mailimporter-19.08.0/CMakeLists.txt 2019-08-09 02:57:22.000000000 +0200 @@ -1,9 +1,9 @@ cmake_minimum_required(VERSION 3.5) -set(PIM_VERSION "5.11.3") +set(PIM_VERSION "5.12.0") project(MailImporter VERSION ${PIM_VERSION}) -set(KF5_MIN_VERSION "5.56.0") +set(KF5_MIN_VERSION "5.60.0") find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -26,11 +26,11 @@ set(MAILIMPORTER_LIB ${PIM_VERSION}) -set(AKONADIMIME_LIB_VERSION "5.11.3") -set(KDEPIM_LIB_VERSION "5.11.3") -set(QT_REQUIRED_VERSION "5.10.0") -set(KMIME_LIB_VERSION "5.11.3") -set(AKONADI_VERSION "5.11.3") +set(AKONADIMIME_LIB_VERSION "5.12.0") +set(KDEPIM_LIB_VERSION "5.12.0") +set(QT_REQUIRED_VERSION "5.11.0") +set(KMIME_LIB_VERSION "5.12.0") +set(AKONADI_VERSION "5.12.0") find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets Test Xml) @@ -47,12 +47,7 @@ ########### Targets ########### -# 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() +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) ########### CMake Config Files ########### @@ -61,10 +56,11 @@ if(BUILD_TESTING) add_definitions(-DBUILD_TESTING) endif() +add_definitions(-DQT_NO_FOREACH) add_subdirectory(src) -install( FILES mailimporter.renamecategories mailimporter.categories DESTINATION ${KDE_INSTALL_CONFDIR} ) +install(FILES mailimporter.renamecategories mailimporter.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/metainfo.yaml new/mailimporter-19.08.0/metainfo.yaml --- old/mailimporter-19.04.3/metainfo.yaml 2019-06-24 07:01:14.000000000 +0200 +++ new/mailimporter-19.08.0/metainfo.yaml 2019-08-04 19:35:27.000000000 +0200 @@ -8,8 +8,8 @@ libraries: - qmake: MailImporter cmake: "KF5::MailImporter" - cmakename: KF5MailImporter +cmakename: KF5MailImporter - qmake: MailImporterAkonadi cmake: "KF5::MailImporterAkonadi" - cmakename: KF5MailImporterAkonadi +cmakename: KF5MailImporterAkonadi irc: akonadi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ar/libmailimporter.po new/mailimporter-19.08.0/po/ar/libmailimporter.po --- old/mailimporter-19.04.3/po/ar/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/ar/libmailimporter.po 2019-08-09 02:57:20.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-10-14 13:14+0000\n" "Last-Translator: safaalfulaij <[email protected]>\n" "Language-Team: <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/bg/libmailimporter.po new/mailimporter-19.08.0/po/bg/libmailimporter.po --- old/mailimporter-19.04.3/po/bg/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/bg/libmailimporter.po 2019-08-09 02:57:20.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2011-12-26 11:41+0200\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/mailimporter-19.04.3/po/bs/libmailimporter.po new/mailimporter-19.08.0/po/bs/libmailimporter.po --- old/mailimporter-19.04.3/po/bs/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/bs/libmailimporter.po 2019-08-09 02:57:20.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2015-02-04 15:03+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/mailimporter-19.04.3/po/ca/libmailimporter.po new/mailimporter-19.08.0/po/ca/libmailimporter.po --- old/mailimporter-19.04.3/po/ca/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/ca/libmailimporter.po 2019-08-09 02:57:20.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-12-30 18:06+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ca@valencia/libmailimporter.po new/mailimporter-19.08.0/po/ca@valencia/libmailimporter.po --- old/mailimporter-19.04.3/po/ca@valencia/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/ca@valencia/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-12-30 18:06+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/cs/libmailimporter.po new/mailimporter-19.08.0/po/cs/libmailimporter.po --- old/mailimporter-19.04.3/po/cs/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/cs/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-11-15 17:02+0100\n" "Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/da/libmailimporter.po new/mailimporter-19.08.0/po/da/libmailimporter.po --- old/mailimporter-19.04.3/po/da/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/da/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-11-07 20:04+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/de/libmailimporter.po new/mailimporter-19.08.0/po/de/libmailimporter.po --- old/mailimporter-19.04.3/po/de/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/de/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-11-21 13:32+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/el/libmailimporter.po new/mailimporter-19.08.0/po/el/libmailimporter.po --- old/mailimporter-19.04.3/po/el/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/el/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2014-02-28 11:07+0100\n" "Last-Translator: Dimitrios Glentadakis <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/en_GB/libmailimporter.po new/mailimporter-19.08.0/po/en_GB/libmailimporter.po --- old/mailimporter-19.04.3/po/en_GB/libmailimporter.po 2019-07-09 02:26:51.000000000 +0200 +++ new/mailimporter-19.08.0/po/en_GB/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-11-26 13:55+0000\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/mailimporter-19.04.3/po/eo/libmailimporter.po new/mailimporter-19.08.0/po/eo/libmailimporter.po --- old/mailimporter-19.04.3/po/eo/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/eo/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2002-05-05 01:09GMT\n" "Last-Translator: Steffen Pietsch <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/es/libmailimporter.po new/mailimporter-19.08.0/po/es/libmailimporter.po --- old/mailimporter-19.04.3/po/es/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/es/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-09-03 22: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/mailimporter-19.04.3/po/et/libmailimporter.po new/mailimporter-19.08.0/po/et/libmailimporter.po --- old/mailimporter-19.04.3/po/et/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/et/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2016-07-28 02:28+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/mailimporter-19.04.3/po/eu/libmailimporter.po new/mailimporter-19.08.0/po/eu/libmailimporter.po --- old/mailimporter-19.04.3/po/eu/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/eu/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2010-11-28 21:59+0100\n" "Last-Translator: Ignigo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/fa/libmailimporter.po new/mailimporter-19.08.0/po/fa/libmailimporter.po --- old/mailimporter-19.04.3/po/fa/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/fa/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2012-01-16 23:08+0330\n" "Last-Translator: Mohammad Reza Mirdamadi <[email protected]>\n" "Language-Team: Farsi (Persian) <>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/fi/libmailimporter.po new/mailimporter-19.08.0/po/fi/libmailimporter.po --- old/mailimporter-19.04.3/po/fi/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/fi/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-09-08 11:06+0200\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/mailimporter-19.04.3/po/fr/libmailimporter.po new/mailimporter-19.08.0/po/fr/libmailimporter.po --- old/mailimporter-19.04.3/po/fr/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/fr/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -23,7 +23,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-09-08 10:06+0100\n" "Last-Translator: Vincent Pinon <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ga/libmailimporter.po new/mailimporter-19.08.0/po/ga/libmailimporter.po --- old/mailimporter-19.04.3/po/ga/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/ga/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdepim/kmailcvt.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2004-12-03 14:52-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/mailimporter-19.04.3/po/gl/libmailimporter.po new/mailimporter-19.08.0/po/gl/libmailimporter.po --- old/mailimporter-19.04.3/po/gl/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/gl/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2018-04-22 11:13+0100\n" "Last-Translator: Adrian Chaves <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -19,11 +19,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Environment: kde\n" -"X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" #: mailimporter/filters/filterbalsa.cpp:40 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/he/libmailimporter.po new/mailimporter-19.08.0/po/he/libmailimporter.po --- old/mailimporter-19.04.3/po/he/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/he/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-05-16 07:05-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/mailimporter-19.04.3/po/hi/libmailimporter.po new/mailimporter-19.08.0/po/hi/libmailimporter.po --- old/mailimporter-19.04.3/po/hi/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/hi/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2008-01-19 14:09+0530\n" "Last-Translator: Ravishankar Shrivastava <[email protected]>\n" "Language-Team: Hindi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/hr/libmailimporter.po new/mailimporter-19.08.0/po/hr/libmailimporter.po --- old/mailimporter-19.04.3/po/hr/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/hr/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kmailcvt 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2004-04-20 13:26+CEST\n" "Last-Translator: auto\n" "Language-Team: Croatian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/hu/libmailimporter.po new/mailimporter-19.08.0/po/hu/libmailimporter.po --- old/mailimporter-19.04.3/po/hu/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/hu/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-10-06 12:21+0200\n" "Last-Translator: Balázs Úr <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ia/libmailimporter.po new/mailimporter-19.08.0/po/ia/libmailimporter.po --- old/mailimporter-19.04.3/po/ia/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/ia/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-10-23 13:55+0200\n" "Last-Translator: Giovanni Sora <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/is/libmailimporter.po new/mailimporter-19.08.0/po/is/libmailimporter.po --- old/mailimporter-19.04.3/po/is/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/is/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2006-03-04 12:25+0100\n" "Last-Translator: Arnar Leósson <[email protected]>\n" "Language-Team: Icelandic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/it/libmailimporter.po new/mailimporter-19.08.0/po/it/libmailimporter.po --- old/mailimporter-19.04.3/po/it/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/it/libmailimporter.po 2019-08-09 02:57:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-08-28 21:58+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ja/libmailimporter.po new/mailimporter-19.08.0/po/ja/libmailimporter.po --- old/mailimporter-19.04.3/po/ja/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/ja/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2010-10-23 20:49-0700\n" "Last-Translator: Fumiaki Okushi <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/kk/libmailimporter.po new/mailimporter-19.08.0/po/kk/libmailimporter.po --- old/mailimporter-19.04.3/po/kk/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/kk/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-09-18 05:27+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/mailimporter-19.04.3/po/km/libmailimporter.po new/mailimporter-19.08.0/po/km/libmailimporter.po --- old/mailimporter-19.04.3/po/km/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/km/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2012-06-19 09:11+0700\n" "Last-Translator: Sophea <[email protected]>\n" "Language-Team: Khmer <>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ko/libmailimporter.po new/mailimporter-19.08.0/po/ko/libmailimporter.po --- old/mailimporter-19.04.3/po/ko/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/ko/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-12-03 22:51+0100\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/mailimporter-19.04.3/po/lt/libmailimporter.po new/mailimporter-19.08.0/po/lt/libmailimporter.po --- old/mailimporter-19.04.3/po/lt/libmailimporter.po 2019-07-09 02:26:52.000000000 +0200 +++ new/mailimporter-19.08.0/po/lt/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2011-10-11 11:28+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/mailimporter-19.04.3/po/lv/libmailimporter.po new/mailimporter-19.08.0/po/lv/libmailimporter.po --- old/mailimporter-19.04.3/po/lv/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/lv/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2010-01-12 09:46+0200\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/mailimporter-19.04.3/po/mr/libmailimporter.po new/mailimporter-19.08.0/po/mr/libmailimporter.po --- old/mailimporter-19.04.3/po/mr/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/mr/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-03-06 13:10+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/mailimporter-19.04.3/po/nb/libmailimporter.po new/mailimporter-19.08.0/po/nb/libmailimporter.po --- old/mailimporter-19.04.3/po/nb/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/nb/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2013-09-30 12:12+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/mailimporter-19.04.3/po/nds/libmailimporter.po new/mailimporter-19.08.0/po/nds/libmailimporter.po --- old/mailimporter-19.04.3/po/nds/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/nds/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2014-04-06 21:56+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/mailimporter-19.04.3/po/nl/libmailimporter.po new/mailimporter-19.08.0/po/nl/libmailimporter.po --- old/mailimporter-19.04.3/po/nl/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/nl/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-08-24 22:17+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/nn/libmailimporter.po new/mailimporter-19.08.0/po/nn/libmailimporter.po --- old/mailimporter-19.04.3/po/nn/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/nn/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2010-04-20 22:24+0200\n" "Last-Translator: Eirik U. Birkeland <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/pa/libmailimporter.po new/mailimporter-19.08.0/po/pa/libmailimporter.po --- old/mailimporter-19.04.3/po/pa/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/pa/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2011-06-29 22:59+0530\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: Punjabi/Panjabi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/pl/libmailimporter.po new/mailimporter-19.08.0/po/pl/libmailimporter.po --- old/mailimporter-19.04.3/po/pl/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/pl/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2019-01-20 07:39+0100\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/mailimporter-19.04.3/po/pt/libmailimporter.po new/mailimporter-19.08.0/po/pt/libmailimporter.po --- old/mailimporter-19.04.3/po/pt/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/pt/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-08-25 15:46+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/mailimporter-19.04.3/po/pt_BR/libmailimporter.po new/mailimporter-19.08.0/po/pt_BR/libmailimporter.po --- old/mailimporter-19.04.3/po/pt_BR/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/pt_BR/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2018-09-11 22:27-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/mailimporter-19.04.3/po/ro/libmailimporter.po new/mailimporter-19.08.0/po/ro/libmailimporter.po --- old/mailimporter-19.04.3/po/ro/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/ro/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2011-05-01 13:49+0300\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/mailimporter-19.04.3/po/ru/libmailimporter.po new/mailimporter-19.08.0/po/ru/libmailimporter.po --- old/mailimporter-19.04.3/po/ru/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/ru/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2018-08-04 21:36+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/sk/libmailimporter.po new/mailimporter-19.08.0/po/sk/libmailimporter.po --- old/mailimporter-19.04.3/po/sk/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/sk/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -4,19 +4,20 @@ # Stanislav Visnovsky <[email protected]>, 2003, 2004. # Richard Fric <[email protected]>, 2006, 2009, 2010. # Roman Paholík <[email protected]>, 2012, 2013, 2015, 2017. +# Matej Mrenica <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" -"PO-Revision-Date: 2017-11-01 11:10+0100\n" -"Last-Translator: Roman Paholik <[email protected]>\n" -"Language-Team: Slovak <[email protected]>\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" +"PO-Revision-Date: 2019-08-04 18:30+0200\n" +"Last-Translator: Matej Mrenica <[email protected]>\n" +"Language-Team: Slovak <[email protected]>\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.07.90\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: mailimporter/filters/filterbalsa.cpp:40 @@ -393,10 +394,9 @@ msgstr "Vyberte súbor archívu KMail na import" #: mailimporter/filters/filterkmailarchive.cpp:177 -#, fuzzy, kde-format -#| msgid "Import KMail Archive File" +#, kde-format msgid "KMail Archive Files " -msgstr "Importovať súbor archívu KMail" +msgstr "Súbory archívu KMail" #: mailimporter/filters/filterkmailarchive.cpp:179 #, kde-format @@ -542,10 +542,9 @@ "importovalo a predponou MAILMAN-</p>" #: mailimporter/filters/filtermailmangzip.cpp:47 -#, fuzzy, kde-format -#| msgid "gzip Files (*.txt.gz)" +#, kde-format msgid "gzip Files" -msgstr "gzip súbory (*.txt.gz)" +msgstr "gzip súbory" #: mailimporter/filters/filtermailmangzip.cpp:67 #, kde-format @@ -579,10 +578,9 @@ "budú podľa súborov, z ktorých sa importovalo a predponou MBOX-</p>" #: mailimporter/filters/filtermbox.cpp:47 -#, fuzzy, kde-format -#| msgid "mbox Files (*.mbox)" +#, kde-format msgid "mbox Files" -msgstr "mbox súbory (*.mbox)" +msgstr "mbox súbory" #: mailimporter/filters/filteroe.cpp:40 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/sl/libmailimporter.po new/mailimporter-19.08.0/po/sl/libmailimporter.po --- old/mailimporter-19.04.3/po/sl/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/sl/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2018-01-20 11:02+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/sv/libmailimporter.po new/mailimporter-19.08.0/po/sv/libmailimporter.po --- old/mailimporter-19.04.3/po/sv/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/sv/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-08-24 16:47+0100\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/mailimporter-19.04.3/po/tr/libmailimporter.po new/mailimporter-19.08.0/po/tr/libmailimporter.po --- old/mailimporter-19.04.3/po/tr/libmailimporter.po 2019-07-09 02:26:53.000000000 +0200 +++ new/mailimporter-19.08.0/po/tr/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kdepim-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-10-03 14:32+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/ug/libmailimporter.po new/mailimporter-19.08.0/po/ug/libmailimporter.po --- old/mailimporter-19.04.3/po/ug/libmailimporter.po 2019-07-09 02:26:54.000000000 +0200 +++ new/mailimporter-19.08.0/po/ug/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+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/mailimporter-19.04.3/po/uk/libmailimporter.po new/mailimporter-19.08.0/po/uk/libmailimporter.po --- old/mailimporter-19.04.3/po/uk/libmailimporter.po 2019-07-09 02:26:54.000000000 +0200 +++ new/mailimporter-19.08.0/po/uk/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libmailimporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" "PO-Revision-Date: 2017-08-24 09:00+0200\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/mailimporter-19.04.3/po/zh_CN/libmailimporter.po new/mailimporter-19.08.0/po/zh_CN/libmailimporter.po --- old/mailimporter-19.04.3/po/zh_CN/libmailimporter.po 2019-07-09 02:26:54.000000000 +0200 +++ new/mailimporter-19.08.0/po/zh_CN/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" -"PO-Revision-Date: 2019-06-02 13:16\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" +"PO-Revision-Date: 2019-07-18 15:10\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mailimporter-19.04.3/po/zh_TW/libmailimporter.po new/mailimporter-19.08.0/po/zh_TW/libmailimporter.po --- old/mailimporter-19.04.3/po/zh_TW/libmailimporter.po 2019-07-09 02:26:54.000000000 +0200 +++ new/mailimporter-19.08.0/po/zh_TW/libmailimporter.po 2019-08-09 02:57:22.000000000 +0200 @@ -8,19 +8,20 @@ # Frank Weng (a.k.a. Franklin) <franklin at goodhorse dot idv dot tw>, 2006, 2007, 2009, 2010. # Franklin Weng <franklin at goodhorse dot idv dot tw>, 2007. # Franklin Weng <[email protected]>, 2012, 2013, 2015. +# pan93412 <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: kmailcvt\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:44+0200\n" -"PO-Revision-Date: 2015-06-14 13:27+0800\n" -"Last-Translator: Franklin\n" -"Language-Team: Chinese Traditional <[email protected]>\n" +"POT-Creation-Date: 2019-05-20 03:18+0200\n" +"PO-Revision-Date: 2019-05-14 22:35+0800\n" +"Last-Translator: pan93412 <[email protected]>\n" +"Language-Team: Chinese <[email protected]>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 19.04.1\n" "Plural-Forms: nplurals=1; plural=0;\n" #: mailimporter/filters/filterbalsa.cpp:40 @@ -352,7 +353,7 @@ #: mailimporter/filters/filterkmailarchive.cpp:47 #, kde-format msgid "Import KMail Archive File" -msgstr "匯入 KMail 歸檔" +msgstr "匯入 KMail 封存" #: mailimporter/filters/filterkmailarchive.cpp:49 #, kde-format @@ -361,8 +362,8 @@ "archives files previously exported by KMail.</p><p>Archive files contain a " "complete folder subtree compressed into a single file.</p>" msgstr "" -"<p><b>KMail 歸檔匯入過濾器</b></p> <p>此過濾器會匯入先前 KMail 匯出的歸檔。</" -"p> <p>歸檔包含一個完整的資料夾子樹,壓縮在一個檔案內。</p>" +"<p><b>KMail 封存匯入過濾器</b></p> <p>此過濾器會匯入先前 KMail 匯出的封存。</" +"p> <p>封存包含一個完整的資料夾子樹,壓縮在一個檔案內。</p>" #: mailimporter/filters/filterkmailarchive.cpp:90 #, kde-format @@ -387,18 +388,18 @@ #: mailimporter/filters/filterkmailarchive.cpp:176 #, kde-format msgid "Select KMail Archive File to Import" -msgstr "選擇要匯入的 KMail 歸檔" +msgstr "選擇要匯入的 KMail 封存" #: mailimporter/filters/filterkmailarchive.cpp:177 #, fuzzy, kde-format #| msgid "Import KMail Archive File" msgid "KMail Archive Files " -msgstr "匯入 KMail 歸檔" +msgstr "匯入 KMail 封存" #: mailimporter/filters/filterkmailarchive.cpp:179 #, kde-format msgid "Please select an archive file that should be imported." -msgstr "請選擇要匯入的歸檔檔名。" +msgstr "請選擇要匯入的封存檔名。" #: mailimporter/filters/filterkmailarchive.cpp:188 #, fuzzy, kde-format @@ -409,12 +410,12 @@ #: mailimporter/filters/filterkmailarchive.cpp:202 #, kde-format msgid "The file '%1' does not appear to be a valid archive." -msgstr "檔案 %1 似乎不是合法的歸檔。" +msgstr "檔案 %1 似乎不是合法的封存。" #: mailimporter/filters/filterkmailarchive.cpp:207 #, kde-format msgid "Unable to open archive file '%1'" -msgstr "無法開啟歸檔 %1。" +msgstr "無法開啟封存 %1。" #: mailimporter/filters/filterkmailarchive.cpp:212 #, kde-format @@ -424,7 +425,7 @@ #: mailimporter/filters/filterkmailarchive.cpp:218 #, kde-format msgid "Importing the archive file '%1' into the folder '%2' succeeded." -msgstr "匯入歸檔 %1 到資料夾 %2 中成功。" +msgstr "匯入封存 %1 到資料夾 %2 中成功。" #: mailimporter/filters/filterkmailarchive.cpp:220 #, kde-format @@ -435,7 +436,7 @@ #: mailimporter/filters/filterkmailarchive.cpp:223 #, kde-format msgid "Importing the archive failed." -msgstr "匯入歸檔失敗。" +msgstr "匯入封存失敗。" #: mailimporter/filters/filterlnotes.cpp:43 #, kde-format @@ -540,7 +541,7 @@ #: mailimporter/filters/filtermailmangzip.cpp:67 #, kde-format msgid "Unable to open archive file '%1', skipping" -msgstr "無法開啟歸檔 %1,將跳過。" +msgstr "無法開啟封存 %1,將跳過。" #: mailimporter/filters/filtermbox.cpp:29 #, kde-format
