Hello community, here is the log from the commit of package mbox-importer for openSUSE:Factory checked in at 2020-08-18 14:00:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mbox-importer (Old) and /work/SRC/openSUSE:Factory/.mbox-importer.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mbox-importer" Tue Aug 18 14:00:10 2020 rev:45 rq:826523 version:20.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/mbox-importer/mbox-importer.changes 2020-07-15 11:58:37.511732305 +0200 +++ /work/SRC/openSUSE:Factory/.mbox-importer.new.3399/mbox-importer.changes 2020-08-18 14:03:01.674313098 +0200 @@ -1,0 +2,25 @@ +Sun Aug 9 09:10:43 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 20.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/2020-08-apps-update +- No code change since 20.07.90 + +------------------------------------------------------------------- +Sun Aug 2 08:01:02 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 20.07.90 + * New feature release +- No code change since 20.07.80 + +------------------------------------------------------------------- +Sun Jul 19 10:06:08 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 20.07.80 + * New feature release +- Changes since 20.04.3: + * Fix includes. Use uppercase includes + * Fix includes + +------------------------------------------------------------------- Old: ---- mbox-importer-20.04.3.tar.xz mbox-importer-20.04.3.tar.xz.sig New: ---- mbox-importer-20.08.0.tar.xz mbox-importer-20.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mbox-importer.spec ++++++ --- /var/tmp/diff_new_pack.3r7tL8/_old 2020-08-18 14:03:06.114315086 +0200 +++ /var/tmp/diff_new_pack.3r7tL8/_new 2020-08-18 14:03:06.118315088 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: mbox-importer -Version: 20.04.3 +Version: 20.08.0 Release: 0 Summary: Tool for importing mbox archives into akonadi License: GPL-2.0-or-later AND LGPL-2.1-or-later ++++++ mbox-importer-20.04.3.tar.xz -> mbox-importer-20.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/.arcconfig new/mbox-importer-20.08.0/.arcconfig --- old/mbox-importer-20.04.3/.arcconfig 2020-06-18 08:31:05.000000000 +0200 +++ new/mbox-importer-20.08.0/.arcconfig 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -{ - "phabricator.uri": "https://phabricator.kde.org/project/profile/34/" -} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/.gitlab-ci.yml new/mbox-importer-20.08.0/.gitlab-ci.yml --- old/mbox-importer-20.04.3/.gitlab-ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/mbox-importer-20.08.0/.gitlab-ci.yml 2020-08-03 07:15:47.000000000 +0200 @@ -0,0 +1,30 @@ +include: + - https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-before.yml + - https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-applications-linux.yml + +build_clazy_clang_tidy: + stage: build + image: kdeorg/ci-suse-qt514 + extends: .linux + #only: + # - merge_requests + before_script: + - zypper install -y clazy + - git clone --depth=1 https://invent.kde.org/sysadmin/ci-tooling.git $CI_TOOLING + - git clone --depth=1 https://invent.kde.org/sysadmin/repo-metadata.git $CI_TOOLING/repo-metadata + - git clone --depth=1 https://invent.kde.org/sysadmin/kde-build-metadata.git $CI_TOOLING/kde-build-metadata + - git clone --depth=1 https://invent.kde.org/sdk/kde-dev-scripts.git $CI_TOOLING/kde-dev-scripts + + script: + - export CXX=clazy + - export CC=clang + - export CXXFLAGS="-Wno-deprecated-declarations" + - export CLAZY_HEADER_FILTER='^(?!ui_)\w+.h\$' + - export CLAZY_CHECKS="level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs" + - python3 -u $CI_TOOLING/helpers/prepare-dependencies.py --product $PRODUCT --project $PROJECT --branchGroup $BRANCH_GROUP --environment production --platform $PLATFORM --installTo $INSTALL_PREFIX + - python3 -u $CI_TOOLING/helpers/configure-build.py --product $PRODUCT --project $PROJECT --branchGroup $BRANCH_GROUP --platform $PLATFORM --installTo $INSTALL_PREFIX + - python3 -u $CI_TOOLING/helpers/compile-build.py --product $PRODUCT --project $PROJECT --branchGroup $BRANCH_GROUP --platform $PLATFORM --usingInstall $INSTALL_PREFIX + - cd build && run-clang-tidy + variables: + PLATFORM: SUSEQt5.14 + BRANCH_GROUP: kf5-qt5 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/CMakeLists.txt new/mbox-importer-20.08.0/CMakeLists.txt --- old/mbox-importer-20.04.3/CMakeLists.txt 2020-07-07 03:08:49.000000000 +0200 +++ new/mbox-importer-20.08.0/CMakeLists.txt 2020-08-07 09:09:25.000000000 +0200 @@ -1,8 +1,8 @@ -set(KDEPIM_VERSION_NUMBER "5.14.3") +set(PIM_VERSION "5.15.0") cmake_minimum_required(VERSION 3.5) -project(mbox-importer VERSION ${KDEPIM_VERSION_NUMBER}) +project(mbox-importer VERSION ${PIM_VERSION}) -set(KF5_MIN_VERSION "5.68.0") +set(KF5_MIN_VERSION "5.71.0") find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -27,25 +27,25 @@ # Do NOT add quote -set(KDEPIM_DEV_VERSION ) -set(RELEASE_SERVICE_VERSION "20.04.3") +set(KDEPIM_DEV_VERSION) +set(RELEASE_SERVICE_VERSION "20.08.0") # add an extra space if(DEFINED KDEPIM_DEV_VERSION) set(KDEPIM_DEV_VERSION " ${KDEPIM_DEV_VERSION}") endif() -set(KDEPIM_VERSION "${KDEPIM_VERSION_NUMBER}${KDEPIM_DEV_VERSION} (${RELEASE_SERVICE_VERSION})") +set(KDEPIM_VERSION "${PIM_VERSION}${KDEPIM_DEV_VERSION} (${RELEASE_SERVICE_VERSION})") -set(AKONADI_VERSION "5.14.3") +set(AKONADI_VERSION "5.15.0") -set(KDEPIM_LIB_VERSION "${KDEPIM_VERSION_NUMBER}") +set(KDEPIM_LIB_VERSION "${PIM_VERSION}") set(KDEPIM_LIB_SOVERSION "5") -set(QT_REQUIRED_VERSION "5.12.0") +set(QT_REQUIRED_VERSION "5.13.0") find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Gui Widgets) -set(LIBMAILIMPORTER_VERSION_LIB "5.14.3") -set(MAILCOMMON_LIB_VERSION_LIB "5.14.3") -set(PIMCOMMON_LIB_VERSION "5.14.3") +set(LIBMAILIMPORTER_VERSION_LIB "5.15.0") +set(MAILCOMMON_LIB_VERSION_LIB "5.15.0") +set(PIMCOMMON_LIB_VERSION "5.15.0") # Find KF5 package find_package(KF5Config ${KF5_MIN_VERSION} CONFIG REQUIRED) @@ -61,12 +61,13 @@ find_package(KF5PimCommonAkonadi ${PIMCOMMON_LIB_VERSION_LIB} CONFIG REQUIRED) include_directories(${mbox-importer_SOURCE_DIR} ${mbox-importer_BINARY_DIR}) -if (EXISTS "${CMAKE_SOURCE_DIR}/.git") - add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050e00) - add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054400) -endif() +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) +add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054800) add_definitions(-DQT_NO_FOREACH) +add_definitions(-DQT_NO_KEYWORDS) +set(CMAKE_CXX_STANDARD 14) +set(CMAKE_CXX_STANDARD_REQUIRED ON) add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/ca/mboximporter.po new/mbox-importer-20.08.0/po/ca/mboximporter.po --- old/mbox-importer-20.04.3/po/ca/mboximporter.po 2020-07-07 03:08:48.000000000 +0200 +++ new/mbox-importer-20.08.0/po/ca/mboximporter.po 2020-08-07 09:09:24.000000000 +0200 @@ -10,7 +10,7 @@ "Project-Id-Version: mboximporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2020-01-02 10:11+0100\n" +"PO-Revision-Date: 2020-07-29 11:03+0200\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca\n" @@ -19,7 +19,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -"X-Generator: Lokalize 20.03.70\n" +"X-Generator: Lokalize 20.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -34,12 +34,12 @@ #: main.cpp:41 #, kde-format msgid "MBox importer tool" -msgstr "Eina per importar MBox" +msgstr "Eina per a importar MBox" #: main.cpp:43 #, kde-format msgid "MBox Import Tool" -msgstr "Eina per importar MBox" +msgstr "Eina per a importar MBox" #: main.cpp:45 #, kde-format @@ -59,7 +59,7 @@ #: main.cpp:58 #, kde-format msgid "URL of mbox to be imported" -msgstr "URL de mbox a importar" +msgstr "URL del mbox a importar" #: mboxmainwindow.cpp:40 #, kde-format @@ -81,7 +81,7 @@ #: ui/mboximportwidget.ui:20 #, kde-format msgid "Please select the folder to import to:" -msgstr "Seleccioneu una carpeta per importar-hi:" +msgstr "Seleccioneu una carpeta per a importar-hi:" #. i18n: ectx: property (text), widget (QPushButton, importMails) #: ui/mboximportwidget.ui:48 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/ca@valencia/mboximporter.po new/mbox-importer-20.08.0/po/ca@valencia/mboximporter.po --- old/mbox-importer-20.04.3/po/ca@valencia/mboximporter.po 2020-07-07 03:08:48.000000000 +0200 +++ new/mbox-importer-20.08.0/po/ca@valencia/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -10,7 +10,7 @@ "Project-Id-Version: mboximporter\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2020-01-02 10:11+0100\n" +"PO-Revision-Date: 2020-07-29 11:03+0200\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca@valencia\n" @@ -19,7 +19,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -"X-Generator: Lokalize 20.03.70\n" +"X-Generator: Lokalize 20.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -34,12 +34,12 @@ #: main.cpp:41 #, kde-format msgid "MBox importer tool" -msgstr "Eina per importar MBox" +msgstr "Eina per a importar MBox" #: main.cpp:43 #, kde-format msgid "MBox Import Tool" -msgstr "Eina per importar MBox" +msgstr "Eina per a importar MBox" #: main.cpp:45 #, kde-format @@ -59,7 +59,7 @@ #: main.cpp:58 #, kde-format msgid "URL of mbox to be imported" -msgstr "URL de mbox a importar" +msgstr "URL del mbox a importar" #: mboxmainwindow.cpp:40 #, kde-format @@ -81,7 +81,7 @@ #: ui/mboximportwidget.ui:20 #, kde-format msgid "Please select the folder to import to:" -msgstr "Seleccioneu una carpeta per importar-hi:" +msgstr "Seleccioneu una carpeta per a importar-hi:" #. i18n: ectx: property (text), widget (QPushButton, importMails) #: ui/mboximportwidget.ui:48 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/da/mboximporter.po new/mbox-importer-20.08.0/po/da/mboximporter.po --- old/mbox-importer-20.04.3/po/da/mboximporter.po 2020-07-07 03:08:48.000000000 +0200 +++ new/mbox-importer-20.08.0/po/da/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Martin Schlander <[email protected]>, 2013, 2016. +# Martin Schlander <[email protected]>, 2013, 2016, 2020. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2016-08-07 15:08+0100\n" +"PO-Revision-Date: 2020-07-21 17:41+0200\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" "Language: da\n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 20.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -38,10 +38,9 @@ msgstr "Importværktøj til MBox" #: main.cpp:45 -#, fuzzy, kde-format -#| msgid "Copyright © 2013-2016 MBoxImporter authors" +#, kde-format msgid "Copyright © 2013-2020 MBoxImporter authors" -msgstr "Ophavsret © 2013-2016 MBoxImporter-udviklerne" +msgstr "Ophavsret © 2013-2020 MBoxImporter-udviklerne" #: main.cpp:46 #, kde-format @@ -59,8 +58,7 @@ msgstr "URL for mbox der skal importeres" #: mboxmainwindow.cpp:40 -#, fuzzy, kde-format -#| msgid "Import mbox file" +#, kde-format msgctxt "@title:window" msgid "Import mbox file" msgstr "Importér mbox-fil" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/el/mboximporter.po new/mbox-importer-20.08.0/po/el/mboximporter.po --- old/mbox-importer-20.04.3/po/el/mboximporter.po 1970-01-01 01:00:00.000000000 +0100 +++ new/mbox-importer-20.08.0/po/el/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -0,0 +1,86 @@ +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the mbox-importer package. +# +# Stelios <[email protected]>, 2020. +msgid "" +msgstr "" +"Project-Id-Version: mbox-importer\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2020-01-02 03:18+0100\n" +"PO-Revision-Date: 2020-08-05 10:33+0300\n" +"Last-Translator: Stelios <[email protected]>\n" +"Language-Team: Greek <[email protected]>\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 20.04.2\n" + +#, kde-format +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Stelios" + +#, kde-format +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "[email protected]" + +#: main.cpp:41 +#, kde-format +msgid "MBox importer tool" +msgstr "Εργαλείο εισαγωγής εισερχομένων" + +#: main.cpp:43 +#, kde-format +msgid "MBox Import Tool" +msgstr "Εργαλείο εισαγωγής εισερχομένων" + +#: main.cpp:45 +#, kde-format +msgid "Copyright © 2013-2020 MBoxImporter authors" +msgstr "Copyright © 2013-2020 Οι συγγραφείς του MBoxImporter" + +#: main.cpp:46 +#, kde-format +msgid "Laurent Montel" +msgstr "Laurent Montel" + +#: main.cpp:46 +#, kde-format +msgid "Maintainer" +msgstr "Συντηρητής" + +#: main.cpp:58 +#, kde-format +msgid "URL of mbox to be imported" +msgstr "Το URL των προς εισαγωγή εισερχομένων" + +#: mboxmainwindow.cpp:40 +#, kde-format +msgctxt "@title:window" +msgid "Import mbox file" +msgstr "Εισαγωγή αρχείου εισερχομένων" + +#: mboxmainwindow.cpp:73 +#, kde-format +msgid "Import in progress" +msgstr "Εισαγωγή σε εξέλιξη" + +#: mboxmainwindow.cpp:79 +#, kde-format +msgid "Import finished" +msgstr "Η εισαγωγή ολοκληρώθηκε" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: ui/mboximportwidget.ui:20 +#, kde-format +msgid "Please select the folder to import to:" +msgstr "Επιλέξτε το φάκελο για την εισαγωγή:" + +#. i18n: ectx: property (text), widget (QPushButton, importMails) +#: ui/mboximportwidget.ui:48 +#, kde-format +msgid "Import Mails" +msgstr "Εισαγωγή μηνυμάτων αλληλογραφίας" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/en_GB/mboximporter.po new/mbox-importer-20.08.0/po/en_GB/mboximporter.po --- old/mbox-importer-20.04.3/po/en_GB/mboximporter.po 2020-07-07 03:08:49.000000000 +0200 +++ new/mbox-importer-20.08.0/po/en_GB/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2020-03-31 12:32+0100\n" +"PO-Revision-Date: 2020-03-31 12:10+0100\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" "Language: en_GB\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/fi/mboximporter.po new/mbox-importer-20.08.0/po/fi/mboximporter.po --- old/mbox-importer-20.04.3/po/fi/mboximporter.po 2020-07-07 03:08:49.000000000 +0200 +++ new/mbox-importer-20.08.0/po/fi/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2020-01-01 13:25+0200\n" +"PO-Revision-Date: 2020-07-21 19:54+0300\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" "Language: fi\n" @@ -16,7 +16,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 18.12.3\n" +"X-Generator: Lokalize 20.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -39,10 +39,9 @@ msgstr "MBox-tuontityökalu" #: main.cpp:45 -#, fuzzy, kde-format -#| msgid "Copyright © 2013-2019 MBoxImporter authors" +#, kde-format msgid "Copyright © 2013-2020 MBoxImporter authors" -msgstr "Tekijänoikeudet © 2013–2019 MBoxImporterin tekijät" +msgstr "Tekijänoikeudet © 2013–2020 MBoxImporterin tekijät" #: main.cpp:46 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/sl/mboximporter.po new/mbox-importer-20.08.0/po/sl/mboximporter.po --- old/mbox-importer-20.04.3/po/sl/mboximporter.po 2020-07-07 03:08:49.000000000 +0200 +++ new/mbox-importer-20.08.0/po/sl/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -2,31 +2,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Andrej Mernik <[email protected]>, 2014, 2015, 2016, 2017, 2018. +# Matjaž Jeran <[email protected]>, 2019, 2020. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2018-01-18 18:00+0100\n" -"Last-Translator: Andrej Mernik <[email protected]>\n" +"PO-Revision-Date: 2020-06-04 10:03+0200\n" +"Last-Translator: Matjaž Jeran <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Translator: Andrej Mernik <[email protected]>\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.12.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Andrej Mernik" +msgstr "Andrej Mernik,Matjaž Jeran" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "[email protected]" +msgstr "[email protected],[email protected]" #: main.cpp:41 #, kde-format @@ -39,10 +41,9 @@ msgstr "Orodje za uvažanje MBox" #: main.cpp:45 -#, fuzzy, kde-format -#| msgid "Copyright © 2013-2018 MBoxImporter authors" +#, kde-format msgid "Copyright © 2013-2020 MBoxImporter authors" -msgstr "Avtorske pravice © 2013-2018 avtorji MBoxImporter-ja" +msgstr "Copyright © 2013-2019 avtorji MBoxImporter-ja" #: main.cpp:46 #, kde-format @@ -60,8 +61,7 @@ msgstr "URL datoteke mbox, ki bo uvožena" #: mboxmainwindow.cpp:40 -#, fuzzy, kde-format -#| msgid "Import mbox file" +#, kde-format msgctxt "@title:window" msgid "Import mbox file" msgstr "Uvozi datoteko mbox" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/po/zh_CN/mboximporter.po new/mbox-importer-20.08.0/po/zh_CN/mboximporter.po --- old/mbox-importer-20.04.3/po/zh_CN/mboximporter.po 2020-07-07 03:08:49.000000000 +0200 +++ new/mbox-importer-20.08.0/po/zh_CN/mboximporter.po 2020-08-07 09:09:25.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-01-02 03:18+0100\n" -"PO-Revision-Date: 2020-06-24 08:02\n" +"PO-Revision-Date: 2020-07-31 15:03\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/src/mboximporterinfogui.cpp new/mbox-importer-20.08.0/src/mboximporterinfogui.cpp --- old/mbox-importer-20.04.3/src/mboximporterinfogui.cpp 2020-06-18 08:31:05.000000000 +0200 +++ new/mbox-importer-20.08.0/src/mboximporterinfogui.cpp 2020-08-03 07:15:47.000000000 +0200 @@ -20,7 +20,7 @@ #include "mboximporterinfogui.h" #include "mboximportwidget.h" -#include "mailimporter/importmailswidget.h" +#include <MailImporter/ImportMailsWidget> #include <KMessageBox> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mbox-importer-20.04.3/src/mboxmainwindow.cpp new/mbox-importer-20.08.0/src/mboxmainwindow.cpp --- old/mbox-importer-20.04.3/src/mboxmainwindow.cpp 2020-06-18 08:31:05.000000000 +0200 +++ new/mbox-importer-20.08.0/src/mboxmainwindow.cpp 2020-08-03 07:15:47.000000000 +0200 @@ -22,8 +22,8 @@ #include "mboximportkernel.h" #include "mboximporterinfogui.h" -#include <mailimporter/filtermbox.h> -#include <mailimporter/importmailswidget.h> +#include <MailImporter/FilterMBox> +#include <MailImporter/ImportMailsWidget> #include <MailImporterAkonadi/FilterImporterAkonadi> #include <MailCommon/MailKernel>
