Hello community, here is the log from the commit of package kspaceduel for openSUSE:Factory checked in at 2019-08-16 15:48:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kspaceduel (Old) and /work/SRC/openSUSE:Factory/.kspaceduel.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kspaceduel" Fri Aug 16 15:48:00 2019 rev:87 rq:723710 version:19.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kspaceduel/kspaceduel.changes 2019-07-17 13:18:26.627706267 +0200 +++ /work/SRC/openSUSE:Factory/.kspaceduel.new.22127/kspaceduel.changes 2019-08-16 15:48:32.265638686 +0200 @@ -1,0 +2,32 @@ +Fri Aug 9 08:31:43 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:50 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:04 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: + * update screenshot + * Port setMargins + * Modernize cmake file + * Fix some clazy warning + +------------------------------------------------------------------- Old: ---- kspaceduel-19.04.3.tar.xz New: ---- applications.keyring kspaceduel-19.08.0.tar.xz kspaceduel-19.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kspaceduel.spec ++++++ --- /var/tmp/diff_new_pack.pTDFPA/_old 2019-08-16 15:48:32.917638446 +0200 +++ /var/tmp/diff_new_pack.pTDFPA/_new 2019-08-16 15:48:32.921638445 +0200 @@ -21,13 +21,17 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kspaceduel -Version: 19.04.3 +Version: 19.08.0 Release: 0 Summary: Space Arcade game License: GPL-2.0-or-later Group: Amusements/Games/Action/Arcade -URL: http://www.kde.org -Source0: kspaceduel-%{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: kconfig-devel BuildRequires: kconfigwidgets-devel ++++++ kspaceduel-19.04.3.tar.xz -> kspaceduel-19.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/CMakeLists.txt new/kspaceduel-19.08.0/CMakeLists.txt --- old/kspaceduel-19.04.3/CMakeLists.txt 2019-07-09 02:13:17.000000000 +0200 +++ new/kspaceduel-19.08.0/CMakeLists.txt 2019-08-09 02:30:14.000000000 +0200 @@ -1,9 +1,9 @@ project(kspaceduel) -cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR) -set (QT_MIN_VERSION "5.3.0") -set (KF5_MIN_VERSION "5.15") +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 1.7.0 REQUIRED CONFIG) +find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Svg) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/dialogs.cpp new/kspaceduel-19.08.0/dialogs.cpp --- old/kspaceduel-19.04.3/dialogs.cpp 2019-05-31 07:17:27.000000000 +0200 +++ new/kspaceduel-19.08.0/dialogs.cpp 2019-05-31 03:01:40.000000000 +0200 @@ -152,7 +152,7 @@ resize(500,400); QVBoxLayout *boxlayout = new QVBoxLayout( this ); - boxlayout->setMargin(6); + boxlayout->setContentsMargins(6, 6, 6, 6); tabs=new QTabWidget(this); for(i=0;i<TabNum;++i) @@ -416,12 +416,12 @@ : KConfigDialog( parent,QLatin1String( name ), Options::self()) { General *general = new General(); - addPage(general, i18nc("general settings","General"), QLatin1String( "games-config-options" ), i18n("General Settings")); + addPage(general, i18nc("general settings","General"), QStringLiteral( "games-config-options" ), i18n("General Settings")); cs = new ConfigSetup(customConfig); - addPage(cs, i18nc("game settings","Game"),QLatin1String( "games-config-custom" ), i18n("Game Settings")); + addPage(cs, i18nc("game settings","Game"),QStringLiteral( "games-config-custom" ), i18n("Game Settings")); connect(cs, &ConfigSetup::changed, this, &SettingsDialog::updateButtons); - setHelp(QLatin1String( "options-configurations" ), QLatin1String( "kspaceduel" )); + setHelp(QStringLiteral( "options-configurations" ), QStringLiteral( "kspaceduel" )); // resize(600,400); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/main.cpp new/kspaceduel-19.08.0/main.cpp --- old/kspaceduel-19.04.3/main.cpp 2019-05-31 07:17:27.000000000 +0200 +++ new/kspaceduel-19.08.0/main.cpp 2019-05-31 03:01:40.000000000 +0200 @@ -35,11 +35,11 @@ KLocalizedString::setApplicationDomain("kspaceduel"); - KAboutData aboutData( "kspaceduel", i18n("KSpaceDuel"), + KAboutData aboutData( QStringLiteral("kspaceduel"), i18n("KSpaceDuel"), KSPACEDUEL_VERSION, i18n(description), KAboutLicense::GPL, - i18n("(c) 1998-2001, Andreas Zehender"), "http://games.kde.org/kspaceduel" ); - aboutData.addAuthor(i18n("Andreas Zehender"),i18n("Original Program"), "[email protected]"); - aboutData.addAuthor(i18n("Branan Riley"),i18n("SVG Renderer"), "[email protected]"); + i18n("(c) 1998-2001, Andreas Zehender"), QStringLiteral("http://games.kde.org/kspaceduel") ); + aboutData.addAuthor(i18n("Andreas Zehender"),i18n("Original Program"), QStringLiteral("[email protected]")); + aboutData.addAuthor(i18n("Branan Riley"),i18n("SVG Renderer"), QStringLiteral("[email protected]")); QCommandLineParser parser; KAboutData::setApplicationData(aboutData); KCrash::initialize(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/mainview.cpp new/kspaceduel-19.08.0/mainview.cpp --- old/kspaceduel-19.04.3/mainview.cpp 2019-05-31 07:17:27.000000000 +0200 +++ new/kspaceduel-19.08.0/mainview.cpp 2019-05-31 03:01:40.000000000 +0200 @@ -64,7 +64,7 @@ int i,p; setMinimumSize(600,400); random.setSeed(0); - QPixmap backgr(QStandardPaths::locate(QStandardPaths::DataLocation, QLatin1String(MV_BACKGROUND))); + QPixmap backgr(QStandardPaths::locate(QStandardPaths::DataLocation, QStringLiteral(MV_BACKGROUND))); field.setBackgroundBrush(QBrush(backgr)); view.setCacheMode(QGraphicsView::CacheBackground); @@ -84,20 +84,20 @@ minePut[p]=false; } - svgrender = new QSvgRenderer(QStandardPaths::locate(QStandardPaths::DataLocation, QLatin1String(MV_SVG_FILE))); + svgrender = new QSvgRenderer(QStandardPaths::locate(QStandardPaths::DataLocation, QStringLiteral(MV_SVG_FILE))); - sun=new SunSprite(svgrender,QLatin1String( MV_SUN )); + sun=new SunSprite(svgrender,QStringLiteral( MV_SUN )); field.addItem(sun); sun->setPos(QPointF(width()/2-1-(sun->width()/2), height()/2-1-(sun->height()/2))); - powerupelements[0] = QLatin1String( MV_POWERMINE ); - powerupelements[1] = QLatin1String( MV_POWERBULLET ); - powerupelements[2] = QLatin1String( MV_POWERSHIELD ); - powerupelements[3] = QLatin1String( MV_POWERENERGY ); + powerupelements[0] = QStringLiteral( MV_POWERMINE ); + powerupelements[1] = QStringLiteral( MV_POWERBULLET ); + powerupelements[2] = QStringLiteral( MV_POWERSHIELD ); + powerupelements[3] = QStringLiteral( MV_POWERENERGY ); - ship[0]=new ShipSprite(svgrender, QLatin1String( MV_SHIP1 ), 0); - ship[1]=new ShipSprite(svgrender, QLatin1String( MV_SHIP2 ), 1); + ship[0]=new ShipSprite(svgrender, QStringLiteral( MV_SHIP1 ), 0); + ship[1]=new ShipSprite(svgrender, QStringLiteral( MV_SHIP2 ), 1); field.addItem(ship[0]); field.addItem(ship[1]); @@ -300,29 +300,29 @@ // if-statement kept for historical reasons, maybe not needed anymore if ( ((gameEnd>0.0) || (gameEnd<=-2.0)) && (!waitForStart) ) { - if(actionCollection->action(QLatin1String( "P1KeyLeft" ))->shortcuts().contains(ev->key())) + if(actionCollection->action(QStringLiteral( "P1KeyLeft" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyLeft]=true; - else if(actionCollection->action(QLatin1String( "P2KeyLeft" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2KeyLeft" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyLeft]=true; - else if(actionCollection->action(QLatin1String( "P1KeyRight" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1KeyRight" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyRight]=true; - else if(actionCollection->action(QLatin1String( "P2KeyRight" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2KeyRight" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyRight]=true; - else if(actionCollection->action(QLatin1String( "P1KeyAcc" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1KeyAcc" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyAcc]=true; - else if(actionCollection->action(QLatin1String( "P2KeyAcc" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2KeyAcc" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyAcc]=true; - else if(actionCollection->action(QLatin1String( "P1Shot" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1Shot" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyShot]=true; - else if(actionCollection->action(QLatin1String( "P2Shot" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2Shot" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyShot]=true; - else if(actionCollection->action(QLatin1String( "P1Mine" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1Mine" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyMine]=true; - else if(actionCollection->action(QLatin1String( "P2Mine" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2Mine" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyMine]=true; else ev->ignore(); @@ -331,29 +331,29 @@ void MyMainView::keyReleaseEvent(QKeyEvent *ev) { - if(actionCollection->action(QLatin1String( "P1KeyLeft" ))->shortcuts().contains(ev->key())) + if(actionCollection->action(QStringLiteral( "P1KeyLeft" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyLeft]=false; - else if(actionCollection->action(QLatin1String( "P2KeyLeft" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2KeyLeft" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyLeft]=false; - else if(actionCollection->action(QLatin1String( "P1KeyRight" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1KeyRight" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyRight]=false; - else if(actionCollection->action(QLatin1String( "P2KeyRight" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2KeyRight" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyRight]=false; - else if(actionCollection->action(QLatin1String( "P1KeyAcc" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1KeyAcc" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyAcc]=false; - else if(actionCollection->action(QLatin1String( "P2KeyAcc" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2KeyAcc" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyAcc]=false; - else if(actionCollection->action(QLatin1String( "P1Shot" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1Shot" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyShot]=false; - else if(actionCollection->action(QLatin1String( "P2Shot" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2Shot" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyShot]=false; - else if(actionCollection->action(QLatin1String( "P1Mine" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P1Mine" ))->shortcuts().contains(ev->key())) playerKeyPressed[0][PlayerKeyMine]=false; - else if(actionCollection->action(QLatin1String( "P2Mine" ))->shortcuts().contains(ev->key())) + else if(actionCollection->action(QStringLiteral( "P2Mine" ))->shortcuts().contains(ev->key())) playerKeyPressed[1][PlayerKeyMine]=false; else ev->ignore(); @@ -521,7 +521,7 @@ //field.update(); QString str = i18n("Press %1 to start", - actionCollection->action("game_start")->shortcut().toString(QKeySequence::NativeText)); + actionCollection->action(QStringLiteral("game_start"))->shortcut().toString(QKeySequence::NativeText)); emit(setStatusText(str,IDS_MAIN)); emit(setStatusText( QLatin1String( "" ), IDS_PAUSE )); stop( ); @@ -589,7 +589,7 @@ textSprite->setPos(QPointF((width()-textSprite->boundingRect().width()) / 2,height()/2-90)); QString str = i18n("Press %1 for new round", - actionCollection->action("game_start")->shortcut().toString(QKeySequence::NativeText)); + actionCollection->action(QStringLiteral("game_start"))->shortcut().toString(QKeySequence::NativeText)); emit(setStatusText(str,IDS_MAIN)); stop( ); } @@ -689,10 +689,10 @@ ship[i]->bullet(config.bulletReloadTime); en-=config.shotEnergyNeed; if(i) - bullet=new BulletSprite(svgrender, QLatin1String( MV_BULLET2 ), i, + bullet=new BulletSprite(svgrender, QStringLiteral( MV_BULLET2 ), i, config.bulletLifeTime); else - bullet=new BulletSprite(svgrender, QLatin1String( MV_BULLET1 ), i, + bullet=new BulletSprite(svgrender, QStringLiteral( MV_BULLET1 ), i, config.bulletLifeTime); field.addItem(bullet); QPointF p; @@ -1064,7 +1064,7 @@ if(!waitForStart) pause(); - if (KConfigDialog::showDialog( QLatin1String( "settings" ))) + if (KConfigDialog::showDialog( QStringLiteral( "settings" ))) return; SettingsDialog *settings=new SettingsDialog(&customConfig,this,"settings"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/org.kde.kspaceduel.appdata.xml new/kspaceduel-19.08.0/org.kde.kspaceduel.appdata.xml --- old/kspaceduel-19.04.3/org.kde.kspaceduel.appdata.xml 2019-05-31 07:17:27.000000000 +0200 +++ new/kspaceduel-19.08.0/org.kde.kspaceduel.appdata.xml 2019-05-31 03:01:40.000000000 +0200 @@ -101,7 +101,7 @@ <url type="donation">https://www.kde.org/community/donations/?app=kspaceduel&source=appdata</url> <screenshots> <screenshot type="default"> - <image>https://kde.org/images/screenshots/kspaceduel.png</image> + <image>https://cdn.kde.org/screenshots/kspaceduel/kspaceduel.png</image> </screenshot> </screenshots> <project_group>KDE</project_group> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/playerinfo.cpp new/kspaceduel-19.08.0/playerinfo.cpp --- old/kspaceduel-19.04.3/playerinfo.cpp 2019-05-31 07:17:27.000000000 +0200 +++ new/kspaceduel-19.08.0/playerinfo.cpp 2019-05-31 03:01:40.000000000 +0200 @@ -26,12 +26,12 @@ void PlayerInfo::loadPixmaps() { - pplayer[0] = new QPixmap(QIcon::fromTheme( QLatin1String( "battery-discharging-100" )).pixmap(32,32)); - pplayer[1] = new QPixmap(QIcon::fromTheme( QLatin1String( "battery-discharging-080" )).pixmap(32,32)); - pplayer[2] = new QPixmap(QIcon::fromTheme( QLatin1String( "battery-discharging-060" )).pixmap(32,32)); - pplayer[3] = new QPixmap(QIcon::fromTheme( QLatin1String( "battery-discharging-040" )).pixmap(32,32)); - pplayer[4] = new QPixmap(QIcon::fromTheme( QLatin1String( "battery-discharging-020" )).pixmap(32,32)); - pplayer[5] = new QPixmap(QIcon::fromTheme( QLatin1String( "battery-discharging-000" )).pixmap(32,32)); + pplayer[0] = new QPixmap(QIcon::fromTheme( QStringLiteral( "battery-discharging-100" )).pixmap(32,32)); + pplayer[1] = new QPixmap(QIcon::fromTheme( QStringLiteral( "battery-discharging-080" )).pixmap(32,32)); + pplayer[2] = new QPixmap(QIcon::fromTheme( QStringLiteral( "battery-discharging-060" )).pixmap(32,32)); + pplayer[3] = new QPixmap(QIcon::fromTheme( QStringLiteral( "battery-discharging-040" )).pixmap(32,32)); + pplayer[4] = new QPixmap(QIcon::fromTheme( QStringLiteral( "battery-discharging-020" )).pixmap(32,32)); + pplayer[5] = new QPixmap(QIcon::fromTheme( QStringLiteral( "battery-discharging-000" )).pixmap(32,32)); } PlayerInfo::PlayerInfo(int pnr,QWidget *parent) @@ -73,8 +73,8 @@ lplayer.setPixmap(*(pplayer[0])); currentPixmap=0; //lenergy.setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::DataLocation, "sprites/playerinfo/energy.png"))); - lenergy.setPixmap(QIcon::fromTheme( QLatin1String( "battery" )).pixmap(32,32));; - lwins.setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::DataLocation, QLatin1String( "sprites/playerinfo/win.png" )))); + lenergy.setPixmap(QIcon::fromTheme( QStringLiteral( "battery" )).pixmap(32,32));; + lwins.setPixmap(QPixmap(QStandardPaths::locate(QStandardPaths::DataLocation, QStringLiteral( "sprites/playerinfo/win.png" )))); hitpoints.setGeometry(9,45,26,26); energy.setGeometry(9,120,26,26); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/ar/kspaceduel.po new/kspaceduel-19.08.0/po/ar/kspaceduel.po --- old/kspaceduel-19.04.3/po/ar/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ar/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2007-10-14 15:45+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/kspaceduel-19.04.3/po/bg/kspaceduel.po new/kspaceduel-19.08.0/po/bg/kspaceduel.po --- old/kspaceduel-19.04.3/po/bg/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/bg/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -1,13 +1,13 @@ # Bulgarian translation of KDE. # This file is licensed under the GPL. # -# $Id: kspaceduel.po 1542253 2019-05-20 06:55:29Z scripty $ +# $Id: kspaceduel.po 1542151 2019-05-20 02:16:01Z scripty $ # msgid "" msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2004-09-30 20:31+0300\n" "Last-Translator: Radostin Radnev <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/bs/kspaceduel.po new/kspaceduel-19.08.0/po/bs/kspaceduel.po --- old/kspaceduel-19.04.3/po/bs/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/bs/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdegames\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:06+0200\n" "PO-Revision-Date: 2013-10-18 20:28+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/kspaceduel-19.04.3/po/ca/kspaceduel.po new/kspaceduel-19.08.0/po/ca/kspaceduel.po --- old/kspaceduel-19.04.3/po/ca/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ca/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2011-02-19 17:14+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/kspaceduel-19.04.3/po/ca@valencia/kspaceduel.po new/kspaceduel-19.08.0/po/ca@valencia/kspaceduel.po --- old/kspaceduel-19.04.3/po/ca@valencia/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ca@valencia/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2011-02-19 17:14+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/kspaceduel-19.04.3/po/cs/kspaceduel.po new/kspaceduel-19.08.0/po/cs/kspaceduel.po --- old/kspaceduel-19.04.3/po/cs/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/cs/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2017-09-12 11:45+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/kspaceduel-19.04.3/po/da/kspaceduel.po new/kspaceduel-19.08.0/po/da/kspaceduel.po --- old/kspaceduel-19.04.3/po/da/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/da/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-06-29 19:14+0200\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/kspaceduel-19.04.3/po/de/kspaceduel.po new/kspaceduel-19.08.0/po/de/kspaceduel.po --- old/kspaceduel-19.04.3/po/de/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/de/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2009-03-24 14:50+0100\n" "Last-Translator: Johannes Obermayr <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/el/kspaceduel.po new/kspaceduel-19.08.0/po/el/kspaceduel.po --- old/kspaceduel-19.04.3/po/el/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/el/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-06-29 16:16+0300\n" "Last-Translator: Spiros Georgaras <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/en_GB/kspaceduel.po new/kspaceduel-19.08.0/po/en_GB/kspaceduel.po --- old/kspaceduel-19.04.3/po/en_GB/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/en_GB/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2009-03-05 21:20+0000\n" "Last-Translator: Malcolm Hunter <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/eo/kspaceduel.po new/kspaceduel-19.08.0/po/eo/kspaceduel.po --- old/kspaceduel-19.04.3/po/eo/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/eo/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2007-12-02 12:23+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/kspaceduel-19.04.3/po/es/kspaceduel.po new/kspaceduel-19.08.0/po/es/kspaceduel.po --- old/kspaceduel-19.04.3/po/es/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/es/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2010-04-20 23:25+0200\n" "Last-Translator: Kira J. Fernandez <[email protected]>\n" "Language-Team: Español <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/et/kspaceduel.po new/kspaceduel-19.08.0/po/et/kspaceduel.po --- old/kspaceduel-19.04.3/po/et/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/et/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-06-29 16:54+0200\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/kspaceduel-19.04.3/po/eu/kspaceduel.po new/kspaceduel-19.08.0/po/eu/kspaceduel.po --- old/kspaceduel-19.04.3/po/eu/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/eu/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2009-06-16 17:53+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/kspaceduel-19.04.3/po/fa/kspaceduel.po new/kspaceduel-19.08.0/po/fa/kspaceduel.po --- old/kspaceduel-19.04.3/po/fa/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/fa/kspaceduel.po 2019-08-09 02:30:11.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2007-07-07 16:04+0330\n" "Last-Translator: Nazanin Kazemi <[email protected]>\n" "Language-Team: Persian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/fi/kspaceduel.po new/kspaceduel-19.08.0/po/fi/kspaceduel.po --- old/kspaceduel-19.04.3/po/fi/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/fi/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2018-03-01 16:43+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/kspaceduel-19.04.3/po/fr/kspaceduel.po new/kspaceduel-19.08.0/po/fr/kspaceduel.po --- old/kspaceduel-19.04.3/po/fr/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/fr/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2012-08-02 11:53+0200\n" "Last-Translator: xavier <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/ga/kspaceduel.po new/kspaceduel-19.08.0/po/ga/kspaceduel.po --- old/kspaceduel-19.04.3/po/ga/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ga/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdegames/kspaceduel.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:06+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/kspaceduel-19.04.3/po/gl/kspaceduel.po new/kspaceduel-19.08.0/po/gl/kspaceduel.po --- old/kspaceduel-19.04.3/po/gl/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/gl/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2017-10-04 16:00+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -16,11 +16,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/kspaceduel-19.04.3/po/he/kspaceduel.po new/kspaceduel-19.08.0/po/he/kspaceduel.po --- old/kspaceduel-19.04.3/po/he/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/he/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+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/kspaceduel-19.04.3/po/hi/kspaceduel.po new/kspaceduel-19.08.0/po/hi/kspaceduel.po --- old/kspaceduel-19.04.3/po/hi/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/hi/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2007-12-24 13:03+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/kspaceduel-19.04.3/po/hr/kspaceduel.po new/kspaceduel-19.08.0/po/hr/kspaceduel.po --- old/kspaceduel-19.04.3/po/hr/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/hr/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kspaceduel 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:06+0200\n" "PO-Revision-Date: 2006-08-25 03:38+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/kspaceduel-19.04.3/po/hu/kspaceduel.po new/kspaceduel-19.08.0/po/hu/kspaceduel.po --- old/kspaceduel-19.04.3/po/hu/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/hu/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4.2\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:06+0200\n" "PO-Revision-Date: 2009-04-09 14:14+0100\n" "Last-Translator: Tamas Szanto <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/is/kspaceduel.po new/kspaceduel-19.08.0/po/is/kspaceduel.po --- old/kspaceduel-19.04.3/po/is/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/is/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+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/kspaceduel-19.04.3/po/it/docs/kspaceduel/index.docbook new/kspaceduel-19.08.0/po/it/docs/kspaceduel/index.docbook --- old/kspaceduel-19.04.3/po/it/docs/kspaceduel/index.docbook 2019-07-09 02:13:17.000000000 +0200 +++ new/kspaceduel-19.08.0/po/it/docs/kspaceduel/index.docbook 2019-08-09 02:30:13.000000000 +0200 @@ -1138,7 +1138,7 @@ >Marco Poletti <email >[email protected]</email > </para -> &underFDL; &underGPL; </chapter> +> &underFDL; &underGPL; </chapter> <appendix id="installation"> <title @@ -1149,8 +1149,8 @@ <sect1 id="Compilation"> <title ->Compilazione ed installazione</title> -&install.compile.documentation; </sect1> +>Compilazione ed installazione</title +>&install.compile.documentation; </sect1> </appendix> &documentation.index; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/it/kspaceduel.po new/kspaceduel-19.08.0/po/it/kspaceduel.po --- old/kspaceduel-19.04.3/po/it/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/it/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2009-08-25 17:36+0200\n" "Last-Translator: Marco Poletti <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/ja/kspaceduel.po new/kspaceduel-19.08.0/po/ja/kspaceduel.po --- old/kspaceduel-19.04.3/po/ja/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ja/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-12-23 11:25+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/kspaceduel-19.04.3/po/kk/kspaceduel.po new/kspaceduel-19.08.0/po/kk/kspaceduel.po --- old/kspaceduel-19.04.3/po/kk/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/kk/kspaceduel.po 2019-08-09 02:30:12.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:06+0200\n" "PO-Revision-Date: 2012-04-07 04:05+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/kspaceduel-19.04.3/po/km/kspaceduel.po new/kspaceduel-19.08.0/po/km/kspaceduel.po --- old/kspaceduel-19.04.3/po/km/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/km/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2009-10-23 21:22+0700\n" "Last-Translator: Morn Met\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/ko/kspaceduel.po new/kspaceduel-19.08.0/po/ko/kspaceduel.po --- old/kspaceduel-19.04.3/po/ko/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ko/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2019-05-30 15:02+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/kspaceduel-19.04.3/po/lt/kspaceduel.po new/kspaceduel-19.08.0/po/lt/kspaceduel.po --- old/kspaceduel-19.04.3/po/lt/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/lt/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2011-08-09 23:30+0300\n" "Last-Translator: Remigijus Jarmalavičius <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" @@ -187,7 +187,7 @@ #: dialogs.cpp:419 #, kde-format msgid "General Settings" -msgstr "Bendri nustatymai" +msgstr "Bendrosios nuostatos" #: dialogs.cpp:422 #, kde-format @@ -198,7 +198,7 @@ #: dialogs.cpp:422 #, kde-format msgid "Game Settings" -msgstr "Žaidimo nustatymai" +msgstr "Žaidimo nuostatos" #. i18n: ectx: property (title), widget (QGroupBox, groupBox3) #: general.ui:22 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/lv/kspaceduel.po new/kspaceduel-19.08.0/po/lv/kspaceduel.po --- old/kspaceduel-19.04.3/po/lv/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/lv/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-12-27 18:50+0200\n" "Last-Translator: Viesturs Zarins <[email protected]>\n" "Language-Team: Lavtian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/mr/kspaceduel.po new/kspaceduel-19.08.0/po/mr/kspaceduel.po --- old/kspaceduel-19.04.3/po/mr/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/mr/kspaceduel.po 2019-08-09 02:30:12.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:06+0200\n" "PO-Revision-Date: 2013-03-13 12:57+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/kspaceduel-19.04.3/po/nb/kspaceduel.po new/kspaceduel-19.08.0/po/nb/kspaceduel.po --- old/kspaceduel-19.04.3/po/nb/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/nb/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2010-01-27 13:51+0100\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/kspaceduel-19.04.3/po/nds/kspaceduel.po new/kspaceduel-19.08.0/po/nds/kspaceduel.po --- old/kspaceduel-19.04.3/po/nds/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/nds/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-06-28 01:35+0200\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/kspaceduel-19.04.3/po/nl/kspaceduel.po new/kspaceduel-19.08.0/po/nl/kspaceduel.po --- old/kspaceduel-19.04.3/po/nl/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/nl/kspaceduel.po 2019-08-09 02:30:12.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-09-18 21:14+0100\n" "Last-Translator: Kristof Bal <[email protected]>\n" "Language-Team: Nederlands <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/nn/kspaceduel.po new/kspaceduel-19.08.0/po/nn/kspaceduel.po --- old/kspaceduel-19.04.3/po/nn/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/nn/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-08-03 19:22+0200\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/pa/kspaceduel.po new/kspaceduel-19.08.0/po/pa/kspaceduel.po --- old/kspaceduel-19.04.3/po/pa/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/pa/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2007-01-17 11:11+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/kspaceduel-19.04.3/po/pl/kspaceduel.po new/kspaceduel-19.08.0/po/pl/kspaceduel.po --- old/kspaceduel-19.04.3/po/pl/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/pl/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -1,4 +1,4 @@ -# Version: $Revision: 1542253 $ +# Version: $Revision: 1542214 $ # translation of kspaceduel.po to Polish # translation of kspaceduel.po to # Copyright (C) 2002, 2003, 2007, 2008 Free Software Foundation, Inc. @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2014-12-30 09:46+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/kspaceduel-19.04.3/po/pt/kspaceduel.po new/kspaceduel-19.08.0/po/pt/kspaceduel.po --- old/kspaceduel-19.04.3/po/pt/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/pt/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-06-28 01:26+0100\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/kspaceduel-19.04.3/po/pt_BR/kspaceduel.po new/kspaceduel-19.08.0/po/pt_BR/kspaceduel.po --- old/kspaceduel-19.04.3/po/pt_BR/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/pt_BR/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2011-01-09 15:31-0200\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/kspaceduel-19.04.3/po/ro/kspaceduel.po new/kspaceduel-19.08.0/po/ro/kspaceduel.po --- old/kspaceduel-19.04.3/po/ro/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ro/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kspaceduel-0.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:06+0200\n" "PO-Revision-Date: 2008-12-09 13:03+0200\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/ru/kspaceduel.po new/kspaceduel-19.08.0/po/ru/kspaceduel.po --- old/kspaceduel-19.04.3/po/ru/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ru/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2017-11-01 14:05+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/kspaceduel-19.04.3/po/sk/kspaceduel.po new/kspaceduel-19.08.0/po/sk/kspaceduel.po --- old/kspaceduel-19.04.3/po/sk/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/sk/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2010-01-23 20:49+0100\n" "Last-Translator: Michal Sulek <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/po/sl/kspaceduel.po new/kspaceduel-19.08.0/po/sl/kspaceduel.po --- old/kspaceduel-19.04.3/po/sl/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/sl/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -2,7 +2,7 @@ # Translation of kspaceduel.po to Slovenian # -*- mode:po; coding:iso-latin-2; -*- Slovenian msg. catalog for Kspaceduel. # Copyright (C) 2001, 2003, 2004, 2007 Free Software Foundation, Inc. -# $Id: kspaceduel.po 1542253 2019-05-20 06:55:29Z scripty $ +# $Id: kspaceduel.po 1542222 2019-05-20 03:03:13Z scripty $ # $Source$ # # Roman Maurer <[email protected]>, 2000. @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2016-08-21 13:32+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/kspaceduel-19.04.3/po/sv/kspaceduel.po new/kspaceduel-19.08.0/po/sv/kspaceduel.po --- old/kspaceduel-19.04.3/po/sv/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/sv/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2017-04-18 18:40+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/kspaceduel-19.04.3/po/tr/kspaceduel.po new/kspaceduel-19.08.0/po/tr/kspaceduel.po --- old/kspaceduel-19.04.3/po/tr/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/tr/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -10,7 +10,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:06+0200\n" "PO-Revision-Date: 2014-06-08 13:55+0000\n" "Last-Translator: Volkan Gezer <[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/kspaceduel-19.04.3/po/ug/kspaceduel.po new/kspaceduel-19.08.0/po/ug/kspaceduel.po --- old/kspaceduel-19.04.3/po/ug/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/ug/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+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/kspaceduel-19.04.3/po/uk/kspaceduel.po new/kspaceduel-19.08.0/po/uk/kspaceduel.po --- old/kspaceduel-19.04.3/po/uk/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/uk/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2010-01-28 19:49+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/kspaceduel-19.04.3/po/zh_CN/kspaceduel.po new/kspaceduel-19.08.0/po/zh_CN/kspaceduel.po --- old/kspaceduel-19.04.3/po/zh_CN/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/zh_CN/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -8,8 +8,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:06+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/kspaceduel-19.04.3/po/zh_TW/kspaceduel.po new/kspaceduel-19.08.0/po/zh_TW/kspaceduel.po --- old/kspaceduel-19.04.3/po/zh_TW/kspaceduel.po 2019-07-09 02:13:16.000000000 +0200 +++ new/kspaceduel-19.08.0/po/zh_TW/kspaceduel.po 2019-08-09 02:30:13.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kspaceduel\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:06+0200\n" "PO-Revision-Date: 2008-06-26 11:14+0800\n" "Last-Translator: Frank Weng (a.k.a. Franklin) <franklin at goodhorse dot idv " "dot tw>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kspaceduel-19.04.3/topwidget.cpp new/kspaceduel-19.08.0/topwidget.cpp --- old/kspaceduel-19.04.3/topwidget.cpp 2019-05-31 07:17:27.000000000 +0200 +++ new/kspaceduel-19.08.0/topwidget.cpp 2019-05-31 03:01:40.000000000 +0200 @@ -90,8 +90,8 @@ KStandardGameAction::gameNew(playfield, SLOT(newGame()), actionCollection()); KStandardGameAction::quit(this, SLOT(close()), actionCollection()); - QAction * newRoundAct = actionCollection()->addAction( QLatin1String( "new_round" ) ); - newRoundAct->setIcon( QIcon::fromTheme( QLatin1String( "preferences-desktop-notification-bell" )) ); + QAction * newRoundAct = actionCollection()->addAction( QStringLiteral( "new_round" ) ); + newRoundAct->setIcon( QIcon::fromTheme( QStringLiteral( "preferences-desktop-notification-bell" )) ); newRoundAct->setText( i18n( "&New Round" ) ); actionCollection()->setDefaultShortcut(newRoundAct, Qt::CTRL + Qt::Key_R); connect( newRoundAct, &QAction::triggered, playfield, &MyMainView::newRound ); @@ -99,7 +99,7 @@ MyMainView::pauseAction = KStandardGameAction::pause(playfield, SLOT(togglePause()), actionCollection()); MyMainView::pauseAction->setChecked( false ); - QAction *gameStart = actionCollection()->addAction( QLatin1String( "game_start" ) ); + QAction *gameStart = actionCollection()->addAction( QStringLiteral( "game_start" ) ); gameStart->setText( i18nc( "start game","Start" ) ); connect(gameStart, &QAction::triggered, playfield, &MyMainView::start); actionCollection()->setDefaultShortcut(gameStart, Qt::Key_Space); @@ -112,44 +112,44 @@ #warning assuming this is not necessary anymore #endif // actionCollection()->setAutoConnectShortcuts(false); - ac = actionCollection()->addAction( QLatin1String( "P1KeyLeft" )); + ac = actionCollection()->addAction( QStringLiteral( "P1KeyLeft" )); ac->setText(i18n("Player 1 Rotate Left")); actionCollection()->setDefaultShortcut(ac, Qt::Key_S); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P1KeyRight" )); + ac = actionCollection()->addAction( QStringLiteral( "P1KeyRight" )); ac->setText(i18n("Player 1 Rotate Right")); actionCollection()->setDefaultShortcut(ac, Qt::Key_F); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P1KeyAcc" )); + ac = actionCollection()->addAction( QStringLiteral( "P1KeyAcc" )); ac->setText(i18n("Player 1 Accelerate")); actionCollection()->setDefaultShortcut(ac, Qt::Key_E); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P1Shot" )); + ac = actionCollection()->addAction( QStringLiteral( "P1Shot" )); ac->setText(i18n("Player 1 Shot")); actionCollection()->setDefaultShortcut(ac, Qt::Key_D); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P1Mine" )); + ac = actionCollection()->addAction( QStringLiteral( "P1Mine" )); ac->setText(i18n("Player 1 Mine")); actionCollection()->setDefaultShortcut(ac, Qt::Key_A); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P2KeyLeft" )); + ac = actionCollection()->addAction( QStringLiteral( "P2KeyLeft" )); ac->setText(i18n("Player 2 Rotate Left")); actionCollection()->setDefaultShortcut(ac, Qt::Key_Left); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P2KeyRight" )); + ac = actionCollection()->addAction( QStringLiteral( "P2KeyRight" )); ac->setText(i18n("Player 2 Rotate Right")); actionCollection()->setDefaultShortcut(ac, Qt::Key_Right); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P2KeyAcc" )); + ac = actionCollection()->addAction( QStringLiteral( "P2KeyAcc" )); ac->setText(i18n("Player 2 Accelerate")); actionCollection()->setDefaultShortcut(ac, Qt::Key_Up); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P2Shot" )); + ac = actionCollection()->addAction( QStringLiteral( "P2Shot" )); ac->setText(i18n("Player 2 Shot")); actionCollection()->setDefaultShortcut(ac, Qt::Key_Down); ac->setEnabled( false ); - ac = actionCollection()->addAction( QLatin1String( "P2Mine" )); + ac = actionCollection()->addAction( QStringLiteral( "P2Mine" )); ac->setText(i18n("Player 2 Mine")); actionCollection()->setDefaultShortcut(ac, Qt::Key_Insert); ac->setEnabled( false );
