Hello community,

here is the log from the commit of package kapman for openSUSE:Factory checked 
in at 2019-04-28 20:03:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kapman (Old)
 and      /work/SRC/openSUSE:Factory/.kapman.new.5536 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kapman"

Sun Apr 28 20:03:00 2019 rev:84 rq:696212 version:19.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kapman/kapman.changes    2019-03-11 
13:43:20.425518799 +0100
+++ /work/SRC/openSUSE:Factory/.kapman.new.5536/kapman.changes  2019-04-28 
20:03:22.714792870 +0200
@@ -1,0 +2,32 @@
+Sat Apr 20 06:51:53 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.04.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/announce-applications-19.04.0.php
+- Changes since 19.03.90:
+  * No code changes since 19.03.90
+
+-------------------------------------------------------------------
+Tue Apr 09 20:54:39 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.03.90
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/announce-applications-19.04-rc.php
+- Changes since 19.03.80:
+  * No code changes since 19.03.80
+
+-------------------------------------------------------------------
+Wed Mar 27 06:40:57 UTC 2019 - lbeltr...@kde.org
+
+- Update to 19.03.80
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/announce-applications-19.04-beta.php
+- Changes since 18.12.3:
+  * Fix clazy warning
+  * Fix minor typos
+  * Fix minor typo
+
+-------------------------------------------------------------------

Old:
----
  kapman-18.12.3.tar.xz

New:
----
  kapman-19.04.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kapman.spec ++++++
--- /var/tmp/diff_new_pack.zQriT0/_old  2019-04-28 20:03:24.402791851 +0200
+++ /var/tmp/diff_new_pack.zQriT0/_new  2019-04-28 20:03:24.414791844 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kapman
-Version:        18.12.3
+Version:        19.04.0
 Release:        0
 Summary:        Pac-Man-like game for KDE
 License:        GPL-2.0-or-later

++++++ kapman-18.12.3.tar.xz -> kapman-19.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/.gitignore 
new/kapman-19.04.0/.gitignore
--- old/kapman-18.12.3/.gitignore       2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/.gitignore       2019-01-11 13:26:17.000000000 +0100
@@ -1,3 +1,4 @@
 .kdev4/
-build/
+/build*/
 *.kdev4
+CMakeLists.txt.user*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/characteritem.cpp 
new/kapman-19.04.0/characteritem.cpp
--- old/kapman-18.12.3/characteritem.cpp        2019-01-19 07:18:58.000000000 
+0100
+++ new/kapman-19.04.0/characteritem.cpp        2019-01-11 13:26:17.000000000 
+0100
@@ -19,7 +19,7 @@
 
 CharacterItem::CharacterItem(Character *p_model) : ElementItem(p_model)
 {
-    connect(p_model, SIGNAL(eaten()), this, SLOT(startBlinking()));
+    connect(p_model, &Character::eaten, this, &CharacterItem::startBlinking);
 }
 
 CharacterItem::~CharacterItem()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/game.cpp new/kapman-19.04.0/game.cpp
--- old/kapman-18.12.3/game.cpp 2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/game.cpp 2019-01-11 13:26:17.000000000 +0100
@@ -35,13 +35,13 @@
     m_points(0),
     m_level(1),
     m_nbEatenGhosts(0),
