Hello community, here is the log from the commit of package klines for openSUSE:Factory checked in at 2019-08-16 15:46:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/klines (Old) and /work/SRC/openSUSE:Factory/.klines.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "klines" Fri Aug 16 15:46:18 2019 rev:88 rq:723669 version:19.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/klines/klines.changes 2019-07-17 13:17:36.067736791 +0200 +++ /work/SRC/openSUSE:Factory/.klines.new.22127/klines.changes 2019-08-16 15:46:23.741685831 +0200 @@ -1,0 +2,34 @@ +Fri Aug 9 08:31:12 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:49 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 +- Changes since 19.07.80: + * No code changes since 19.07.80 + +------------------------------------------------------------------- +Tue Jul 23 11:59:01 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: + * Remove unused includes + * It was fixed + * Time to increase Qt version as we use override but qt5.7 doesn't support it and we use 5.7 from long time + * Fix some clazy warning + * It builds without deprecated methods + * Use strict compile flags here + +------------------------------------------------------------------- Old: ---- klines-19.04.3.tar.xz New: ---- applications.keyring klines-19.08.0.tar.xz klines-19.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ klines.spec ++++++ --- /var/tmp/diff_new_pack.kubA03/_old 2019-08-16 15:46:24.289685630 +0200 +++ /var/tmp/diff_new_pack.kubA03/_new 2019-08-16 15:46:24.293685628 +0200 @@ -21,13 +21,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: klines -Version: 19.04.3 +Version: 19.08.0 Release: 0 Summary: Tactical game License: GPL-2.0-or-later Group: Amusements/Games/Board/Puzzle -URL: http://www.kde.org -Source0: klines-%{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: extra-cmake-modules BuildRequires: kcompletion-devel BuildRequires: kconfig-devel ++++++ klines-19.04.3.tar.xz -> klines-19.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/CMakeLists.txt new/klines-19.08.0/CMakeLists.txt --- old/klines-19.04.3/CMakeLists.txt 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/CMakeLists.txt 2019-08-09 02:28:47.000000000 +0200 @@ -1,8 +1,8 @@ project(klines) -cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR) -set (QT_MIN_VERSION "5.7.0") -set (KF5_MIN_VERSION "5.30.0") +cmake_minimum_required (VERSION 3.5 FATAL_ERROR) +set (QT_MIN_VERSION "5.9.0") +set (KF5_MIN_VERSION "5.46.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -27,18 +27,9 @@ include(ECMAddAppIcon) include(ECMInstallIcons) include(KDEInstallDirs) -include(KDECompilerSettings NO_POLICY_SCOPE) +include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) - -add_definitions( - -DQT_USE_FAST_CONCATENATION - -DQT_USE_FAST_OPERATOR_PLUS - -DQT_NO_CAST_FROM_ASCII - -DQT_NO_CAST_TO_ASCII - -DQT_NO_CAST_FROM_BYTEARRAY - -DQT_NO_URL_CAST_FROM_STRING - -DQT_USE_QSTRINGBUILDER -) +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) add_subdirectory(themes) add_subdirectory(doc) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/animator.cpp new/klines-19.08.0/animator.cpp --- old/klines-19.04.3/animator.cpp 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/animator.cpp 2019-08-04 08:45:19.000000000 +0200 @@ -35,7 +35,7 @@ int G; float H; float F; - PathNode( const FieldPos& fpos, PathNode* p = 0, int g=0, int h=0 ) + PathNode( const FieldPos& fpos, PathNode* p = nullptr, int g=0, int h=0 ) : pos(fpos), parent(p), G(g), H(h), F(g+h) { } }; @@ -53,7 +53,7 @@ } KLinesAnimator::KLinesAnimator( KLinesScene* scene ) - : m_scene(scene), m_movingBall(0) + : m_scene(scene), m_movingBall(nullptr) { // timing & framing setup is done in corresponding animate* functions @@ -199,7 +199,7 @@ openList.append( new PathNode(from) ); - PathNode *curNode=0; + PathNode *curNode=nullptr; bool pathFound = false; // see exit conditions at the end of while loop below while(true) @@ -227,7 +227,7 @@ foreach( const FieldPos &pos, adjacentSquares ) { - if( m_scene->ballAt(pos) != 0 ) // skip non-walkable cells + if( m_scene->ballAt(pos) != nullptr ) // skip non-walkable cells continue; // skip if closed list contains this square @@ -300,7 +300,7 @@ blockSignals(true); QList<BallItem*> balls; QList<QGraphicsItem*> items = m_scene->items(); - BallItem *ball=0; + BallItem *ball=nullptr; foreach( QGraphicsItem* item, items ) { ball = qgraphicsitem_cast<BallItem*>(item); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/animator.h new/klines-19.08.0/animator.h --- old/klines-19.04.3/animator.h 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/animator.h 2019-08-04 08:45:19.000000000 +0200 @@ -74,11 +74,11 @@ * TODO: does nothing useful yet */ void stopGameOverAnimation(); -signals: +Q_SIGNALS: void moveFinished(); void removeFinished(); void bornFinished(); -private slots: +private Q_SLOTS: void moveAnimationFrame(int); void removeAnimationFrame(int); void bornAnimationFrame(int); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/ballitem.cpp new/klines-19.08.0/ballitem.cpp --- old/klines-19.04.3/ballitem.cpp 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/ballitem.cpp 2019-08-04 08:45:19.000000000 +0200 @@ -24,10 +24,9 @@ #include "renderer.h" #include <QGraphicsScene> -#include <KGameRenderer> BallItem::BallItem( QGraphicsScene* parent ) - : KGameRenderedItem(KLinesRenderer::renderer() , QString(), NULL) + : KGameRenderedItem(KLinesRenderer::renderer() , QString(), nullptr) { parent->addItem(this); setShapeMode( BoundingRectShape ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/ballitem.h new/klines-19.08.0/ballitem.h --- old/klines-19.04.3/ballitem.h 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/ballitem.h 2019-08-04 08:45:19.000000000 +0200 @@ -59,7 +59,7 @@ // enable use of qgraphicsitem_cast enum { Type = UserType + 1 }; int type() const Q_DECL_OVERRIDE { return Type; } -private slots: +private Q_SLOTS: void animFrameChanged(int); private: /** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/mwidget.cpp new/klines-19.08.0/mwidget.cpp --- old/klines-19.04.3/mwidget.cpp 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/mwidget.cpp 2019-08-04 08:45:19.000000000 +0200 @@ -30,7 +30,7 @@ , m_next_label( nullptr ) { QBoxLayout *mainLay = new QHBoxLayout( this ); - mainLay->setMargin( 0 ); + mainLay->setContentsMargins( 0 , 0 , 0 , 0 ); m_scene = new KLinesScene(this); QGraphicsView* klview = new QGraphicsView( m_scene, this ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/mwidget.h new/klines-19.08.0/mwidget.h --- old/klines-19.04.3/mwidget.h 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/mwidget.h 2019-08-04 08:45:19.000000000 +0200 @@ -33,7 +33,7 @@ ~MainWidget(); KLinesScene* scene() { return m_scene; } -public slots: +public Q_SLOTS: void setShowNextColors(bool); private: void resizeEvent( QResizeEvent* ) Q_DECL_OVERRIDE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/org.kde.klines.appdata.xml new/klines-19.08.0/org.kde.klines.appdata.xml --- old/klines-19.04.3/org.kde.klines.appdata.xml 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/org.kde.klines.appdata.xml 2019-08-04 08:45:19.000000000 +0200 @@ -73,6 +73,7 @@ <p xml:lang="pl">KLinie jest prostą, lecz wysoce uzależniającą grą pojedycznego gracza.</p> <p xml:lang="pt">O KLines é um jogo simples, mas bastante viciante, para um único jogador.</p> <p xml:lang="pt-BR">KLines é um jogo simples, mas muito viciante, para um único jogador.</p> + <p xml:lang="sk">KLines je jednoduchá, ale vysoko návyková hra pre jedného hráča.</p> <p xml:lang="sl">KLines je preprosta, a zasvojljiva enoigralska igra.</p> <p xml:lang="sv">Färglinjer är ett enkelt men mycket vanebildande spel för en spelare.</p> <p xml:lang="uk">KLines — проста, але дуже захоплива гра для одного гравця.</p> @@ -97,6 +98,7 @@ <p xml:lang="pl">Gracz musi przemieszczać kolorowe kulki na polu gry, zgrupowując je w linie tej samej barwy w liczbie pięciu. W chwili ukończenia linii, są one usuwane z planszy, zwalniając przy tym cenne miejsce. W tym samym czasie na pole gry dochodzą trzy nowe kulki.</p> <p xml:lang="pt">O jogador tem de mover as bolas coloridas pelo tabuleiro do jogo, recolhendo-as para as linhas da mesma cor em grupos de cinco. Assim que a linha estiver completa, é removida do tabuleiro, libertando assim espaço precioso. Ao mesmo tempo, começam a chegar bolas novas em grupos de três ao fim de cada jogada, preenchendo o tabuleiro do jogo.</p> <p xml:lang="pt-BR">O jogador terá de mover as bolas coloridas pela área de jogo, recolhendo-as das linhas da mesma cor em grupos de cinco. Logo que a linha esteja completa, é removida da área de jogo, liberando assim o espaço anterior. Ao mesmo tempo, as bolas novas continuam a chegar em grupos de três após cada jogada, alimentando a área de jogo.</p> + <p xml:lang="sk">Hráč musí posúvať farebné gule okolo hracieho plánu a zbierať ich do riadkov rovnakej farby po piatich. Akonáhle je linka kompletná, je odstránená z hracej plochy, čím sa uvoľní vzácny priestor. V rovnakom čase nové lopty stále prichádzajú o tri po každom ťahu, čím zaplnia hraciu dosku.</p> <p xml:lang="sl">Igralec mora po igralni površini premikati barvne žogice in jih postavljati v enakobarvne vrste po pet ali več žogic. Ko je vrstica dopolnjena, je odstranjena iz igralne površine, pri tem pa se sprosti dragocen prostor. Sočasno s premikanjem se na površini pojavljajo po tri nove žogice naenkrat, ki polnijo prazen prostor na igralni površini.</p> <p xml:lang="sv">Spelaren ska flytta omkring de färgade bollarna på spelbrädet, och samla fem av samma färg i en linje. När en linje är färdig tas den bort från brädet, och frigör därför dyrbart utrymme. På samma gång anländer tre nya bollar åt gången efter varje drag, och fyller upp spelbrädet.</p> <p xml:lang="uk">Гравцеві слід пересувати кольорові кульки ігровою дошкою, збираючи їх по п’ять у рядки однакового кольору. Після утворення такого рядка всі кульки з нього буде вилучено і таким чином на дошці звільниться місце. Також після кожного ходу на дошці з’являтимуться три нових кульки, які зменшуватимуть вільне місце на ній.</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/org.kde.klines.desktop new/klines-19.08.0/org.kde.klines.desktop --- old/klines-19.04.3/org.kde.klines.desktop 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/org.kde.klines.desktop 2019-08-04 08:45:19.000000000 +0200 @@ -161,6 +161,7 @@ Comment[pt]=Jogo táctico Comment[pt_BR]=Jogo tático Comment[ru]=Тактическая игра +Comment[sk]=Taktická hra Comment[sl]=Strateška igra Comment[sr]=Тактичка игра Comment[sr@ijekavian]=Тактичка игра diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/ar/klines.po new/klines-19.08.0/po/ar/klines.po --- old/klines-19.04.3/po/ar/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/ar/klines.po 2019-08-09 02:28:43.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2007-10-14 15:44+0000\n" "Last-Translator: Youssef Chahibi <[email protected]>\n" "Language-Team: <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/bg/klines.po new/klines-19.08.0/po/bg/klines.po --- old/klines-19.04.3/po/bg/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/bg/klines.po 2019-08-09 02:28:43.000000000 +0200 @@ -2,7 +2,7 @@ # Bulgarian translation of KDE. # This file is licensed under the GPL. # -# $Id: klines.po 1542253 2019-05-20 06:55:29Z scripty $ +# $Id: klines.po 1542151 2019-05-20 02:16:01Z scripty $ # # Zlatko Popov <[email protected]>, 2006, 2007. # Petar Toushkov <[email protected]>, 2009. @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-04-23 22:20+0200\n" "Last-Translator: Petar Toushkov <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/bs/klines.po new/klines-19.08.0/po/bs/klines.po --- old/klines-19.04.3/po/bs/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/bs/klines.po 2019-08-09 02:28:43.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2013-10-18 20:26+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/klines-19.04.3/po/ca/klines.po new/klines-19.08.0/po/ca/klines.po --- old/klines-19.04.3/po/ca/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/ca/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-04-26 00:11+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/klines-19.04.3/po/ca@valencia/klines.po new/klines-19.08.0/po/ca@valencia/klines.po --- old/klines-19.04.3/po/ca@valencia/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/ca@valencia/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-04-26 00:11+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/klines-19.04.3/po/cs/klines.po new/klines-19.08.0/po/cs/klines.po --- old/klines-19.04.3/po/cs/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/cs/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2015-02-13 09:59+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/klines-19.04.3/po/da/klines.po new/klines-19.08.0/po/da/klines.po --- old/klines-19.04.3/po/da/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/da/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-05-28 16:42+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/klines-19.04.3/po/de/klines.po new/klines-19.08.0/po/de/klines.po --- old/klines-19.04.3/po/de/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/de/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-09 14:08+0100\n" "Last-Translator: Frederik Schwarzer <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/el/klines.po new/klines-19.08.0/po/el/klines.po --- old/klines-19.04.3/po/el/klines.po 2019-07-09 02:12:30.000000000 +0200 +++ new/klines-19.08.0/po/el/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-06-11 12:56+0200\n" "Last-Translator: Stelios <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/en_GB/klines.po new/klines-19.08.0/po/en_GB/klines.po --- old/klines-19.04.3/po/en_GB/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/en_GB/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-21 10:53+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/klines-19.04.3/po/eo/klines.po new/klines-19.08.0/po/eo/klines.po --- old/klines-19.04.3/po/eo/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/eo/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2007-12-08 13:47+0100\n" "Last-Translator: Pierre-Marie Pédrot <[email protected]>\n" "Language-Team: esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/es/klines.po new/klines-19.08.0/po/es/klines.po --- old/klines-19.04.3/po/es/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/es/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-12 18:52+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/et/klines.po new/klines-19.08.0/po/et/klines.po --- old/klines-19.04.3/po/et/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/et/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-07-27 19:46+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/klines-19.04.3/po/eu/klines.po new/klines-19.08.0/po/eu/klines.po --- old/klines-19.04.3/po/eu/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/eu/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-06-16 16:48+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/fa/klines.po new/klines-19.08.0/po/fa/klines.po --- old/klines-19.04.3/po/fa/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/fa/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2008-04-16 22:26+0330\n" "Last-Translator: Emil Sedgh <[email protected]>\n" "Language-Team: American English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/fi/klines.po new/klines-19.08.0/po/fi/klines.po --- old/klines-19.04.3/po/fi/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/fi/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-10 12:04+0200\n" "Last-Translator: Lasse Liehu <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/fr/klines.po new/klines-19.08.0/po/fr/klines.po --- old/klines-19.04.3/po/fr/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/fr/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2017-05-09 16:43+0800\n" "Last-Translator: Simon Depiets <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/ga/klines.po new/klines-19.08.0/po/ga/klines.po --- old/klines-19.04.3/po/ga/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/ga/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdegames/klines.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+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/klines-19.04.3/po/gl/klines.po new/klines-19.08.0/po/gl/klines.po --- old/klines-19.04.3/po/gl/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/gl/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2017-03-15 21:43+0100\n" "Last-Translator: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail." "com>\n" @@ -18,11 +18,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, informal\n" -"X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/he/klines.po new/klines-19.08.0/po/he/klines.po --- old/klines-19.04.3/po/he/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/he/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2017-05-16 07:01-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/klines-19.04.3/po/hi/klines.po new/klines-19.08.0/po/hi/klines.po --- old/klines-19.04.3/po/hi/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/hi/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2017-03-07 23:52+0530\n" "Last-Translator: G Karunakar <[email protected]>\n" "Language-Team: Hindi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/hr/klines.po new/klines-19.08.0/po/hr/klines.po --- old/klines-19.04.3/po/hr/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/hr/klines.po 2019-08-09 02:28:44.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: klines 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2006-08-21 17:00+0100\n" "Last-Translator: Renato Pavicic <[email protected]>\n" "Language-Team: Croatian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/hu/klines.po new/klines-19.08.0/po/hu/klines.po --- old/klines-19.04.3/po/hu/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/hu/klines.po 2019-08-09 02:28:44.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:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2017-02-14 22:57+0100\n" "Last-Translator: Kiszel Kristóf <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/is/klines.po new/klines-19.08.0/po/is/klines.po --- old/klines-19.04.3/po/is/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/is/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-06-13 16:24+0000\n" "Last-Translator: Sveinn í Felli <[email protected]>\n" "Language-Team: icelandic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/it/docs/klines/index.docbook new/klines-19.08.0/po/it/docs/klines/index.docbook --- old/klines-19.04.3/po/it/docs/klines/index.docbook 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/it/docs/klines/index.docbook 2019-08-09 02:28:46.000000000 +0200 @@ -723,8 +723,7 @@ >Traduzione italiana di Marco Poletti <email >[email protected]</email ></para -> -&underFDL; &underGPL; </chapter> +> &underFDL; &underGPL; </chapter> &documentation.index; </book> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/it/klines.po new/klines-19.08.0/po/it/klines.po --- old/klines-19.04.3/po/it/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/it/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-14 08:52+0100\n" "Last-Translator: Vincenzo Reale <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/ja/klines.po new/klines-19.08.0/po/ja/klines.po --- old/klines-19.04.3/po/ja/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/ja/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2008-12-14 22:05+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/klines-19.04.3/po/kk/klines.po new/klines-19.08.0/po/kk/klines.po --- old/klines-19.04.3/po/kk/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/kk/klines.po 2019-08-09 02:28:45.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:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2012-04-07 02:31+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/klines-19.04.3/po/km/klines.po new/klines-19.08.0/po/km/klines.po --- old/klines-19.04.3/po/km/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/km/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-10-24 09:42+0700\n" "Last-Translator: Morn Met\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/ko/klines.po new/klines-19.08.0/po/ko/klines.po --- old/klines-19.04.3/po/ko/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/ko/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2019-04-29 20:52+0200\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/klines-19.04.3/po/lt/klines.po new/klines-19.08.0/po/lt/klines.po --- old/klines-19.04.3/po/lt/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/lt/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2011-08-09 23:18+0300\n" "Last-Translator: Remigijus Jarmalavičius <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/lv/klines.po new/klines-19.08.0/po/lv/klines.po --- old/klines-19.04.3/po/lv/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/lv/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-07-19 10:53+0300\n" "Last-Translator: Maris Nartiss <[email protected]>\n" "Language-Team: Latvian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/mr/klines.po new/klines-19.08.0/po/mr/klines.po --- old/klines-19.04.3/po/mr/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/mr/klines.po 2019-08-09 02:28:45.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:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2013-03-22 15:16+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/klines-19.04.3/po/nb/klines.po new/klines-19.08.0/po/nb/klines.po --- old/klines-19.04.3/po/nb/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/nb/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-07-24 10:22+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/klines-19.04.3/po/nds/klines.po new/klines-19.08.0/po/nds/klines.po --- old/klines-19.04.3/po/nds/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/nds/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-03-06 22:55+0100\n" "Last-Translator: Manfred Wiese <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/nl/klines.po new/klines-19.08.0/po/nl/klines.po --- old/klines-19.04.3/po/nl/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/nl/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-10 09:47+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/klines-19.04.3/po/nn/klines.po new/klines-19.08.0/po/nn/klines.po --- old/klines-19.04.3/po/nn/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/nn/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-01-08 21:42+0100\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/klines-19.04.3/po/pa/klines.po new/klines-19.08.0/po/pa/klines.po --- old/klines-19.04.3/po/pa/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/pa/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2007-01-17 11:09+0530\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: Punjabi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/pl/klines.po new/klines-19.08.0/po/pl/klines.po --- old/klines-19.04.3/po/pl/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/pl/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -1,5 +1,5 @@ # translation of klines.po to Polish -# Version: $Revision: 1542253 $ +# Version: $Revision: 1542214 $ # translation of klines.po to # Michał Rudolf <[email protected]>, 2002. # Michal Rudolf <[email protected]>, 2003, 2004, 2005, 2007, 2008, 2009. @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-08-20 07:55+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/klines-19.04.3/po/pt/klines.po new/klines-19.08.0/po/pt/klines.po --- old/klines-19.04.3/po/pt/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/pt/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2015-02-07 15:27+0000\n" "Last-Translator: José Nuno Pires <[email protected]>\n" "Language-Team: pt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/pt_BR/klines.po new/klines-19.08.0/po/pt_BR/klines.po --- old/klines-19.04.3/po/pt_BR/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/pt_BR/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-09 08:21-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/klines-19.04.3/po/ro/klines.po new/klines-19.08.0/po/ro/klines.po --- old/klines-19.04.3/po/ro/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/ro/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: @PACKAGE\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2009-08-09 08:23+0300\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Română <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/ru/klines.po new/klines-19.08.0/po/ru/klines.po --- old/klines-19.04.3/po/ru/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/ru/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2015-03-15 22:20+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/klines-19.04.3/po/sk/klines.po new/klines-19.08.0/po/sk/klines.po --- old/klines-19.04.3/po/sk/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/sk/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-21 11:38+0100\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/klines-19.04.3/po/sl/klines.po new/klines-19.08.0/po/sl/klines.po --- old/klines-19.04.3/po/sl/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/sl/klines.po 2019-08-09 02:28:45.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-08-05 18:36+0200\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/klines-19.04.3/po/sv/klines.po new/klines-19.08.0/po/sv/klines.po --- old/klines-19.04.3/po/sv/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/sv/klines.po 2019-08-09 02:28:46.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-09 17:31+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/klines-19.04.3/po/tr/klines.po new/klines-19.08.0/po/tr/klines.po --- old/klines-19.04.3/po/tr/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/tr/klines.po 2019-08-09 02:28:46.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdegames-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2017-05-16 09:06+0000\n" "Last-Translator: Mete <[email protected]>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdegames-k-tr/" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/po/ug/klines.po new/klines-19.08.0/po/ug/klines.po --- old/klines-19.04.3/po/ug/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/ug/klines.po 2019-08-09 02:28:46.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+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/klines-19.04.3/po/uk/klines.po new/klines-19.08.0/po/uk/klines.po --- old/klines-19.04.3/po/uk/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/uk/klines.po 2019-08-09 02:28:46.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-02-09 16:27+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/klines-19.04.3/po/zh_CN/klines.po new/klines-19.08.0/po/zh_CN/klines.po --- old/klines-19.04.3/po/zh_CN/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/zh_CN/klines.po 2019-08-09 02:28:46.000000000 +0200 @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" -"PO-Revision-Date: 2019-06-02 13:17\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" +"PO-Revision-Date: 2019-07-18 15:12\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/klines-19.04.3/po/zh_TW/klines.po new/klines-19.08.0/po/zh_TW/klines.po --- old/klines-19.04.3/po/zh_TW/klines.po 2019-07-09 02:12:31.000000000 +0200 +++ new/klines-19.08.0/po/zh_TW/klines.po 2019-08-09 02:28:46.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klines\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:39+0200\n" +"POT-Creation-Date: 2019-05-20 03:05+0200\n" "PO-Revision-Date: 2016-11-14 21:00+0800\n" "Last-Translator: Jeff Huang <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/previewitem.cpp new/klines-19.08.0/previewitem.cpp --- old/klines-19.04.3/previewitem.cpp 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/previewitem.cpp 2019-08-04 08:45:19.000000000 +0200 @@ -26,7 +26,7 @@ #include <QPainter> PreviewItem::PreviewItem( QGraphicsScene* scene ) - : QGraphicsItem( 0 ) + : QGraphicsItem( nullptr ) { Q_UNUSED( scene ); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/renderer.cpp new/klines-19.08.0/renderer.cpp --- old/klines-19.04.3/renderer.cpp 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/renderer.cpp 2019-08-04 08:45:19.000000000 +0200 @@ -25,7 +25,6 @@ #include <KGameRenderer> #include <KgThemeProvider> -#include <QFileInfo> // note: this should be in sync with svg static inline char color2char(BallColor col) @@ -60,7 +59,7 @@ int KLinesRenderer::m_dieDuration(0); int KLinesRenderer::m_moveDuration(0); -KLinesRenderer *g_KLinesRenderer = NULL; +KLinesRenderer *g_KLinesRenderer = nullptr; void KLinesRenderer::Init() { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/scene.cpp new/klines-19.08.0/scene.cpp --- old/klines-19.04.3/scene.cpp 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/scene.cpp 2019-08-04 08:45:19.000000000 +0200 @@ -49,7 +49,7 @@ connect(m_animator, &KLinesAnimator::removeFinished, this, &KLinesScene::removeAnimFinished); connect(m_animator, &KLinesAnimator::bornFinished, this, &KLinesScene::bornAnimFinished); - m_focusItem = new QGraphicsRectItem( QRectF(0, 0, m_cellSize, m_cellSize), 0); + m_focusItem = new QGraphicsRectItem( QRectF(0, 0, m_cellSize, m_cellSize), nullptr); m_focusItem->setZValue(1.0); m_focusItem->setPen( Qt::DashLine ); @@ -96,7 +96,7 @@ for(int x=0; x<FIELD_SIZE; ++x) for(int y=0; y<FIELD_SIZE; ++y) - m_field[x][y] = 0; + m_field[x][y] = nullptr; // init m_nextColors for(int i=0; i<3; i++) @@ -233,7 +233,7 @@ // saveAndErase() after bornAnimFinished to check if // we have 5-in-a-row to erase m_numFreeCells = 0; - return 0; // game over, we won't create more balls + return nullptr; // game over, we won't create more balls } int posx = -1, posy = -1; @@ -242,7 +242,7 @@ { posx = m_randomSeq.getLong(FIELD_SIZE); posy = m_randomSeq.getLong(FIELD_SIZE); - } while( m_field[posx][posy] != 0 ); + } while( m_field[posx][posy] != nullptr ); BallItem* newBall = new BallItem( this); newBall->setColor(c, false); // pixmap will be set by born animation @@ -291,7 +291,7 @@ } else // move selected ball to new location { - if( m_selPos.isValid() && m_field[fpos.x][fpos.y] == 0 ) + if( m_selPos.isValid() && m_field[fpos.x][fpos.y] == nullptr ) { saveUndoInfo(); // start move animation @@ -316,7 +316,7 @@ // movedBall has new pixel position - let's find out corresponding field pos FieldPos newpos = pixToField(movedBall->pos()); - m_field[m_selPos.x][m_selPos.y] = 0; // no more ball here + m_field[m_selPos.x][m_selPos.y] = nullptr; // no more ball here m_field[newpos.x][newpos.y] = movedBall; m_selPos.x = m_selPos.y = -1; // invalidate position @@ -408,7 +408,7 @@ for(int x=0; x<FIELD_SIZE-4; ++x) for(int y=0;y<FIELD_SIZE; ++y) { - if(m_field[x][y] == 0) + if(m_field[x][y] == nullptr) continue; BallColor col = m_field[x][y]->color(); @@ -431,7 +431,7 @@ for(int y=0; y<FIELD_SIZE-4; ++y) for(int x=0;x<FIELD_SIZE; ++x) { - if(m_field[x][y] == 0) + if(m_field[x][y] == nullptr) continue; BallColor col = m_field[x][y]->color(); @@ -454,7 +454,7 @@ for(int x=0; x<FIELD_SIZE-4; ++x) for(int y=0;y<FIELD_SIZE-4; ++y) { - if(m_field[x][y] == 0) + if(m_field[x][y] == nullptr) continue; BallColor col = m_field[x][y]->color(); @@ -482,7 +482,7 @@ for(int x=0; x<FIELD_SIZE-4; ++x) for(int y=4; y<FIELD_SIZE; ++y) { - if(m_field[x][y] == 0) + if(m_field[x][y] == nullptr) continue; BallColor col = m_field[x][y]->color(); @@ -509,7 +509,7 @@ foreach( const FieldPos& pos, positionsToDelete ) { m_itemsToDelete.append(m_field[pos.x][pos.y]); - m_field[pos.x][pos.y] = 0; + m_field[pos.x][pos.y] = nullptr; m_numFreeCells++; } @@ -627,7 +627,7 @@ { removeItem( m_field[x][y] ); delete m_field[x][y]; - m_field[x][y] = 0; + m_field[x][y] = nullptr; } continue; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klines-19.04.3/scene.h new/klines-19.08.0/scene.h --- old/klines-19.04.3/scene.h 2019-05-31 07:16:15.000000000 +0200 +++ new/klines-19.08.0/scene.h 2019-08-04 08:45:19.000000000 +0200 @@ -95,7 +95,7 @@ return FieldPos(static_cast<int>(( p.x()-m_playFieldRect.x()-m_playFieldBorderSize )/m_cellSize), static_cast<int>(( p.y()-m_playFieldRect.y()-m_playFieldBorderSize )/m_cellSize)); } -public slots: +public Q_SLOTS: /** * Starts new game */ @@ -128,11 +128,11 @@ * Takes corresponding action on cell under focus rect */ void cellSelected(); -signals: +Q_SIGNALS: void scoreChanged(int); void stateChanged(const QString &); void gameOver(int); -private slots: +private Q_SLOTS: void moveAnimFinished(); void removeAnimFinished(); void bornAnimFinished();
