diff -Nru libkcddb-17.04.3/debian/changelog libkcddb-17.08.3/debian/changelog --- libkcddb-17.04.3/debian/changelog 2017-08-18 07:30:03.000000000 +0000 +++ libkcddb-17.08.3/debian/changelog 2017-12-01 15:11:50.000000000 +0000 @@ -1,3 +1,10 @@ +libkcddb (4:17.08.3-0ubuntu1) bionic; urgency=medium + + * Package priority 'extra' is depreciated in favour of 'optional' + * New upstream release (17.08.3) + + -- Rik Mills Fri, 01 Dec 2017 15:11:50 +0000 + libkcddb (4:17.04.3-0ubuntu1) artful; urgency=low * New upstream release (17.04.1) diff -Nru libkcddb-17.04.3/debian/control libkcddb-17.08.3/debian/control --- libkcddb-17.04.3/debian/control 2017-08-18 07:30:03.000000000 +0000 +++ libkcddb-17.08.3/debian/control 2017-12-01 15:11:50.000000000 +0000 @@ -82,7 +82,7 @@ Package: libkcddb-dbg Section: debug Architecture: any -Priority: extra +Priority: optional Depends: libkf5cddb5 (= ${binary:Version}), ${misc:Depends} Breaks: kdemultimedia-dbg Replaces: kdemultimedia-dbg diff -Nru libkcddb-17.04.3/kcmcddb/kcmcddb.h libkcddb-17.08.3/kcmcddb/kcmcddb.h --- libkcddb-17.04.3/kcmcddb/kcmcddb.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/kcmcddb/kcmcddb.h 2017-06-02 05:31:07.000000000 +0000 @@ -36,9 +36,9 @@ public Q_SLOTS: - void defaults(); - void save(); - void load(); + void defaults() Q_DECL_OVERRIDE; + void save() Q_DECL_OVERRIDE; + void load() Q_DECL_OVERRIDE; protected: diff -Nru libkcddb-17.04.3/libkcddb/asynccddbplookup.h libkcddb-17.08.3/libkcddb/asynccddbplookup.h --- libkcddb-17.04.3/libkcddb/asynccddbplookup.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/asynccddbplookup.h 2017-06-02 05:31:07.000000000 +0000 @@ -49,7 +49,7 @@ virtual ~AsyncCDDBPLookup(); - Result lookup( const QString &, uint, const TrackOffsetList & ); + Result lookup( const QString &, uint, const TrackOffsetList & ) Q_DECL_OVERRIDE; Q_SIGNALS: diff -Nru libkcddb-17.04.3/libkcddb/asynchttplookup.h libkcddb-17.08.3/libkcddb/asynchttplookup.h --- libkcddb-17.04.3/libkcddb/asynchttplookup.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/asynchttplookup.h 2017-06-02 05:31:07.000000000 +0000 @@ -37,7 +37,7 @@ AsyncHTTPLookup(); virtual ~AsyncHTTPLookup(); - Result lookup( const QString &, uint, const TrackOffsetList & ); + Result lookup( const QString &, uint, const TrackOffsetList & ) Q_DECL_OVERRIDE; CDInfoList lookupResponse() const; @@ -53,7 +53,7 @@ void slotResult( KJob * ); protected: - virtual Result fetchURL(); + Result fetchURL() Q_DECL_OVERRIDE; Result runQuery(); }; diff -Nru libkcddb-17.04.3/libkcddb/asynchttpsubmit.h libkcddb-17.08.3/libkcddb/asynchttpsubmit.h --- libkcddb-17.04.3/libkcddb/asynchttpsubmit.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/asynchttpsubmit.h 2017-06-02 05:31:07.000000000 +0000 @@ -35,7 +35,7 @@ Q_SIGNALS: void finished( KCDDB::Result ); protected: - virtual Result runJob(KIO::Job* job); + Result runJob(KIO::Job* job) Q_DECL_OVERRIDE; private Q_SLOTS: void slotFinished(KJob*); } ; diff -Nru libkcddb-17.04.3/libkcddb/asyncsmtpsubmit.h libkcddb-17.08.3/libkcddb/asyncsmtpsubmit.h --- libkcddb-17.04.3/libkcddb/asyncsmtpsubmit.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/asyncsmtpsubmit.h 2017-06-02 05:31:07.000000000 +0000 @@ -43,7 +43,7 @@ protected Q_SLOTS: void slotDone( KJob * ); protected: - virtual Result runJob(KIO::Job* job); + Result runJob(KIO::Job* job) Q_DECL_OVERRIDE; } ; } diff -Nru libkcddb-17.04.3/libkcddb/httpsubmit.h libkcddb-17.08.3/libkcddb/httpsubmit.h --- libkcddb-17.04.3/libkcddb/httpsubmit.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/httpsubmit.h 2017-06-02 05:31:07.000000000 +0000 @@ -31,7 +31,7 @@ virtual ~HTTPSubmit(); protected: - virtual KIO::Job* createJob(const CDInfo& cdInfo); + KIO::Job* createJob(const CDInfo& cdInfo) Q_DECL_OVERRIDE; QUrl url_; QString from_; diff -Nru libkcddb-17.04.3/libkcddb/smtpsubmit.h libkcddb-17.08.3/libkcddb/smtpsubmit.h --- libkcddb-17.04.3/libkcddb/smtpsubmit.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/smtpsubmit.h 2017-06-02 05:31:07.000000000 +0000 @@ -31,9 +31,9 @@ virtual ~SMTPSubmit(); protected: - virtual void makeDiskData( const CDInfo&, const TrackOffsetList& ); + void makeDiskData( const CDInfo&, const TrackOffsetList& ) Q_DECL_OVERRIDE; - virtual KIO::Job* createJob(const CDInfo& cdInfo); + KIO::Job* createJob(const CDInfo& cdInfo) Q_DECL_OVERRIDE; QUrl url_; QString from_, to_; diff -Nru libkcddb-17.04.3/libkcddb/synccddbplookup.h libkcddb-17.08.3/libkcddb/synccddbplookup.h --- libkcddb-17.04.3/libkcddb/synccddbplookup.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/synccddbplookup.h 2017-06-02 05:31:07.000000000 +0000 @@ -33,7 +33,7 @@ SyncCDDBPLookup(); virtual ~SyncCDDBPLookup(); - Result lookup( const QString &, uint, const TrackOffsetList & ); + Result lookup( const QString &, uint, const TrackOffsetList & ) Q_DECL_OVERRIDE; CDInfoList lookupResponse() const; diff -Nru libkcddb-17.04.3/libkcddb/synchttplookup.h libkcddb-17.08.3/libkcddb/synchttplookup.h --- libkcddb-17.04.3/libkcddb/synchttplookup.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/synchttplookup.h 2017-06-02 05:31:07.000000000 +0000 @@ -32,13 +32,13 @@ SyncHTTPLookup(); virtual ~SyncHTTPLookup(); - Result lookup( const QString &, uint, const TrackOffsetList & ); + Result lookup( const QString &, uint, const TrackOffsetList & ) Q_DECL_OVERRIDE; CDInfoList lookupResponse() const; protected: - virtual Result fetchURL(); + Result fetchURL() Q_DECL_OVERRIDE; Result runQuery(); Result matchToCDInfo( const CDDBMatch & ); diff -Nru libkcddb-17.04.3/libkcddb/synchttpsubmit.h libkcddb-17.08.3/libkcddb/synchttpsubmit.h --- libkcddb-17.04.3/libkcddb/synchttpsubmit.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/synchttpsubmit.h 2017-06-02 05:31:07.000000000 +0000 @@ -30,7 +30,7 @@ virtual ~SyncHTTPSubmit(); protected: - virtual Result runJob(KIO::Job* job); + Result runJob(KIO::Job* job) Q_DECL_OVERRIDE; } ; } diff -Nru libkcddb-17.04.3/libkcddb/syncsmtpsubmit.h libkcddb-17.08.3/libkcddb/syncsmtpsubmit.h --- libkcddb-17.04.3/libkcddb/syncsmtpsubmit.h 2017-02-22 17:02:04.000000000 +0000 +++ libkcddb-17.08.3/libkcddb/syncsmtpsubmit.h 2017-06-02 05:31:07.000000000 +0000 @@ -30,7 +30,7 @@ const QString& from, const QString& to); virtual ~SyncSMTPSubmit(); protected: - virtual Result runJob(KIO::Job* job); + Result runJob(KIO::Job* job) Q_DECL_OVERRIDE; } ; } diff -Nru libkcddb-17.04.3/po/bg/kcmcddb.po libkcddb-17.08.3/po/bg/kcmcddb.po --- libkcddb-17.04.3/po/bg/kcmcddb.po 2017-07-11 00:21:04.000000000 +0000 +++ libkcddb-17.08.3/po/bg/kcmcddb.po 2017-11-07 01:18:44.000000000 +0000 @@ -1,8 +1,5 @@ -# translation of kcmcddb.po to Bulgarian -# Bulgarian translation of KDE. -# This file is licensed under the GPL. -# -# $Id: kcmcddb.po 1475095 2016-11-19 20:01:24Z scripty $ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. # # Zlatko Popov , 2006, 2008. # Yasen Pramatarov , 2009. diff -Nru libkcddb-17.04.3/po/bg/libkcddb.po libkcddb-17.08.3/po/bg/libkcddb.po --- libkcddb-17.04.3/po/bg/libkcddb.po 2017-07-11 00:21:04.000000000 +0000 +++ libkcddb-17.08.3/po/bg/libkcddb.po 2017-11-07 01:18:44.000000000 +0000 @@ -1,8 +1,5 @@ -# translation of libkcddb.po to Bulgarian -# Bulgarian translation of KDE. -# This file is licensed under the GPL. -# -# $Id: libkcddb.po 1475312 2016-11-21 03:04:28Z scripty $ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. # # Zlatko Popov , 2007, 2008, 2012. # Yasen Pramatarov , 2012. diff -Nru libkcddb-17.04.3/po/he/libkcddb.po libkcddb-17.08.3/po/he/libkcddb.po --- libkcddb-17.04.3/po/he/libkcddb.po 2017-07-11 00:21:04.000000000 +0000 +++ libkcddb-17.08.3/po/he/libkcddb.po 2017-11-07 01:18:45.000000000 +0000 @@ -1171,7 +1171,3 @@ #, kde-format msgid "%1 (disc %2)" msgstr "" - -#, fuzzy -#~ msgid "Cancel" -#~ msgstr "דאנס" diff -Nru libkcddb-17.04.3/po/pt/docs/kcontrol/cddbretrieval5/index.docbook libkcddb-17.08.3/po/pt/docs/kcontrol/cddbretrieval5/index.docbook --- libkcddb-17.04.3/po/pt/docs/kcontrol/cddbretrieval5/index.docbook 2017-07-11 00:21:05.000000000 +0000 +++ libkcddb-17.08.3/po/pt/docs/kcontrol/cddbretrieval5/index.docbook 2017-11-07 01:18:46.000000000 +0000 @@ -142,9 +142,9 @@ 2010-02-19 +>2013-12-05 &kde; 4.4 +>&kde; 4.12 @@ -162,9 +162,7 @@ A página para <guilabel ->Procurar</guilabel -> +>A Página de Pesquisa A página A Página <guilabel ->Enviar</guilabel -> +>A Página de Envio , 2003, 2004, 2005. # Jure Repinc , 2005, 2006, 2007, 2012. -# Andrej Mernik , 2013, 2014, 2016. +# Andrej Mernik , 2013, 2014, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: libkcddb\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-21 03:04+0100\n" -"PO-Revision-Date: 2016-08-17 19:51+0200\n" +"PO-Revision-Date: 2017-07-22 09:00+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" "Language: sl\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 2.0\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" @@ -1147,7 +1147,7 @@ #: libkcddb/kcddb.cpp:44 #, kde-format msgid "No response" -msgstr "Ni odziva" +msgstr "Ni odgovora" #: libkcddb/kcddb.cpp:48 #, kde-format diff -Nru libkcddb-17.04.3/po/tr/kcmcddb.po libkcddb-17.08.3/po/tr/kcmcddb.po --- libkcddb-17.04.3/po/tr/kcmcddb.po 2017-07-11 00:21:05.000000000 +0000 +++ libkcddb-17.08.3/po/tr/kcmcddb.po 2017-11-07 01:18:46.000000000 +0000 @@ -20,8 +20,8 @@ "POT-Creation-Date: 2016-11-19 20:16+0100\n" "PO-Revision-Date: 2014-06-08 13:56+0000\n" "Last-Translator: Volkan Gezer \n" -"Language-Team: Turkish " -"(http://www.transifex.com/projects/p/kdemultimedia-k-tr/language/tr/)\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/kdemultimedia-k-" +"tr/language/tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -Nru libkcddb-17.04.3/po/tr/libkcddb.po libkcddb-17.08.3/po/tr/libkcddb.po --- libkcddb-17.04.3/po/tr/libkcddb.po 2017-07-11 00:21:05.000000000 +0000 +++ libkcddb-17.08.3/po/tr/libkcddb.po 2017-11-07 01:18:46.000000000 +0000 @@ -15,8 +15,8 @@ "POT-Creation-Date: 2016-11-21 03:04+0100\n" "PO-Revision-Date: 2014-06-08 13:56+0000\n" "Last-Translator: Volkan Gezer \n" -"Language-Team: Turkish " -"(http://www.transifex.com/projects/p/kdemultimedia-k-tr/language/tr/)\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/kdemultimedia-k-" +"tr/language/tr/)\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -331,8 +331,8 @@ "Write names as \"first last\", not \"last, first\". Omit any leading \"The" "\". Use \"Various\" for compilations." msgstr "" -"İsimleri \"Soyadı, Adı\" yerine \"Adı Soyadı\" şeklinde yazın. En başa\"The\"" -". koymaktan kaçının. Derlemeler için \"Çeşitli\"'yi kullanın." +"İsimleri \"Soyadı, Adı\" yerine \"Adı Soyadı\" şeklinde yazın. En başa\"The" +"\". koymaktan kaçının. Derlemeler için \"Çeşitli\"'yi kullanın." #. i18n: ectx: property (text), widget (QLabel, lb_artist) #: libkcddb/cdinfodialog.ui:72 diff -Nru libkcddb-17.04.3/po/zh_CN/kcmcddb.po libkcddb-17.08.3/po/zh_CN/kcmcddb.po --- libkcddb-17.04.3/po/zh_CN/kcmcddb.po 2017-07-11 00:21:05.000000000 +0000 +++ libkcddb-17.08.3/po/zh_CN/kcmcddb.po 2017-11-07 01:18:46.000000000 +0000 @@ -5,17 +5,21 @@ # Ni Hui , 2009, 2011. msgid "" msgstr "" -"Project-Id-Version: kcmcddb\n" +"Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:16+0100\n" -"PO-Revision-Date: 2011-03-06 16:16+0000\n" -"Last-Translator: Ni Hui \n" -"Language-Team: 简体中文 \n" +"PO-Revision-Date: 2017-10-19 10:49-0400\n" +"Last-Translator: guoyunhebrave \n" +"Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-stable/messages/kdemultimedia/kcmcddb.pot\n" #: cddbconfigwidget.cpp:52 #, kde-format diff -Nru libkcddb-17.04.3/po/zh_CN/libkcddb.po libkcddb-17.08.3/po/zh_CN/libkcddb.po --- libkcddb-17.04.3/po/zh_CN/libkcddb.po 2017-07-11 00:21:05.000000000 +0000 +++ libkcddb-17.08.3/po/zh_CN/libkcddb.po 2017-11-07 01:18:46.000000000 +0000 @@ -7,18 +7,21 @@ # Guo Yunhe , 2017. msgid "" msgstr "" -"Project-Id-Version: libkcddb\n" +"Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-21 03:04+0100\n" -"PO-Revision-Date: 2017-01-20 10:14+0200\n" -"Last-Translator: Guo Yunhe \n" -"Language-Team: Chinese \n" +"PO-Revision-Date: 2017-10-19 10:49-0400\n" +"Last-Translator: guoyunhebrave \n" +"Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-stable/messages/kdemultimedia/libkcddb.pot\n" #: kcmcddb/cddbconfigwidget.cpp:52 #, kde-format @@ -1174,8 +1177,3 @@ #, kde-format msgid "%1 (disc %2)" msgstr "%1 (盘片 %2)" - -#, fuzzy -#~| msgid "Dance" -#~ msgid "Cancel" -#~ msgstr "舞曲"