-    
m_soundGameOver(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/gameover.ogg"))),
-    m_soundGhost(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/ghost.ogg"))),
-    
m_soundGainLife(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/life.ogg"))),
-    
m_soundEnergizer(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/energizer.ogg"))),
-    m_soundBonus(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/bonus.ogg"))),
-    m_soundPill(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/pill.ogg"))),
-    m_soundLevelUp(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QLatin1String("sounds/kapman/levelup.ogg")))
+    
m_soundGameOver(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/gameover.ogg"))),
+    m_soundGhost(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/ghost.ogg"))),
+    
m_soundGainLife(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/life.ogg"))),
+    
m_soundEnergizer(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/energizer.ogg"))),
+    m_soundBonus(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/bonus.ogg"))),
+    m_soundPill(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/pill.ogg"))),
+    m_soundLevelUp(QStandardPaths::locate(QStandardPaths::GenericDataLocation, 
QStringLiteral("sounds/kapman/levelup.ogg")))
 {
     // Initialize the sound state
     setSoundsEnabled(Settings::sounds());
@@ -63,7 +63,7 @@
     // This also creates all the characters
     KapmanParser kapmanParser(this);
     // Set the XML file as input source for the parser
-    QFile mazeXmlFile(QStandardPaths::locate(QStandardPaths::AppDataLocation, 
QLatin1Literal("defaultmaze.xml")));
+    QFile mazeXmlFile(QStandardPaths::locate(QStandardPaths::AppDataLocation, 
QStringLiteral("defaultmaze.xml")));
     QXmlInputSource source(&mazeXmlFile);
     // Create the XML file reader
     QXmlSimpleReader reader;
@@ -91,8 +91,8 @@
     }
 
     for (int i = 0; i < m_ghosts.size(); ++i) {
-        connect(m_ghosts[i], SIGNAL(lifeLost()), this, SLOT(kapmanDeath()));
-        connect(m_ghosts[i], SIGNAL(ghostEaten(Ghost*)), this, 
SLOT(ghostDeath(Ghost*)));
+        connect(m_ghosts[i], &Ghost::lifeLost, this, &Game::kapmanDeath);
+        connect(m_ghosts[i], &Ghost::ghostEaten, this, &Game::ghostDeath);
         // Initialize the ghosts speed and the ghost speed increase 
considering the characters speed
         m_ghosts[i]->initSpeedInc();
     }
@@ -399,7 +399,7 @@
     m_kapman->die();
     // Make a 2 seconds pause while the kapman is blinking
     pause(true);
-    QTimer::singleShot(2500, this, SLOT(resumeAfterKapmanDeath()));
+    QTimer::singleShot(2500, this, &Game::resumeAfterKapmanDeath);
 }
 
 void Game::resumeAfterKapmanDeath()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/gamescene.cpp 
new/kapman-19.04.0/gamescene.cpp
--- old/kapman-18.12.3/gamescene.cpp    2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/gamescene.cpp    2019-01-11 13:26:17.000000000 +0100
@@ -25,15 +25,15 @@
 
 GameScene::GameScene(Game *p_game) : m_game(p_game), m_kapmanItem(0), 
m_mazeItem(0)
 {
-    connect(p_game, SIGNAL(levelStarted(bool)), SLOT(intro(bool)));
-    connect(p_game, SIGNAL(gameStarted()), this, SLOT(start()));
-    connect(p_game, SIGNAL(pauseChanged(bool,bool)), this, 
SLOT(setPaused(bool,bool)));
-    connect(p_game, SIGNAL(elementEaten(qreal,qreal)), this, 
SLOT(hideElement(qreal,qreal)));
-    connect(p_game, SIGNAL(bonusOn()), this, SLOT(displayBonus()));
-    connect(p_game, SIGNAL(bonusOff()), this, SLOT(hideBonus()));
+    connect(p_game, &Game::levelStarted, this, &GameScene::intro);
+    connect(p_game, &Game::gameStarted, this, &GameScene::start);
+    connect(p_game, &Game::pauseChanged, this, &GameScene::setPaused);
+    connect(p_game, &Game::elementEaten, this, &GameScene::hideElement);
+    connect(p_game, &Game::bonusOn, this, &GameScene::displayBonus);
+    connect(p_game, &Game::bonusOff, this, &GameScene::hideBonus);
 
     // Connection between Game and GameScene for the display of won points 
when a bonus or a ghost is eaten
-    connect(p_game, SIGNAL(pointsToDisplay(long,qreal,qreal)), this, 
SLOT(displayPoints(long,qreal,qreal)));
+    connect(p_game, &Game::pointsToDisplay, this, &GameScene::displayPoints);
 
     // Create the theme instance
     m_theme = new KGameTheme();
@@ -47,13 +47,13 @@
     // Give the maze the shared renderer to avoid loading the whole SVG file 
again
     m_mazeItem->setSharedRenderer(m_renderer);
     // Set the element Id to the right value
-    m_mazeItem->setElementId(QLatin1Literal("maze"));
+    m_mazeItem->setElementId(QStringLiteral("maze"));
     m_mazeItem->setZValue(-2);
 
     // Create the KapmanItem
     m_kapmanItem = new KapmanItem(p_game->getKapman());
     m_kapmanItem->setSharedRenderer(m_renderer);
-    m_kapmanItem->setElementId(QLatin1Literal("kapman_0"));
+    m_kapmanItem->setElementId(QStringLiteral("kapman_0"));
     // Corrects the position of the KapmanItem
     m_kapmanItem->update(p_game->getKapman()->getX(), 
p_game->getKapman()->getY());
     m_kapmanItem->setZValue(2);
@@ -90,7 +90,7 @@
     // Create the Bonus item
     m_bonusItem = new ElementItem(m_game->getBonus());
     m_bonusItem->setSharedRenderer(m_renderer);
-    m_bonusItem->setElementId(QLatin1Literal("bonus1"));
+    m_bonusItem->setElementId(QStringLiteral("bonus1"));
 
     // All elements are created, update theme properties
     updateSvgIds();
@@ -98,21 +98,21 @@
 
     // Create the introduction labels
     m_introLabel = new QGraphicsTextItem(i18n("GET READY!!!"));
-    m_introLabel->setFont(QFont(QLatin1Literal("Helvetica"), 25, QFont::Bold, 
false));
+    m_introLabel->setFont(QFont(QStringLiteral("Helvetica"), 25, QFont::Bold, 
false));
     m_introLabel->setDefaultTextColor(QColor(QLatin1Literal("#FFFF00")));
     m_introLabel->setZValue(4);
     m_introLabel2 = new QGraphicsTextItem(i18n("Press any arrow key to 
start"));
-    m_introLabel2->setFont(QFont(QLatin1Literal("Helvetica"), 15, QFont::Bold, 
false));
+    m_introLabel2->setFont(QFont(QStringLiteral("Helvetica"), 15, QFont::Bold, 
false));
     m_introLabel2->setDefaultTextColor(QColor(QLatin1Literal("#FFFF00")));
     m_introLabel2->setZValue(4);
     // Create the new level label
     m_newLevelLabel = new QGraphicsTextItem();
-    m_newLevelLabel->setFont(QFont(QLatin1Literal("Helvetica"), 35, 
QFont::Bold, false));
+    m_newLevelLabel->setFont(QFont(QStringLiteral("Helvetica"), 35, 
QFont::Bold, false));
     m_newLevelLabel->setDefaultTextColor(QColor(QLatin1Literal("#FFFF00")));
     m_newLevelLabel->setZValue(4);
     // Create the pause label
     m_pauseLabel = new QGraphicsTextItem(i18n("PAUSED"));
-    m_pauseLabel->setFont(QFont(QLatin1Literal("Helvetica"), 35, QFont::Bold, 
false));
+    m_pauseLabel->setFont(QFont(QStringLiteral("Helvetica"), 35, QFont::Bold, 
false));
     m_pauseLabel->setDefaultTextColor(QColor(QLatin1Literal("#FFFF00")));
     m_pauseLabel->setZValue(4);
 
@@ -186,10 +186,10 @@
     }
 
     // Set the element Id to the right value
-    m_mazeItem->setElementId(QLatin1Literal("maze"));
+    m_mazeItem->setElementId(QStringLiteral("maze"));
 
     // Create the KapmanItem
-    m_kapmanItem->setElementId(QLatin1Literal("kapman_0"));
+    m_kapmanItem->setElementId(QStringLiteral("kapman_0"));
     // Corrects the position of the KapmanItem
     m_kapmanItem->update(m_game->getKapman()->getX(), 
m_game->getKapman()->getY());
 
@@ -217,7 +217,7 @@
     }
 
     // Set the Rotation flag for KapmanItem
-    if (m_theme->themeProperty(QLatin1Literal("RotateKapman")) == 
QLatin1String("0")) {
+    if (m_theme->themeProperty(QStringLiteral("RotateKapman")) == 
QLatin1String("0")) {
         m_kapmanItem->setRotationFlag(false);
     } else {
         m_kapmanItem->setRotationFlag(true);
@@ -325,25 +325,25 @@
     if (!items().contains(m_bonusItem)) {
         switch (m_game->getLevel()) {
         case 1:
-            m_bonusItem->setElementId(QLatin1Literal("bonus1"));
+            m_bonusItem->setElementId(QStringLiteral("bonus1"));
             break;
         case 2:
-            m_bonusItem->setElementId(QLatin1Literal("bonus2"));
+            m_bonusItem->setElementId(QStringLiteral("bonus2"));
             break;
         case 3:
-            m_bonusItem->setElementId(QLatin1Literal("bonus3"));
+            m_bonusItem->setElementId(QStringLiteral("bonus3"));
             break;
         case 4:
-            m_bonusItem->setElementId(QLatin1Literal("bonus4"));
+            m_bonusItem->setElementId(QStringLiteral("bonus4"));
             break;
         case 5:
-            m_bonusItem->setElementId(QLatin1Literal("bonus5"));
+            m_bonusItem->setElementId(QStringLiteral("bonus5"));
             break;
         case 6:
-            m_bonusItem->setElementId(QLatin1Literal("bonus6"));
+            m_bonusItem->setElementId(QStringLiteral("bonus6"));
             break;
         default:
-            m_bonusItem->setElementId(QLatin1Literal("bonus7"));
+            m_bonusItem->setElementId(QStringLiteral("bonus7"));
             break;
         }
         m_bonusItem->update(m_game->getBonus()->getX(), 
m_game->getBonus()->getY());
@@ -361,7 +361,7 @@
 void GameScene::displayPoints(long p_wonPoints, qreal p_xPos, qreal p_yPos)
 {
     // Launch a singleShot timer
-    QTimer::singleShot(1000, this, SLOT(hidePoints()));
+    QTimer::singleShot(1000, this, &GameScene::hidePoints);
 
     // Add a label in the list of won points Labels
     m_wonPointsLabels.prepend(new 
QGraphicsTextItem(QString::number(p_wonPoints)));
@@ -372,7 +372,7 @@
 
     // Positioning and customization of the point label
     tempRef->setDefaultTextColor(QColor(QLatin1Literal("#FFFF00")));
-    tempRef->setFont(QFont(QLatin1Literal("Helvetica"), 15, QFont::Normal, 
false));
+    tempRef->setFont(QFont(QStringLiteral("Helvetica"), 15, QFont::Normal, 
false));
     tempRef->setPos(p_xPos - (tempRef->boundingRect().width() / 2), p_yPos - 
(tempRef->boundingRect().height() / 2));
     tempRef->setZValue(-1);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/gameview.cpp 
new/kapman-19.04.0/gameview.cpp
--- old/kapman-18.12.3/gameview.cpp     2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/gameview.cpp     2019-01-11 13:26:17.000000000 +0100
@@ -23,7 +23,7 @@
     setFrameStyle(QFrame::NoFrame);
     setFocusPolicy(Qt::StrongFocus);
     // Forward the key press events to the Game instance
-    connect(this, SIGNAL(keyPressed(QKeyEvent*)), p_game, 
SLOT(keyPressEvent(QKeyEvent*)));
+    connect(this, &GameView::keyPressed, p_game, &Game::keyPressEvent);
 }
 
 GameView::~GameView()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/ghost.h new/kapman-19.04.0/ghost.h
--- old/kapman-18.12.3/ghost.h  2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/ghost.h  2019-01-11 13:26:17.000000000 +0100
@@ -103,7 +103,7 @@
     void setState(Ghost::State p_state);
 
     /**
-     * Manages the collison with the Kapman.
+     * Manages the collision with the Kapman.
      * @param p_kapman the instance of Kapman which collides with the Ghost
      */
     void doActionOnCollision(Kapman *p_kapman) Q_DECL_OVERRIDE;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/ghostitem.cpp 
new/kapman-19.04.0/ghostitem.cpp
--- old/kapman-18.12.3/ghostitem.cpp    2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/ghostitem.cpp    2019-01-11 13:26:17.000000000 +0100
@@ -21,7 +21,7 @@
 
 GhostItem::GhostItem(Ghost *p_model) : CharacterItem(p_model)
 {
-    connect(p_model, SIGNAL(stateChanged()), this, SLOT(updateState()));
+    connect(p_model, &Ghost::stateChanged, this, &GhostItem::updateState);
 
     // Calculations for the duration of blinking stuff
     int blinkTimerDuration = (int)(500 * Game::s_durationRatio);
@@ -74,7 +74,7 @@
     switch (((Ghost *)getModel())->getState()) {
     case Ghost::PREY:
         updateBlinkTimersDuration();
-        setElementId(QLatin1Literal("scaredghost"));
+        setElementId(QStringLiteral("scaredghost"));
         m_startBlinkingTimer->start();
         // The ghosts are now weaker than the kapman, so they are under him
         setZValue(1);
@@ -85,7 +85,7 @@
         setZValue(3);
         break;
     case Ghost::EATEN:
-        setElementId(QLatin1Literal("ghosteye"));
+        setElementId(QStringLiteral("ghosteye"));
         // The ghosts are now weaker than the kapman, so they are under him
         setZValue(1);
         break;
@@ -96,9 +96,9 @@
 {
     CharacterItem::blink();
     if (m_nbBlinks % 2 == 0) {
-        setElementId(QLatin1Literal("scaredghost"));
+        setElementId(QStringLiteral("scaredghost"));
     } else {
-        setElementId(QLatin1Literal("whitescaredghost"));
+        setElementId(QStringLiteral("whitescaredghost"));
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/kapmanitem.cpp 
new/kapman-19.04.0/kapmanitem.cpp
--- old/kapman-18.12.3/kapmanitem.cpp   2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/kapmanitem.cpp   2019-01-11 13:26:17.000000000 +0100
@@ -31,9 +31,9 @@
 
 KapmanItem::KapmanItem(Kapman *p_model) : CharacterItem(p_model)
 {
-    connect(p_model, SIGNAL(directionChanged()), this, 
SLOT(updateDirection()));
-    connect(p_model, SIGNAL(gameUpdated()), this, SLOT(manageCollision()));
-    connect(p_model, SIGNAL(stopped()), this, SLOT(stopAnim()));
+    connect(p_model, &Kapman::directionChanged, this, 
&KapmanItem::updateDirection);
+    connect(p_model, &Kapman::gameUpdated, this, &KapmanItem::manageCollision);
+    connect(p_model, &Kapman::stopped, this, &KapmanItem::stopAnim);
 
     // A timeLine for the Kapman animation
     m_animationTimer = new QTimeLine();
@@ -146,7 +146,7 @@
 
 void KapmanItem::stopAnim()
 {
-    setElementId(QLatin1Literal("kapman_0"));
+    setElementId(QStringLiteral("kapman_0"));
     if (m_animationTimer->state() == QTimeLine::Running) {
         m_animationTimer->stop();
     }
@@ -154,13 +154,13 @@
 
 void KapmanItem::setFrame(const int p_frame)
 {
-    setElementId(QString::fromLatin1("kapman_%1").arg(p_frame));
+    setElementId(QStringLiteral("kapman_%1").arg(p_frame));
 }
 
 void KapmanItem::startBlinking()
 {
     stopAnim();
-    setElementId(QLatin1Literal("kapman_0"));
+    setElementId(QStringLiteral("kapman_0"));
     CharacterItem::startBlinking();
 }
 
@@ -168,9 +168,9 @@
 {
     CharacterItem::blink();
     if (m_nbBlinks % 2 == 0) {
-        setElementId(QLatin1Literal("kapman_0"));
+        setElementId(QStringLiteral("kapman_0"));
     } else {
-        setElementId(QLatin1Literal("kapman_blink"));
+        setElementId(QStringLiteral("kapman_blink"));
     }
     // Make the kapman blink 2 times (4 ticks)
     if (m_nbBlinks == 4) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/kapmanmainwindow.cpp 
new/kapman-19.04.0/kapmanmainwindow.cpp
--- old/kapman-18.12.3/kapmanmainwindow.cpp     2019-01-19 07:18:58.000000000 
+0100
+++ new/kapman-19.04.0/kapmanmainwindow.cpp     2019-01-11 13:26:17.000000000 
+0100
@@ -49,10 +49,10 @@
     KStandardGameAction::quit(this, SLOT(close()), actionCollection());
     KToggleAction *soundAction = new KToggleAction(i18n("&Play sounds"), this);
     soundAction->setChecked(Settings::sounds());
-    actionCollection()->addAction(QLatin1String("sounds"), soundAction);
+    actionCollection()->addAction(QStringLiteral("sounds"), soundAction);
     connect(soundAction, &KToggleAction::triggered, this, 
&KapmanMainWindow::setSoundsEnabled);
     QAction *levelAction = new QAction(i18n("&Change level"), this);
-    actionCollection()->addAction(QLatin1String("level"), levelAction);
+    actionCollection()->addAction(QStringLiteral("level"), levelAction);
     connect(levelAction, &QAction::triggered, this, 
&KapmanMainWindow::changeLevel);
     // Add a statusbar to show level,score,lives information
     m_statusBar = statusBar();
@@ -69,7 +69,7 @@
         KgDifficultyLevel::Medium //default
     );
     KgDifficultyGUI::init(this);
-    connect(Kg::difficulty(), SIGNAL(currentLevelChanged(const 
KgDifficultyLevel*)), SLOT(initGame()));
+    connect(Kg::difficulty(), &KgDifficulty::currentLevelChanged, this, 
&KapmanMainWindow::initGame);
     // Setup the window
     setupGUI();
 
@@ -88,7 +88,7 @@
     // Create a new Game instance
     delete m_game;
     m_game = new Game();
-    connect(m_game, SIGNAL(gameOver(bool)), this, SLOT(newGame(bool)));     // 
TODO Remove the useless bool parameter from gameOver()
+    connect(m_game, &Game::gameOver, this, &KapmanMainWindow::newGame);     // 
TODO Remove the useless bool parameter from gameOver()
     connect(m_game, &Game::levelChanged, this, 
&KapmanMainWindow::displayLevel);
     connect(m_game, &Game::scoreChanged, this, 
&KapmanMainWindow::displayScore);
     connect(m_game, &Game::livesChanged, this, 
&KapmanMainWindow::displayLives);
@@ -175,11 +175,11 @@
 
 void KapmanMainWindow::showSettings()
 {
-    if (KConfigDialog::showDialog(QLatin1Literal("settings"))) {
+    if (KConfigDialog::showDialog(QStringLiteral("settings"))) {
         return;
     }
-    KConfigDialog *settingsDialog = new KConfigDialog(this, 
QLatin1Literal("settings"), Settings::self());
-    settingsDialog->addPage(new KGameThemeSelector(settingsDialog, 
Settings::self(), KGameThemeSelector::NewStuffDisableDownload), i18n("Theme"), 
QLatin1Literal("kapman"));
+    KConfigDialog *settingsDialog = new KConfigDialog(this, 
QStringLiteral("settings"), Settings::self());
+    settingsDialog->addPage(new KGameThemeSelector(settingsDialog, 
Settings::self(), KGameThemeSelector::NewStuffDisableDownload), i18n("Theme"), 
QStringLiteral("kapman"));
     settingsDialog->setFaceType(KConfigDialog::Plain); //only one page -> no 
page selection necessary
     connect(settingsDialog, &KConfigDialog::settingsChanged, this, 
&KapmanMainWindow::loadSettings);
     settingsDialog->show();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/kapmanparser.cpp 
new/kapman-19.04.0/kapmanparser.cpp
--- old/kapman-18.12.3/kapmanparser.cpp 2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/kapmanparser.cpp 2019-01-11 13:26:17.000000000 +0100
@@ -140,11 +140,11 @@
                 break;
             case '.': m_game->getMaze()->setCellType(m_counterRows, i, 
Cell::CORRIDOR);
                 m_game->getMaze()->setCellElement(m_counterRows, i,
-                                                  new Pill(m_counterRows, i, 
m_game->getMaze(), QLatin1String("pill")));
+                                                  new Pill(m_counterRows, i, 
m_game->getMaze(), QStringLiteral("pill")));
                 break;
             case 'o': m_game->getMaze()->setCellType(m_counterRows, i, 
Cell::CORRIDOR);
                 m_game->getMaze()->setCellElement(m_counterRows, i,
-                                                  new Energizer(m_counterRows, 
i, m_game->getMaze(), QLatin1String("energizer")));
+                                                  new Energizer(m_counterRows, 
i, m_game->getMaze(), QStringLiteral("energizer")));
                 break;
             case 'x': m_game->getMaze()->setCellType(m_counterRows, i, 
Cell::GHOSTCAMP);
                 break;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/main.cpp new/kapman-19.04.0/main.cpp
--- old/kapman-18.12.3/main.cpp 2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/main.cpp 2019-01-11 13:26:17.000000000 +0100
@@ -35,7 +35,7 @@
     migrate.migrate();
     KLocalizedString::setApplicationDomain("kapman");
     // About Kapman
-    KAboutData about(QStringLiteral("kapman"), i18n("Kapman"), 
QLatin1String("1.1.0"),
+    KAboutData about(QStringLiteral("kapman"), i18n("Kapman"), 
QStringLiteral("1.1.0"),
                      i18n("Kapman: Go through the levels escaping ghosts!"),
                      KAboutLicense::GPL, i18n("Copyright (c) 2007-2008 The 
KapTeam"));
     // Alphabetical order of Developers of Kapman
@@ -56,7 +56,7 @@
     parser.process(app);
     about.processCommandLine(&parser);
     KDBusService service;
-    // Set the application incon
+    // Set the application icon
     app.setWindowIcon(QIcon::fromTheme(QStringLiteral("kapman")));
     // Create the main window
     KapmanMainWindow *window = new KapmanMainWindow();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/maze.h new/kapman-19.04.0/maze.h
--- old/kapman-18.12.3/maze.h   2019-01-19 07:18:58.000000000 +0100
+++ new/kapman-19.04.0/maze.h   2019-01-11 13:26:17.000000000 +0100
@@ -167,8 +167,8 @@
     int getTotalNbElem() const;
 
     /**
-     * Gets the cell on witch the ghosts resurects
-     * @return the cell on witch the ghosts resurects
+     * Gets the cell on witch the ghosts resurrects
+     * @return the cell on witch the ghosts resurrects
      */
     QPoint getResurrectionCell() const;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ar/kapman.po 
new/kapman-19.04.0/po/ar/kapman.po
--- old/kapman-18.12.3/po/ar/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/ar/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2009-01-31 11:37+0400\n"
 "Last-Translator: zayed <zayed.alsa...@gmail.com>\n"
 "Language-Team: Arabic <linuxac-kde-arabic-t...@googlegroups.com>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/bg/kapman.po 
new/kapman-19.04.0/po/bg/kapman.po
--- old/kapman-18.12.3/po/bg/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/bg/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2009-05-24 17:03+0200\n"
 "Last-Translator: Petar Toushkov <pt.launch...@gmail.com>\n"
 "Language-Team: Bulgarian <d...@fsa-bg.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/bs/kapman.po 
new/kapman-19.04.0/po/bs/kapman.po
--- old/kapman-18.12.3/po/bs/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/bs/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kdegames\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2014-11-04 08:53+0000\n"
 "Last-Translator: Emina Huskic <ehusk...@etf.unsa.ba>\n"
 "Language-Team: Bosnian <b...@li.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ca/kapman.po 
new/kapman-19.04.0/po/ca/kapman.po
--- old/kapman-18.12.3/po/ca/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/ca/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-07-13 12:59+0200\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ca@valencia/kapman.po 
new/kapman-19.04.0/po/ca@valencia/kapman.po
--- old/kapman-18.12.3/po/ca@valencia/kapman.po 2019-03-05 01:14:15.000000000 
+0100
+++ new/kapman-19.04.0/po/ca@valencia/kapman.po 2019-04-12 02:08:49.000000000 
+0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-07-13 12:59+0200\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
@@ -211,3 +211,6 @@
 #, kde-format
 msgid "Port to KgSound framework"
 msgstr "Adaptació al marc de treball KgSound."
+
+#~ msgid "Game difficulty level."
+#~ msgstr "Nivell de dificultat del joc."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/cs/kapman.po 
new/kapman-19.04.0/po/cs/kapman.po
--- old/kapman-18.12.3/po/cs/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/cs/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-02-06 11:35+0100\n"
 "Last-Translator: Tomáš Chvátal <tomas.chva...@gmail.com>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/da/kapman.po 
new/kapman-19.04.0/po/da/kapman.po
--- old/kapman-18.12.3/po/da/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/da/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-06-05 14:28+0200\n"
 "Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
 "Language-Team: Danish <da...@dansk-gruppen.dk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/de/kapman.po 
new/kapman-19.04.0/po/de/kapman.po
--- old/kapman-18.12.3/po/de/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/de/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-04-23 08:36+0200\n"
 "Last-Translator: Burkhard Lück <lu...@hube-lueck.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/el/kapman.po 
new/kapman-19.04.0/po/el/kapman.po
--- old/kapman-18.12.3/po/el/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/el/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2014-03-15 16:04+0200\n"
 "Last-Translator: Dimitris Kardarakos <dimk...@gmail.com>\n"
 "Language-Team: Greek <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/en_GB/kapman.po 
new/kapman-19.04.0/po/en_GB/kapman.po
--- old/kapman-18.12.3/po/en_GB/kapman.po       2019-03-05 01:14:15.000000000 
+0100
+++ new/kapman-19.04.0/po/en_GB/kapman.po       2019-04-12 02:08:49.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2014-06-29 12:05+0100\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-l10n-en...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/eo/kapman.po 
new/kapman-19.04.0/po/eo/kapman.po
--- old/kapman-18.12.3/po/eo/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/eo/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2009-11-14 16:05+0100\n"
 "Last-Translator: Emmanuelle Richard <emmanue...@esperanto-jeunes.org>\n"
 "Language-Team: esperanto <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/es/kapman.po 
new/kapman-19.04.0/po/es/kapman.po
--- old/kapman-18.12.3/po/es/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/es/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-03-30 12:35+0200\n"
 "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/et/kapman.po 
new/kapman-19.04.0/po/et/kapman.po
--- old/kapman-18.12.3/po/et/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/et/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2016-01-13 14:29+0200\n"
 "Last-Translator: Marek Laane <qiila...@gmail.com>\n"
 "Language-Team: Estonian <kde...@linux.ee>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/eu/kapman.po 
new/kapman-19.04.0/po/eu/kapman.po
--- old/kapman-18.12.3/po/eu/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/eu/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2010-08-25 00:15+0200\n"
 "Last-Translator: Ignigo Salvador Azurmendi <xa...@euskalnet.net>\n"
 "Language-Team: Basque <itzulp...@euskalgnu.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/fi/kapman.po 
new/kapman-19.04.0/po/fi/kapman.po
--- old/kapman-18.12.3/po/fi/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/fi/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2015-06-21 13:00+0200\n"
 "Last-Translator: Lasse Liehu <lasse.li...@gmail.com>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/fr/kapman.po 
new/kapman-19.04.0/po/fr/kapman.po
--- old/kapman-18.12.3/po/fr/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/fr/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-07-08 16:58+0200\n"
 "Last-Translator: xavier <xavier.besn...@neuf.fr>\n"
 "Language-Team: French <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ga/kapman.po 
new/kapman-19.04.0/po/ga/kapman.po
--- old/kapman-18.12.3/po/ga/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/ga/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman.po\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2008-08-14 09:40-0500\n"
 "Last-Translator: Kevin Scannell <ksca...@gmail.com>\n"
 "Language-Team: Irish <gaeilge-gnuli...@lists.sourceforge.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/gl/kapman.po 
new/kapman-19.04.0/po/gl/kapman.po
--- old/kapman-18.12.3/po/gl/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/gl/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -11,8 +11,8 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
-"PO-Revision-Date: 2019-02-17 11:36+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
+"PO-Revision-Date: 2019-02-17 11:38+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <kde-i18n-...@kde.org>\n"
 "Language: gl\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/hi/kapman.po 
new/kapman-19.04.0/po/hi/kapman.po
--- old/kapman-18.12.3/po/hi/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/hi/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2016-07-19 22:13+0530\n"
 "Last-Translator: G Karunakar <karuna...@indlinux.org>\n"
 "Language-Team: Hindi <indlinux-hi...@lists.sourceforge.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/hr/kapman.po 
new/kapman-19.04.0/po/hr/kapman.po
--- old/kapman-18.12.3/po/hr/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/hr/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2010-01-24 17:07+0100\n"
 "Last-Translator: Andrej Dundovic <adund...@gmail.com>\n"
 "Language-Team: Croatian <kde-croatia-l...@lists.sourceforge.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/hu/kapman.po 
new/kapman-19.04.0/po/hu/kapman.po
--- old/kapman-18.12.3/po/hu/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/hu/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4.3\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-06-12 20:11+0200\n"
 "Last-Translator: Balázs Úr <urbal...@gmail.com>\n"
 "Language-Team: Hungarian <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/is/kapman.po 
new/kapman-19.04.0/po/is/kapman.po
--- old/kapman-18.12.3/po/is/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/is/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2015-01-29 09:07+0000\n"
 "Last-Translator: Sveinn í Felli <s...@fellsnet.is>\n"
 "Language-Team: Icelandic <kde-...@molar.is>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/it/kapman.po 
new/kapman-19.04.0/po/it/kapman.po
--- old/kapman-18.12.3/po/it/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/it/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-07-23 23:48+0200\n"
 "Last-Translator: Andrea Celli <andrea.ce...@libero.it>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ja/kapman.po 
new/kapman-19.04.0/po/ja/kapman.po
--- old/kapman-18.12.3/po/ja/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/ja/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2008-12-24 01:14+0900\n"
 "Last-Translator: Yukiko Bando <yba...@k6.dion.ne.jp>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/kk/kapman.po 
new/kapman-19.04.0/po/kk/kapman.po
--- old/kapman-18.12.3/po/kk/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/kk/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-07-30 08:20+0600\n"
 "Last-Translator: Sairan Kikkarin\n"
 "Language-Team: Kazakh <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/km/kapman.po 
new/kapman-19.04.0/po/km/kapman.po
--- old/kapman-18.12.3/po/km/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/km/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2009-10-27 07:46+0700\n"
 "Last-Translator: Morn Met\n"
 "Language-Team: Khmer <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ko/kapman.po 
new/kapman-19.04.0/po/ko/kapman.po
--- old/kapman-18.12.3/po/ko/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/ko/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2015-01-17 23:52+0900\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <k...@peremen.name>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/lt/kapman.po 
new/kapman-19.04.0/po/lt/kapman.po
--- old/kapman-18.12.3/po/lt/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/lt/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2015-12-29 21:35+0200\n"
 "Last-Translator: Mindaugas Baranauskas <opensuse.lietuviu.ka...@gmail.com>\n"
 "Language-Team: lt <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/lv/kapman.po 
new/kapman-19.04.0/po/lv/kapman.po
--- old/kapman-18.12.3/po/lv/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/lv/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-06-29 20:15+0300\n"
 "Last-Translator: Einars Sprugis <eina...@gmail.com>\n"
 "Language-Team: Latvian <loc...@laka.lv>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/mr/kapman.po 
new/kapman-19.04.0/po/mr/kapman.po
--- old/kapman-18.12.3/po/mr/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/mr/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-03-22 14:59+0530\n"
 "Last-Translator: Chetan Khona <che...@kompkin.com>\n"
 "Language-Team: Marathi <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/nb/kapman.po 
new/kapman-19.04.0/po/nb/kapman.po
--- old/kapman-18.12.3/po/nb/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/nb/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: KDE 4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-12-11 20:05+0100\n"
 "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/nds/kapman.po 
new/kapman-19.04.0/po/nds/kapman.po
--- old/kapman-18.12.3/po/nds/kapman.po 2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/nds/kapman.po 2019-04-12 02:08:49.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2014-05-13 19:11+0200\n"
 "Last-Translator: Sönke Dibbern <s_dibb...@web.de>\n"
 "Language-Team: Low Saxon <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/nl/kapman.po 
new/kapman-19.04.0/po/nl/kapman.po
--- old/kapman-18.12.3/po/nl/kapman.po  2019-03-05 01:14:15.000000000 +0100
+++ new/kapman-19.04.0/po/nl/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-03-30 00:44+0200\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/nn/kapman.po 
new/kapman-19.04.0/po/nn/kapman.po
--- old/kapman-18.12.3/po/nn/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/nn/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2016-01-07 20:23+0100\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/pl/kapman.po 
new/kapman-19.04.0/po/pl/kapman.po
--- old/kapman-18.12.3/po/pl/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/pl/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: kapman2\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2014-12-30 09:47+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/pt/kapman.po 
new/kapman-19.04.0/po/pt/kapman.po
--- old/kapman-18.12.3/po/pt/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/pt/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-03-28 11:09+0100\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/pt_BR/kapman.po 
new/kapman-19.04.0/po/pt_BR/kapman.po
--- old/kapman-18.12.3/po/pt_BR/kapman.po       2019-03-05 01:14:16.000000000 
+0100
+++ new/kapman-19.04.0/po/pt_BR/kapman.po       2019-04-12 02:08:49.000000000 
+0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-07-12 09:39-0300\n"
 "Last-Translator: André Marcelo Alvarenga <alvare...@kde.org>\n"
 "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ro/kapman.po 
new/kapman-19.04.0/po/ro/kapman.po
--- old/kapman-18.12.3/po/ro/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/ro/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2009-08-09 07:59+0300\n"
 "Last-Translator: Sergiu Bivol <ser...@ase.md>\n"
 "Language-Team: Română <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ru/kapman.po 
new/kapman-19.04.0/po/ru/kapman.po
--- old/kapman-18.12.3/po/ru/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/ru/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2015-03-15 22:08+0300\n"
 "Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/sk/kapman.po 
new/kapman-19.04.0/po/sk/kapman.po
--- old/kapman-18.12.3/po/sk/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/sk/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-08-07 15:54+0200\n"
 "Last-Translator: Roman Paholík <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/sl/kapman.po 
new/kapman-19.04.0/po/sl/kapman.po
--- old/kapman-18.12.3/po/sl/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/sl/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-04-29 10:16+0200\n"
 "Last-Translator: Andrej Mernik <andr...@ubuntu.si>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/sr/kapman.po 
new/kapman-19.04.0/po/sr/kapman.po
--- old/kapman-18.12.3/po/sr/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/sr/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2016-02-27 21:47+0100\n"
 "Last-Translator: Chusslove Illich <caslav.i...@gmx.net>\n"
 "Language-Team: Serbian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/sv/kapman.po 
new/kapman-19.04.0/po/sv/kapman.po
--- old/kapman-18.12.3/po/sv/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/sv/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2009-05-17 17:56+0200\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <s...@li.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/tr/kapman.po 
new/kapman-19.04.0/po/tr/kapman.po
--- old/kapman-18.12.3/po/tr/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/tr/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kdegames-kde4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2014-06-08 13:55+0000\n"
 "Last-Translator: Volkan Gezer <volkange...@gmail.com>\n"
 "Language-Team: Turkish (http://www.transifex.com/projects/p/kdegames-k-tr/";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/ug/kapman.po 
new/kapman-19.04.0/po/ug/kapman.po
--- old/kapman-18.12.3/po/ug/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/ug/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2013-09-08 07:05+0900\n"
 "Last-Translator: Gheyret Kenji <ghey...@gmail.com>\n"
 "Language-Team: Uyghur Computer Science Association <u...@yahoogroups.com>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/uk/kapman.po 
new/kapman-19.04.0/po/uk/kapman.po
--- old/kapman-18.12.3/po/uk/kapman.po  2019-03-05 01:14:16.000000000 +0100
+++ new/kapman-19.04.0/po/uk/kapman.po  2019-04-12 02:08:49.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-03-28 07:26+0300\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/zh_CN/kapman.po 
new/kapman-19.04.0/po/zh_CN/kapman.po
--- old/kapman-18.12.3/po/zh_CN/kapman.po       2019-03-05 01:14:16.000000000 
+0100
+++ new/kapman-19.04.0/po/zh_CN/kapman.po       2019-04-12 02:08:49.000000000 
+0200
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
-"PO-Revision-Date: 2019-02-20 23:30\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
+"PO-Revision-Date: 2019-04-09 18:54\n"
 "Last-Translator: guoyunhe <i...@guoyunhe.me>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapman-18.12.3/po/zh_TW/kapman.po 
new/kapman-19.04.0/po/zh_TW/kapman.po
--- old/kapman-18.12.3/po/zh_TW/kapman.po       2019-03-05 01:14:16.000000000 
+0100
+++ new/kapman-19.04.0/po/zh_TW/kapman.po       2019-04-12 02:08:49.000000000 
+0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kapman\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2018-11-12 06:51+0100\n"
+"POT-Creation-Date: 2018-11-12 03:55+0100\n"
 "PO-Revision-Date: 2012-04-18 18:14+0800\n"
 "Last-Translator: Franklin Weng <frank...@goodhorse.idv.tw>\n"
 "Language-Team: Chinese Traditional <zh-l...@linux.org.tw>\n"


Reply via email to