Hello community, here is the log from the commit of package kapman for openSUSE:Factory checked in at 2020-12-17 17:00:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kapman (Old) and /work/SRC/openSUSE:Factory/.kapman.new.5145 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kapman" Thu Dec 17 17:00:06 2020 rev:104 rq:855131 version:20.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kapman/kapman.changes 2020-11-10 13:47:45.167496498 +0100 +++ /work/SRC/openSUSE:Factory/.kapman.new.5145/kapman.changes 2020-12-17 17:02:18.789538971 +0100 @@ -1,0 +2,26 @@ +Sat Dec 5 23:15:46 UTC 2020 - Luca Beltrame <lbeltr...@kde.org> + +- Update to 20.12.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/releases/2020-12-apps-update +- No code change since 20.11.90 + +------------------------------------------------------------------- +Fri Nov 27 15:16:02 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 20.11.90 + * New feature release +- No code change since 20.11.80 + +------------------------------------------------------------------- +Sat Nov 14 00:00:55 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 20.11.80 + * New feature release +- Changes since 20.08.3: + * If include is define in .h remove it if it's defined in .cpp too (scripted) + * Make it compile without deprecated method + * We use QRandomGenerator => we need qt5.10 min + +------------------------------------------------------------------- Old: ---- kapman-20.08.3.tar.xz kapman-20.08.3.tar.xz.sig New: ---- kapman-20.12.0.tar.xz kapman-20.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kapman.spec ++++++ --- /var/tmp/diff_new_pack.q6tEG5/_old 2020-12-17 17:02:19.661539907 +0100 +++ /var/tmp/diff_new_pack.q6tEG5/_new 2020-12-17 17:02:19.665539911 +0100 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kapman -Version: 20.08.3 +Version: 20.12.0 Release: 0 Summary: Pac-Man-like game for KDE License: GPL-2.0-or-later ++++++ kapman-20.08.3.tar.xz -> kapman-20.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/CMakeLists.txt new/kapman-20.12.0/CMakeLists.txt --- old/kapman-20.08.3/CMakeLists.txt 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/CMakeLists.txt 2020-12-02 23:19:27.000000000 +0100 @@ -2,17 +2,17 @@ # KDE Application Version, managed by release script set(RELEASE_SERVICE_VERSION_MAJOR "20") -set(RELEASE_SERVICE_VERSION_MINOR "08") -set(RELEASE_SERVICE_VERSION_MICRO "3") +set(RELEASE_SERVICE_VERSION_MINOR "12") +set(RELEASE_SERVICE_VERSION_MICRO "0") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kapman VERSION ${RELEASE_SERVICE_VERSION}) -set (QT_MIN_VERSION "5.7.0") -set (KF5_MIN_VERSION "5.30.0") +set (QT_MIN_VERSION "5.10.0") +set (KF5_MIN_VERSION "5.46.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) -set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ) find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Svg) find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS @@ -38,13 +38,14 @@ include(ECMAddAppIcon) add_definitions( - -DQT_USE_FAST_CONCATENATION - -DQT_USE_FAST_OPERATOR_PLUS -DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_URL_CAST_FROM_STRING -DQT_USE_QSTRINGBUILDER + -DQT_NO_SIGNALS_SLOTS_KEYWORDS + -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT + -DQT_STRICT_ITERATORS ) if (${KF5Config_VERSION} STRGREATER "5.56.0") add_definitions(-DQT_NO_FOREACH) @@ -112,8 +113,7 @@ install(FILES ${themes} DESTINATION ${KDE_INSTALL_DATADIR}/kapman/themes) install(FILES ${sounds_ogg} DESTINATION ${KDE_INSTALL_SOUNDDIR}/kapman) -feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) ki18n_install(po) -if (KF5DocTools_FOUND) - kdoctools_install(po) -endif() +kdoctools_install(po) + +feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/bonus.h new/kapman-20.12.0/bonus.h --- old/kapman-20.08.3/bonus.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/bonus.h 2020-12-02 23:19:27.000000000 +0100 @@ -43,7 +43,7 @@ /** * Deletes the Bonus instance. */ - ~Bonus(); + ~Bonus() override; /** * Computes an action on a collision with the Kapman. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/cell.cpp new/kapman-20.12.0/cell.cpp --- old/kapman-20.08.3/cell.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/cell.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -20,13 +20,13 @@ const qreal Cell::SIZE = 20.0; -Cell::Cell() : m_type(Cell::WALL), m_element(NULL), m_cost(0), m_parent(NULL) +Cell::Cell() : m_type(Cell::WALL), m_element(nullptr), m_cost(0), m_parent(nullptr) { } Cell::~Cell() { - m_element = NULL; + m_element = nullptr; delete m_element; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/character.h new/kapman-20.12.0/character.h --- old/kapman-20.08.3/character.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/character.h 2020-12-02 23:19:27.000000000 +0100 @@ -82,7 +82,7 @@ /** * Deletes the Character instance. */ - ~Character(); + ~Character() override; /** * Makes the Character go up. @@ -203,7 +203,7 @@ */ void moveOnCenter(); -signals: +Q_SIGNALS: /** * Emitted when the character is eaten. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/characteritem.h new/kapman-20.12.0/characteritem.h --- old/kapman-20.08.3/characteritem.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/characteritem.h 2020-12-02 23:19:27.000000000 +0100 @@ -50,7 +50,7 @@ /** * Deletes the CharacterItem instance. */ - ~CharacterItem(); + ~CharacterItem() override; /** * Overrides the default shape function to make it a small circle @@ -59,7 +59,7 @@ */ QPainterPath shape() const override; -public slots: +public Q_SLOTS: /** * Updates the CharacterItem coordinates. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/element.h new/kapman-20.12.0/element.h --- old/kapman-20.08.3/element.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/element.h 2020-12-02 23:19:27.000000000 +0100 @@ -82,7 +82,7 @@ /** * Deletes the Element instance. */ - ~Element(); + ~Element() override; /** * Computes an action on a collision with the Kapman. @@ -144,7 +144,7 @@ */ void initCoordinate(); -signals: +Q_SIGNALS: /** * Emitted on Element move. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/elementitem.h new/kapman-20.12.0/elementitem.h --- old/kapman-20.08.3/elementitem.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/elementitem.h 2020-12-02 23:19:27.000000000 +0100 @@ -50,7 +50,7 @@ /** * Deletes the ElementItem instance. */ - ~ElementItem(); + ~ElementItem() override; /** * Gets the Element model. @@ -63,7 +63,7 @@ */ QPainterPath shape() const override; -public slots: +public Q_SLOTS: /** * Updates the ElementItem coordinates. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/energizer.h new/kapman-20.12.0/energizer.h --- old/kapman-20.08.3/energizer.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/energizer.h 2020-12-02 23:19:27.000000000 +0100 @@ -49,7 +49,7 @@ /** * Deletes the Energizer instance. */ - ~Energizer(); + ~Energizer() override; /** * Gets the type of the Energyzer. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/game.cpp new/kapman-20.12.0/game.cpp --- old/kapman-20.08.3/game.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/game.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -285,7 +285,7 @@ // Initialize the Pills & Energizers coordinates for (int i = 0; i < m_maze->getNbRows(); ++i) { for (int j = 0; j < m_maze->getNbColumns(); ++j) { - if (m_maze->getCell(i, j).getElement() != NULL) { + if (m_maze->getCell(i, j).getElement() != nullptr) { m_maze->getCell(i, j).getElement()->setX(Cell::SIZE * (j + 0.5)); m_maze->getCell(i, j).getElement()->setY(Cell::SIZE * (i + 0.5)); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/game.h new/kapman-20.12.0/game.h --- old/kapman-20.08.3/game.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/game.h 2020-12-02 23:19:27.000000000 +0100 @@ -121,7 +121,7 @@ /** * Deletes the Game instance. */ - ~Game(); + ~Game() override; /** * Starts the Game. @@ -251,7 +251,7 @@ */ void setTimersDuration(); -public slots: +public Q_SLOTS: /** * Manages the key press events. @@ -264,7 +264,7 @@ */ void resumeAfterKapmanDeath(); -private slots: +private Q_SLOTS: /** * Updates the Game data. @@ -302,7 +302,7 @@ */ void endPreyState(); -signals: +Q_SIGNALS: /** * Emitted when the Game is started. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/gamescene.cpp new/kapman-20.12.0/gamescene.cpp --- old/kapman-20.08.3/gamescene.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/gamescene.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -23,7 +23,7 @@ #include <KLocalizedString> -GameScene::GameScene(Game *p_game) : m_game(p_game), m_kapmanItem(0), m_mazeItem(0) +GameScene::GameScene(Game *p_game) : m_game(p_game), m_kapmanItem(nullptr), m_mazeItem(nullptr) { connect(p_game, &Game::levelStarted, this, &GameScene::intro); connect(p_game, &Game::gameStarted, this, &GameScene::start); @@ -75,7 +75,7 @@ for (int i = 0; i < m_game->getMaze()->getNbRows(); ++i) { m_elementItems[i] = new ElementItem*[m_game->getMaze()->getNbColumns()]; for (int j = 0; j < m_game->getMaze()->getNbColumns(); ++j) { - if (m_game->getMaze()->getCell(i, j).getElement() != NULL) { + if (m_game->getMaze()->getCell(i, j).getElement() != nullptr) { // Create the element and set the image ElementItem *element = new ElementItem(m_game->getMaze()->getCell(i, j).getElement()); element->setSharedRenderer(m_renderer); @@ -83,7 +83,7 @@ element->update(m_game->getMaze()->getCell(i, j).getElement()->getX(), m_game->getMaze()->getCell(i, j).getElement()->getY()); m_elementItems[i][j] = element; } else { - m_elementItems[i][j] = NULL; + m_elementItems[i][j] = nullptr; } } } @@ -137,7 +137,7 @@ } for (int i = 0; i < m_game->getMaze()->getNbRows(); ++i) { for (int j = 0; j < m_game->getMaze()->getNbColumns(); ++j) { - if (m_elementItems[i][j] != NULL) { + if (m_elementItems[i][j] != nullptr) { delete m_elementItems[i][j]; } } @@ -200,7 +200,7 @@ } for (int i = 0; i < m_game->getMaze()->getNbRows(); ++i) { for (int j = 0; j < m_game->getMaze()->getNbColumns(); ++j) { - if (m_elementItems[i][j] != NULL) { + if (m_elementItems[i][j] != nullptr) { ElementItem *element = m_elementItems[i][j]; element->setElementId(m_game->getMaze()->getCell(i, j).getElement()->getImageId()); element->update(m_game->getMaze()->getCell(i, j).getElement()->getX(), m_game->getMaze()->getCell(i, j).getElement()->getY()); @@ -231,7 +231,7 @@ // Set each Pill and Energizer item to its original coordinates for (int i = 0; i < m_game->getMaze()->getNbRows(); ++i) { for (int j = 0; j < m_game->getMaze()->getNbColumns(); ++j) { - if (m_elementItems[i][j] != NULL) { + if (m_elementItems[i][j] != nullptr) { if (!items().contains(m_elementItems[i][j])) { addItem(m_elementItems[i][j]); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/gamescene.h new/kapman-20.12.0/gamescene.h --- old/kapman-20.08.3/gamescene.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/gamescene.h 2020-12-02 23:19:27.000000000 +0100 @@ -86,7 +86,7 @@ /** * Deletes the Game instance. */ - ~GameScene(); + ~GameScene() override; /** * @return the Game instance @@ -98,7 +98,7 @@ */ void loadTheme(); -private slots: +private Q_SLOTS: /** * Updates the elements to be drawn on Game introduction. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/gameview.h new/kapman-20.12.0/gameview.h --- old/kapman-20.08.3/gameview.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/gameview.h 2020-12-02 23:19:27.000000000 +0100 @@ -43,7 +43,7 @@ /** * Deletes the GameView instance. */ - ~GameView(); + ~GameView() override; /** * Resizes the items when the view is resized. @@ -65,7 +65,7 @@ */ void focusOutEvent(QFocusEvent *p_event) override; -signals: +Q_SIGNALS: /** * Emitted on key press event for the Game instance diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/ghost.h new/kapman-20.12.0/ghost.h --- old/kapman-20.08.3/ghost.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/ghost.h 2020-12-02 23:19:27.000000000 +0100 @@ -70,7 +70,7 @@ /** * Deletes the Ghost instance. */ - ~Ghost(); + ~Ghost() override; /** * Updates the Ghost move. @@ -135,7 +135,7 @@ */ void goLeft() override; -signals: +Q_SIGNALS: /** * Emitted when the Kapman has lost a life. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/ghostitem.h new/kapman-20.12.0/ghostitem.h --- old/kapman-20.08.3/ghostitem.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/ghostitem.h 2020-12-02 23:19:27.000000000 +0100 @@ -46,14 +46,14 @@ /** * Deletes the CharacterItem instance. */ - ~GhostItem(); + ~GhostItem() override; /** * Ensures the blink timers are correctly set */ void updateBlinkTimersDuration(); -public slots: +public Q_SLOTS: /** * Updates the view coordinates. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/kapman.h new/kapman-20.12.0/kapman.h --- old/kapman-20.08.3/kapman.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/kapman.h 2020-12-02 23:19:27.000000000 +0100 @@ -49,7 +49,7 @@ /** * Deletes the Kapman instance. */ - ~Kapman(); + ~Kapman() override; /** * Initializes the Kapman. @@ -129,7 +129,7 @@ */ void stopMoving(); -signals: +Q_SIGNALS: /** * Emitted when the direction changed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/kapmanitem.cpp new/kapman-20.12.0/kapmanitem.cpp --- old/kapman-20.08.3/kapmanitem.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/kapmanitem.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -17,7 +17,6 @@ */ #include "kapmanitem.h" -#include "characteritem.h" #include "ghost.h" #include "settings.h" @@ -37,7 +36,7 @@ // A timeLine for the Kapman animation m_animationTimer = new QTimeLine(); - m_animationTimer->setCurveShape(QTimeLine::SineCurve); + m_animationTimer->setEasingCurve(QEasingCurve::SineCurve); m_animationTimer->setLoopCount(0); m_animationTimer->setFrameRange(0, NB_FRAMES - 1); // Animation speed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/kapmanitem.h new/kapman-20.12.0/kapmanitem.h --- old/kapman-20.08.3/kapmanitem.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/kapmanitem.h 2020-12-02 23:19:27.000000000 +0100 @@ -58,9 +58,9 @@ /** * Deletes the KapmanItem instance. */ - ~KapmanItem(); + ~KapmanItem() override; -public slots: +public Q_SLOTS: /** * Rotates the image function of the Kapman direction. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/kapmanmainwindow.cpp new/kapman-20.12.0/kapmanmainwindow.cpp --- old/kapman-20.08.3/kapmanmainwindow.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/kapmanmainwindow.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -40,8 +40,8 @@ KapmanMainWindow::KapmanMainWindow() { // Initialize the game - m_game = NULL; - m_view = NULL; + m_game = nullptr; + m_view = nullptr; // Set the window menus KStandardGameAction::gameNew(this, SLOT(newGame(bool)), actionCollection()); KStandardGameAction::highscores(this, SLOT(showHighscores()), actionCollection()); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/kapmanmainwindow.h new/kapman-20.12.0/kapmanmainwindow.h --- old/kapman-20.08.3/kapmanmainwindow.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/kapmanmainwindow.h 2020-12-02 23:19:27.000000000 +0100 @@ -61,9 +61,9 @@ /** * Deletes the KapmanMainWindow instance. */ - ~KapmanMainWindow(); + ~KapmanMainWindow() override; -private slots: +private Q_SLOTS: /** * Initializes the KapmanMainWindow for a new game. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/kapmanparser.cpp new/kapman-20.12.0/kapmanparser.cpp --- old/kapman-20.08.3/kapmanparser.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/kapmanparser.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -20,7 +20,6 @@ #include "pill.h" #include "energizer.h" #include <QDebug> -#include <QXmlStreamAttributes> KapmanParser::KapmanParser(Game *p_game) { @@ -66,7 +65,7 @@ } } - if (reader.isEndDocument()) + if (!reader.isEndDocument()) return false; return true; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/maze.cpp new/kapman-20.12.0/maze.cpp --- old/kapman-20.08.3/maze.cpp 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/maze.cpp 2020-12-02 23:19:27.000000000 +0100 @@ -58,7 +58,7 @@ qCritical() << "Bad maze coordinates"; } m_cells[p_row][p_column].setElement(p_element); - if (p_element != NULL) { + if (p_element != nullptr) { m_totalNbElem++; m_nbElem++; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/maze.h new/kapman-20.12.0/maze.h --- old/kapman-20.08.3/maze.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/maze.h 2020-12-02 23:19:27.000000000 +0100 @@ -63,7 +63,7 @@ /** * Deletes the Maze instance. */ - ~Maze(); + ~Maze() override; /** * Creates the Maze matrix. @@ -172,7 +172,7 @@ */ QPoint getResurrectionCell() const; -signals: +Q_SIGNALS: /** * Emitted when all the elements on the Maze have been eaten. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/mazeitem.h new/kapman-20.12.0/mazeitem.h --- old/kapman-20.08.3/mazeitem.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/mazeitem.h 2020-12-02 23:19:27.000000000 +0100 @@ -39,7 +39,7 @@ /** * Deletes the MazeItem instance. */ - ~MazeItem(); + ~MazeItem() override; }; #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/org.kde.kapman.appdata.xml new/kapman-20.12.0/org.kde.kapman.appdata.xml --- old/kapman-20.08.3/org.kde.kapman.appdata.xml 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/org.kde.kapman.appdata.xml 2020-12-02 23:19:27.000000000 +0100 @@ -87,7 +87,7 @@ <p xml:lang="en-GB">Kapman is a clone of the well known game Pac-Man.</p> <p xml:lang="es">Kapman es un clon del conocido juego Pac-Man.</p> <p xml:lang="et">Kapman on tuntud mängu Pac-Man kloon.</p> - <p xml:lang="eu">Kapman Pac-Man joko ezagunaren klon bat da.</p> + <p xml:lang="eu">Kapman ondo ezaguna den Pac-Man jokoaren klon bat da.</p> <p xml:lang="fi">Kapman on tunnetun Pac-Man-pelin klooni.</p> <p xml:lang="fr">Kapman est un clone du jeu très connu Pac-Man.</p> <p xml:lang="gl">Kapman é un clon do coñecido xogo do Pac-Man.</p> @@ -160,9 +160,9 @@ </screenshots> <project_group>KDE</project_group> <releases> + <release version="20.12.0" date="2020-12-10"/> <release version="20.08.3" date="2020-11-05"/> <release version="20.08.2" date="2020-10-08"/> <release version="20.08.1" date="2020-09-03"/> - <release version="20.08.0" date="2020-08-13"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/org.kde.kapman.desktop new/kapman-20.12.0/org.kde.kapman.desktop --- old/kapman-20.08.3/org.kde.kapman.desktop 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/org.kde.kapman.desktop 2020-12-02 23:19:27.000000000 +0100 @@ -112,7 +112,7 @@ Comment[en_GB]=Eat pills escaping ghosts Comment[es]=Coma píldoras escapando de los fantasmas Comment[et]=Neela kuulikesi ja põgene tontide eest -Comment[eu]=Jan pirulak mamuetatik ihes eginez +Comment[eu]=Jan pilulak mamuetatik ihes eginez Comment[fi]=Syö palloja ja pakene aaveita Comment[fr]=Manger les pilules tout en évitant les fantômes Comment[ga]=Ith piollairí agus éalaigh ó thaibhsí diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/pill.h new/kapman-20.12.0/pill.h --- old/kapman-20.08.3/pill.h 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/pill.h 2020-12-02 23:19:27.000000000 +0100 @@ -43,7 +43,7 @@ /** * Deletes the Pill instance. */ - ~Pill(); + ~Pill() override; /** * Computes an action on a collision with the Kapman. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/ar/kapman.po new/kapman-20.12.0/po/ar/kapman.po --- old/kapman-20.08.3/po/ar/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ar/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/bg/kapman.po new/kapman-20.12.0/po/bg/kapman.po --- old/kapman-20.08.3/po/bg/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/bg/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/bs/kapman.po new/kapman-20.12.0/po/bs/kapman.po --- old/kapman-20.08.3/po/bs/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/bs/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdegames\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ca/kapman.po new/kapman-20.12.0/po/ca/kapman.po --- old/kapman-20.08.3/po/ca/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ca/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2020-10-13 20:58+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-20.08.3/po/ca@valencia/kapman.po new/kapman-20.12.0/po/ca@valencia/kapman.po --- old/kapman-20.08.3/po/ca@valencia/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ca@valencia/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2020-10-13 20:58+0200\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -212,3 +212,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-20.08.3/po/cs/kapman.po new/kapman-20.12.0/po/cs/kapman.po --- old/kapman-20.08.3/po/cs/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/cs/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/da/kapman.po new/kapman-20.12.0/po/da/kapman.po --- old/kapman-20.08.3/po/da/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/da/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/de/kapman.po new/kapman-20.12.0/po/de/kapman.po --- old/kapman-20.08.3/po/de/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/de/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/el/kapman.po new/kapman-20.12.0/po/el/kapman.po --- old/kapman-20.08.3/po/el/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/el/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/en_GB/kapman.po new/kapman-20.12.0/po/en_GB/kapman.po --- old/kapman-20.08.3/po/en_GB/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/en_GB/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/eo/kapman.po new/kapman-20.12.0/po/eo/kapman.po --- old/kapman-20.08.3/po/eo/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/eo/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/es/kapman.po new/kapman-20.12.0/po/es/kapman.po --- old/kapman-20.08.3/po/es/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/es/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/et/kapman.po new/kapman-20.12.0/po/et/kapman.po --- old/kapman-20.08.3/po/et/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/et/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/eu/kapman.po new/kapman-20.12.0/po/eu/kapman.po --- old/kapman-20.08.3/po/eu/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/eu/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2020-07-19 12:02+0200\n" "Last-Translator: Iñigo Salvador Azurmendi <xa...@ni.eus>\n" "Language-Team: Basque <kde-i18n...@kde.org>\n" @@ -56,7 +56,7 @@ #: kapman.kcfg:9 #, kde-format msgid "The graphical theme to be used." -msgstr "Erabili beharreko gai grafikoa" +msgstr "Erabili beharreko gai grafikoa." #. i18n: ectx: label, entry (Sounds), group (General) #: kapman.kcfg:13 @@ -67,7 +67,7 @@ #: kapmanmainwindow.cpp:50 #, kde-format msgid "&Play sounds" -msgstr "&Jo soinuak" +msgstr "Soinuak &Jo" #: kapmanmainwindow.cpp:54 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/fi/kapman.po new/kapman-20.12.0/po/fi/kapman.po --- old/kapman-20.08.3/po/fi/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/fi/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/fr/kapman.po new/kapman-20.12.0/po/fr/kapman.po --- old/kapman-20.08.3/po/fr/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/fr/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ga/kapman.po new/kapman-20.12.0/po/ga/kapman.po --- old/kapman-20.08.3/po/ga/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ga/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/gl/kapman.po new/kapman-20.12.0/po/gl/kapman.po --- old/kapman-20.08.3/po/gl/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/gl/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/hi/kapman.po new/kapman-20.12.0/po/hi/kapman.po --- old/kapman-20.08.3/po/hi/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/hi/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/hr/kapman.po new/kapman-20.12.0/po/hr/kapman.po --- old/kapman-20.08.3/po/hr/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/hr/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/hu/kapman.po new/kapman-20.12.0/po/hu/kapman.po --- old/kapman-20.08.3/po/hu/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/hu/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/id/kapman.po new/kapman-20.12.0/po/id/kapman.po --- old/kapman-20.08.3/po/id/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/id/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2019-09-07 18:11+0700\n" "Last-Translator: Wantoyo <wanto...@gmail.com>\n" "Language-Team: Indonesian <kde-i18n-...@kde.org>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/is/kapman.po new/kapman-20.12.0/po/is/kapman.po --- old/kapman-20.08.3/po/is/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/is/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/it/kapman.po new/kapman-20.12.0/po/it/kapman.po --- old/kapman-20.08.3/po/it/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/it/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ja/kapman.po new/kapman-20.12.0/po/ja/kapman.po --- old/kapman-20.08.3/po/ja/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ja/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/kk/kapman.po new/kapman-20.12.0/po/kk/kapman.po --- old/kapman-20.08.3/po/kk/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/kk/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/km/kapman.po new/kapman-20.12.0/po/km/kapman.po --- old/kapman-20.08.3/po/km/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/km/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ko/kapman.po new/kapman-20.12.0/po/ko/kapman.po --- old/kapman-20.08.3/po/ko/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ko/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2020-04-05 11:56+0200\n" "Last-Translator: Shinjo Park <k...@peremen.name>\n" "Language-Team: Korean <kde...@kde.org>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/lt/kapman.po new/kapman-20.12.0/po/lt/kapman.po --- old/kapman-20.08.3/po/lt/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/lt/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/lv/kapman.po new/kapman-20.12.0/po/lv/kapman.po --- old/kapman-20.08.3/po/lv/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/lv/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ml/kapman.po new/kapman-20.12.0/po/ml/kapman.po --- old/kapman-20.08.3/po/ml/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ml/kapman.po 2020-12-04 01:13:57.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman trunk\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2019-12-12 21:44+0000\n" "Last-Translator: Vivek KJ Pazhedath <vivekkj2...@gmail.com>\n" "Language-Team: SMC <smc.org.in>\n" @@ -16,7 +16,6 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 3.9.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/mr/kapman.po new/kapman-20.12.0/po/mr/kapman.po --- old/kapman-20.08.3/po/mr/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/mr/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/nb/kapman.po new/kapman-20.12.0/po/nb/kapman.po --- old/kapman-20.08.3/po/nb/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/nb/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: KDE 4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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 <l10n...@lister.huftis.org>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/nds/kapman.po new/kapman-20.12.0/po/nds/kapman.po --- old/kapman-20.08.3/po/nds/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/nds/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/nl/kapman.po new/kapman-20.12.0/po/nl/kapman.po --- old/kapman-20.08.3/po/nl/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/nl/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2019-06-27 10:12+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-20.08.3/po/nn/kapman.po new/kapman-20.12.0/po/nn/kapman.po --- old/kapman-20.08.3/po/nn/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/nn/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2016-01-07 20:23+0100\n" "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n" "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/pl/kapman.po new/kapman-20.12.0/po/pl/kapman.po --- old/kapman-20.08.3/po/pl/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/pl/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kapman2\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/pt/kapman.po new/kapman-20.12.0/po/pt/kapman.po --- old/kapman-20.08.3/po/pt/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/pt/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/pt_BR/kapman.po new/kapman-20.12.0/po/pt_BR/kapman.po --- old/kapman-20.08.3/po/pt_BR/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/pt_BR/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ro/kapman.po new/kapman-20.12.0/po/ro/kapman.po --- old/kapman-20.08.3/po/ro/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ro/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2009-08-09 07:59+0300\n" "Last-Translator: Sergiu Bivol <ser...@cip.md>\n" "Language-Team: Română <kde-i18n...@kde.org>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/ru/kapman.po new/kapman-20.12.0/po/ru/kapman.po --- old/kapman-20.08.3/po/ru/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/ru/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/sk/kapman.po new/kapman-20.12.0/po/sk/kapman.po --- old/kapman-20.08.3/po/sk/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/sk/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/sl/kapman.po new/kapman-20.12.0/po/sl/kapman.po --- old/kapman-20.08.3/po/sl/kapman.po 2020-11-03 01:38:27.000000000 +0100 +++ new/kapman-20.12.0/po/sl/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" "PO-Revision-Date: 2020-02-25 20:15+0100\n" "Last-Translator: \n" "Language-Team: Slovenian <lugos-...@lugos.si>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/sv/kapman.po new/kapman-20.12.0/po/sv/kapman.po --- old/kapman-20.08.3/po/sv/kapman.po 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/po/sv/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/tr/kapman.po new/kapman-20.12.0/po/tr/kapman.po --- old/kapman-20.08.3/po/tr/kapman.po 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/po/tr/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdegames-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/ug/kapman.po new/kapman-20.12.0/po/ug/kapman.po --- old/kapman-20.08.3/po/ug/kapman.po 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/po/ug/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/uk/kapman.po new/kapman-20.12.0/po/uk/kapman.po --- old/kapman-20.08.3/po/uk/kapman.po 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/po/uk/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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-20.08.3/po/zh_CN/kapman.po new/kapman-20.12.0/po/zh_CN/kapman.po --- old/kapman-20.08.3/po/zh_CN/kapman.po 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/po/zh_CN/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" -"PO-Revision-Date: 2020-10-08 19:22\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\n" +"PO-Revision-Date: 2020-11-10 15:03\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/po/zh_TW/kapman.po new/kapman-20.12.0/po/zh_TW/kapman.po --- old/kapman-20.08.3/po/zh_TW/kapman.po 2020-11-03 01:38:28.000000000 +0100 +++ new/kapman-20.12.0/po/zh_TW/kapman.po 2020-12-04 01:13:58.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kapman\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-07-13 07:38+0200\n" +"POT-Creation-Date: 2020-05-10 03:21+0200\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...@lists.linux.org.tw>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/themes/invisible.desktop new/kapman-20.12.0/themes/invisible.desktop --- old/kapman-20.08.3/themes/invisible.desktop 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/themes/invisible.desktop 2020-12-02 23:19:27.000000000 +0100 @@ -61,7 +61,7 @@ Description[en_GB]=Getting bored with Kapman? More than 100,000 points over level 20? Next step: the invisible maze! Description[es]=¿Aburrido de Kapman? ¿Ha conseguido más de 100.000 puntos en el nivel 20? Siguiente paso: ¡el laberinto invisible! Description[et]=Kapmanist tüdinud? Koos juba üle 100 000 punkti ja tase üle 20? Siis on järgmine aste nähtamatu labürint! -Description[eu]=Azpertuta Kapman-ekin? 100.000 puntu baino gehiago lortuta 20. mailean? Hurrengo urratsa: labirinto ikusezina! +Description[eu]=Kapman-ekin aspertzen ari zara? 20. mailan 100.000 puntu baino gehiago lortu dituzula? Hurrengo urratsa: labirinto ikusezina! Description[fi]=Oletko kyllästynyt Kapmaniin? Yli 100 000 pistettä tasoa 20 suuremmalla tasolla? Seuraava askel: näkymätön sokkelo! Description[fr]=Vous vous ennuyez avec Kapman ? Vous avez plus de 100.000 points au niveau 20 ? Passez à la suite : la grille invisible ! Description[ga]=An bhfuil tú ag éirí bréan de Kapman? An bhfuil níos mó ná 100,000 pointe agat ar leibhéal 20? An chéad chéim eile: an lúbra dofheicthe! diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapman-20.08.3/themes/matches.desktop new/kapman-20.12.0/themes/matches.desktop --- old/kapman-20.08.3/themes/matches.desktop 2020-10-31 18:16:24.000000000 +0100 +++ new/kapman-20.12.0/themes/matches.desktop 2020-12-02 23:19:27.000000000 +0100 @@ -60,7 +60,7 @@ Description[en_GB]=A matches drawn maze Description[es]=Un laberinto dibujado con cerillas Description[et]=Tikkudest labürint -Description[eu]=Poxpoluekin egindako labirintoa +Description[eu]=Pospoloekin marraztutako labirinto bat Description[fi]=Tulitikuilla tehty sokkelo Description[fr]=Une grille dessinée en allumettes Description[ga]=Lúbra déanta as cipíní _______________________________________________ openSUSE Commits mailing list -- commit@lists.opensuse.org To unsubscribe, email commit-le...@lists.opensuse.org List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/commit@lists.opensuse.org