Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package klickety for openSUSE:Factory checked in at 2026-04-17 21:50:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/klickety (Old) and /work/SRC/openSUSE:Factory/.klickety.new.11940 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "klickety" Fri Apr 17 21:50:37 2026 rev:168 rq:1347463 version:26.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/klickety/klickety.changes 2026-03-07 20:10:32.385377830 +0100 +++ /work/SRC/openSUSE:Factory/.klickety.new.11940/klickety.changes 2026-04-17 21:53:48.644285875 +0200 @@ -1,0 +2,25 @@ +Sat Apr 11 16:14:06 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 26.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/26.04.0/ +- No code change since 26.03.90 + +------------------------------------------------------------------- +Mon Mar 30 12:10:29 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 26.03.90 + * New feature release +- No code change since 26.03.80 + +------------------------------------------------------------------- +Sat Mar 14 09:09:37 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 26.03.80 + * New feature release +- Changes since 25.12.3: + * documentation.yml is no more needed + * doc/ new screenshots + +------------------------------------------------------------------- Old: ---- klickety-25.12.3.tar.xz klickety-25.12.3.tar.xz.sig New: ---- klickety-26.04.0.tar.xz klickety-26.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ klickety.spec ++++++ --- /var/tmp/diff_new_pack.gNbVCc/_old 2026-04-17 21:53:49.344314811 +0200 +++ /var/tmp/diff_new_pack.gNbVCc/_new 2026-04-17 21:53:49.352315141 +0200 @@ -1,7 +1,7 @@ # # spec file for package klickety # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ %bcond_without released Name: klickety -Version: 25.12.3 +Version: 26.04.0 Release: 0 Summary: Strategic board game License: GPL-2.0-or-later ++++++ klickety-25.12.3.tar.xz -> klickety-26.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/.flatpak-manifest.json new/klickety-26.04.0/.flatpak-manifest.json --- old/klickety-25.12.3/.flatpak-manifest.json 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/.flatpak-manifest.json 2026-04-09 05:26:17.000000000 +0200 @@ -1,7 +1,7 @@ { "id": "org.kde.klickety", "runtime": "org.kde.Platform", - "runtime-version": "6.8", + "runtime-version": "6.10", "sdk": "org.kde.Sdk", "command": "klickety", "rename-icon": "klickety", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/.gitlab-ci.yml new/klickety-26.04.0/.gitlab-ci.yml --- old/klickety-25.12.3/.gitlab-ci.yml 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/.gitlab-ci.yml 2026-04-09 05:26:17.000000000 +0200 @@ -15,3 +15,4 @@ - /gitlab-templates/craft-macos-arm64-qt6.yml - /gitlab-templates/xml-lint.yml - /gitlab-templates/yaml-lint.yml + - /gitlab-templates/snap-snapcraft-lxd.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/CMakeLists.txt new/klickety-26.04.0/CMakeLists.txt --- old/klickety-25.12.3/CMakeLists.txt 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/CMakeLists.txt 2026-04-09 05:26:17.000000000 +0200 @@ -1,8 +1,8 @@ cmake_minimum_required (VERSION 3.16 FATAL_ERROR) -set (RELEASE_SERVICE_VERSION_MAJOR "25") -set (RELEASE_SERVICE_VERSION_MINOR "12") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MAJOR "26") +set (RELEASE_SERVICE_VERSION_MINOR "04") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") set (RELEASE_SERVICE_COMPACT_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_SERVICE_VERSION_MINOR}${RELEASE_SERVICE_VERSION_MICRO}") @@ -39,16 +39,18 @@ ConfigWidgets XmlGui KIO - DocTools DBusAddons IconThemes ) +find_package(KF6 ${KF_MIN_VERSION} OPTIONAL_COMPONENTS + DocTools +) find_package(KDEGames6 6.0.0 REQUIRED) ecm_set_disabled_deprecation_versions( - QT 6.9.0 - KF 6.19.0 + QT 6.10.0 + KF 6.21.0 KDEGAMES 6.0 ) @@ -59,6 +61,8 @@ add_subdirectory(src) ki18n_install(po) -kdoctools_install(po) +if(KF6DocTools_FOUND) + kdoctools_install(po) +endif() feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/doc/CMakeLists.txt new/klickety-26.04.0/doc/CMakeLists.txt --- old/klickety-25.12.3/doc/CMakeLists.txt 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/doc/CMakeLists.txt 2026-04-09 05:26:17.000000000 +0200 @@ -1 +1,3 @@ -kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR klickety) +if(KF6DocTools_FOUND) + kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR klickety) +endif() Binary files old/klickety-25.12.3/doc/config-background.png and new/klickety-26.04.0/doc/config-background.png differ Binary files old/klickety-25.12.3/doc/config-customgame.png and new/klickety-26.04.0/doc/config-customgame.png differ Binary files old/klickety-25.12.3/doc/config-general.png and new/klickety-26.04.0/doc/config-general.png differ Binary files old/klickety-25.12.3/doc/config-theme.png and new/klickety-26.04.0/doc/config-theme.png differ Binary files old/klickety-25.12.3/doc/gamescreen.png and new/klickety-26.04.0/doc/gamescreen.png differ Binary files old/klickety-25.12.3/doc/highscore.png and new/klickety-26.04.0/doc/highscore.png differ Binary files old/klickety-25.12.3/doc/ksamemode.png and new/klickety-26.04.0/doc/ksamemode.png differ Binary files old/klickety-25.12.3/doc/numbered.png and new/klickety-26.04.0/doc/numbered.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ar/klickety.po new/klickety-26.04.0/po/ar/klickety.po --- old/klickety-25.12.3/po/ar/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ar/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 11:57+0400\n" "Last-Translator: Zayed Al-Saidi <[email protected]>\n" "Language-Team: ar\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ast/klickety.po new/klickety-26.04.0/po/ast/klickety.po --- old/klickety-25.12.3/po/ast/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ast/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-11-07 21:27+0100\n" "Last-Translator: Enol P. <[email protected]>\n" "Language-Team: \n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/bg/klickety.po new/klickety-26.04.0/po/bg/klickety.po --- old/klickety-25.12.3/po/bg/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/bg/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-13 22:47+0200\n" "Last-Translator: Mincho Kondarev <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/bs/klickety.po new/klickety-26.04.0/po/bs/klickety.po --- old/klickety-25.12.3/po/bs/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/bs/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdegames\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-10-18 20:23+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: Bosnian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ca/klickety.po new/klickety-26.04.0/po/ca/klickety.po --- old/klickety-25.12.3/po/ca/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ca/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 10:24+0200\n" "Last-Translator: Josep M. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ca@valencia/klickety.po new/klickety-26.04.0/po/ca@valencia/klickety.po --- old/klickety-25.12.3/po/ca@valencia/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ca@valencia/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 10:24+0200\n" "Last-Translator: Josep M. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/cs/klickety.po new/klickety-26.04.0/po/cs/klickety.po --- old/klickety-25.12.3/po/cs/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/cs/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,9 +7,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-29 11:32+0200\n" -"Last-Translator: Vit Pelcak <[email protected]>\n" +"Last-Translator: Vit Pelcak <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" "Language: cs\n" "MIME-Version: 1.0\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/da/klickety.po new/klickety-26.04.0/po/da/klickety.po --- old/klickety-25.12.3/po/da/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/da/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-08-08 17:42+0200\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/de/klickety.po new/klickety-26.04.0/po/de/klickety.po --- old/klickety-25.12.3/po/de/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/de/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-08-26 18:52+0200\n" "Last-Translator: Johannes Obermayr <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/el/klickety.po new/klickety-26.04.0/po/el/klickety.po --- old/klickety-25.12.3/po/el/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/el/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-09-19 22:13+0300\n" "Last-Translator: Antonis Geralis <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/en_GB/klickety.po new/klickety-26.04.0/po/en_GB/klickety.po --- old/klickety-25.12.3/po/en_GB/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/en_GB/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-21 19:28+0100\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/eo/klickety.po new/klickety-26.04.0/po/eo/klickety.po --- old/klickety-25.12.3/po/eo/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/eo/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 07:47+0100\n" "Last-Translator: Oliver Kellogg <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/es/klickety.po new/klickety-26.04.0/po/es/klickety.po --- old/klickety-25.12.3/po/es/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/es/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2025-04-02 01:10+0100\n" "Last-Translator: Sofía Priego <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/et/klickety.po new/klickety-26.04.0/po/et/klickety.po --- old/klickety-25.12.3/po/et/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/et/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-07-27 19:48+0300\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/eu/klickety.po new/klickety-26.04.0/po/eu/klickety.po --- old/klickety-25.12.3/po/eu/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/eu/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-07-09 23:56+0200\n" "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/fi/klickety.po new/klickety-26.04.0/po/fi/klickety.po --- old/klickety-25.12.3/po/fi/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/fi/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-10-28 21:10+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/fr/klickety.po new/klickety-26.04.0/po/fr/klickety.po --- old/klickety-25.12.3/po/fr/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/fr/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-08 18:14+0200\n" "Last-Translator: Xavier Besnard <[email protected]>\n" "Language-Team: French <French <[email protected]>>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ga/klickety.po new/klickety-26.04.0/po/ga/klickety.po --- old/klickety-25.12.3/po/ga/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ga/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2011-12-28 12:28-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/gl/klickety.po new/klickety-26.04.0/po/gl/klickety.po --- old/klickety-25.12.3/po/gl/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/gl/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-07 08:13+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Proxecto Trasno ([email protected])\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/he/klickety.po new/klickety-26.04.0/po/he/klickety.po --- old/klickety-25.12.3/po/he/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/he/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 06:29+0300\n" "Last-Translator: Yaron Shahrabani <[email protected]>\n" "Language-Team: צוות התרגום של KDE ישראל\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/hi/klickety.po new/klickety-26.04.0/po/hi/klickety.po --- old/klickety-25.12.3/po/hi/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/hi/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-12-15 15:57+0530\n" "Last-Translator: Kali <EMAIL@ADDRESS>\n" "Language-Team: Hindi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/hu/klickety.po new/klickety-26.04.0/po/hu/klickety.po --- old/klickety-25.12.3/po/hu/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/hu/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-07-31 21:34+0200\n" "Last-Translator: Kristof Kiszel <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ia/klickety.po new/klickety-26.04.0/po/ia/klickety.po --- old/klickety-25.12.3/po/ia/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ia/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -1,13 +1,13 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2026 This file is copyright: # This file is distributed under the same license as the klickety package. # -# giovanni <[email protected]>, 2023, 2024. +# SPDX-FileCopyrightText: 2023, 2024, 2026 giovanni <[email protected]> msgid "" msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" -"PO-Revision-Date: 2024-05-06 12:23+0200\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2026-01-21 16:49+0100\n" "Last-Translator: giovanni <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" "Language: ia\n" @@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 22.12.3\n" +"X-Generator: Lokalize 23.08.5\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -234,7 +234,7 @@ #: mainwindow.cpp:66 #, kde-format msgid "Pieces: 0" -msgstr "" +msgstr "Pecias: 0" #: mainwindow.cpp:67 #, kde-format @@ -295,7 +295,7 @@ #: mainwindow.cpp:266 #, kde-format msgid "Pieces: %1" -msgstr "" +msgstr "Pecias: %1" #: mainwindow.cpp:271 #, kde-format @@ -332,7 +332,7 @@ #, kde-format msgctxt "@action:button" msgid "Resign" -msgstr "" +msgstr "Resigna" #: mainwindow.cpp:364 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/id/klickety.po new/klickety-26.04.0/po/id/klickety.po --- old/klickety-25.12.3/po/id/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/id/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-08-19 20:36+0700\n" "Last-Translator: Wantoyèk <[email protected]>\n" "Language-Team: https://t.me/Localizations_KDE_Indonesia\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/is/klickety.po new/klickety-26.04.0/po/is/klickety.po --- old/klickety-25.12.3/po/is/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/is/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2015-01-29 09:07+0000\n" "Last-Translator: Sveinn í Felli <[email protected]>\n" "Language-Team: Icelandic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/it/klickety.po new/klickety-26.04.0/po/it/klickety.po --- old/klickety-25.12.3/po/it/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/it/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 16:53+0200\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ja/klickety.po new/klickety-26.04.0/po/ja/klickety.po --- old/klickety-25.12.3/po/ja/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ja/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-09-12 20:35-0700\n" "Last-Translator: Japanese KDE translation team <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ka/klickety.po new/klickety-26.04.0/po/ka/klickety.po --- old/klickety-25.12.3/po/ka/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ka/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 05:55+0200\n" "Last-Translator: Temuri Doghonadze <[email protected]>\n" "Language-Team: Georgian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/kk/klickety.po new/klickety-26.04.0/po/kk/klickety.po --- old/klickety-25.12.3/po/kk/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/kk/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2012-04-07 02:58+0600\n" "Last-Translator: Sairan Kikkarin <[email protected]>\n" "Language-Team: Kazakh <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ko/klickety.po new/klickety-26.04.0/po/ko/klickety.po --- old/klickety-25.12.3/po/ko/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ko/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-08-19 23:22+0200\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/lt/klickety.po new/klickety-26.04.0/po/lt/klickety.po --- old/klickety-25.12.3/po/lt/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/lt/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2015-12-29 17:52+0200\n" "Last-Translator: Mindaugas Baranauskas <[email protected]>\n" "Language-Team: lt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/lv/klickety.po new/klickety-26.04.0/po/lv/klickety.po --- old/klickety-25.12.3/po/lv/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/lv/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-10-02 11:26+0300\n" "Last-Translator: Toms Trasūns <[email protected]>\n" "Language-Team: Latvian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/mai/klickety.po new/klickety-26.04.0/po/mai/klickety.po --- old/klickety-25.12.3/po/mai/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/mai/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-09-24 13:12+0530\n" "Last-Translator: Rajesh Ranjan <[email protected]>\n" "Language-Team: Maithili <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ml/klickety.po new/klickety-26.04.0/po/ml/klickety.po --- old/klickety-25.12.3/po/ml/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ml/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2019-12-12 22:08+0000\n" "Last-Translator: Vivek KJ Pazhedath <[email protected]>\n" "Language-Team: SMC <smc.org.in>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/mr/klickety.po new/klickety-26.04.0/po/mr/klickety.po --- old/klickety-25.12.3/po/mr/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/mr/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-03-13 13:05+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/nb/klickety.po new/klickety-26.04.0/po/nb/klickety.po --- old/klickety-25.12.3/po/nb/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/nb/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-11-15 13:58+0100\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/nds/klickety.po new/klickety-26.04.0/po/nds/klickety.po --- old/klickety-25.12.3/po/nds/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/nds/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2010-11-04 06:39+0100\n" "Last-Translator: Manfred Wiese <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/nl/klickety.po new/klickety-26.04.0/po/nl/klickety.po --- old/klickety-25.12.3/po/nl/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/nl/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 12:42+0200\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: \n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/nn/klickety.po new/klickety-26.04.0/po/nn/klickety.po --- old/klickety-25.12.3/po/nn/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/nn/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-07-26 14:44+0200\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/pl/klickety.po new/klickety-26.04.0/po/pl/klickety.po --- old/klickety-25.12.3/po/pl/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/pl/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-07-14 13:13+0200\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/pt/klickety.po new/klickety-26.04.0/po/pt/klickety.po --- old/klickety-25.12.3/po/pt/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/pt/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2022-07-24 13:50+0100\n" "Last-Translator: Pedro Morais <[email protected]>\n" "Language-Team: pt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/pt_BR/docs/klickety/index.docbook new/klickety-26.04.0/po/pt_BR/docs/klickety/index.docbook --- old/klickety-25.12.3/po/pt_BR/docs/klickety/index.docbook 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/pt_BR/docs/klickety/index.docbook 2026-04-09 05:26:17.000000000 +0200 @@ -391,7 +391,7 @@ > <guimenu >Jogo</guimenu > <guimenuitem ->Carregar...</guimenuitem +>Carregar…</guimenuitem > </menuchoice > (não no modo KSame) </term> <listitem @@ -425,7 +425,7 @@ ><guimenu >Jogo</guimenu > <guimenuitem ->Novo jogo numerado...</guimenuitem +>Novo jogo numerado…</guimenuitem > </menuchoice ></term> <listitem @@ -756,7 +756,7 @@ ><guimenu >Configurações</guimenu ><guimenuitem ->Configurar o &klickety;...</guimenuitem +>Configurar &klickety;…</guimenuitem ></menuchoice > abre a janela para <guilabel >Configuração - &klickety;</guilabel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/pt_BR/klickety.po new/klickety-26.04.0/po/pt_BR/klickety.po --- old/klickety-25.12.3/po/pt_BR/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/pt_BR/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" -"PO-Revision-Date: 2025-11-08 21:16-0300\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" +"PO-Revision-Date: 2025-11-08 21:10-0300\n" "Last-Translator: Guilherme Marçal Silva <[email protected]>\n" "Language-Team: Brazilian Portuguese <[email protected]>\n" "Language: pt_BR\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ro/klickety.po new/klickety-26.04.0/po/ro/klickety.po --- old/klickety-25.12.3/po/ro/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ro/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-10-27 07:22+0200\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ru/klickety.po new/klickety-26.04.0/po/ru/klickety.po --- old/klickety-25.12.3/po/ru/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ru/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2025-03-05 16:03+0300\n" "Last-Translator: Olesya Gerasimenko <[email protected]>\n" "Language-Team: Basealt Translation Team\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sa/klickety.po new/klickety-26.04.0/po/sa/klickety.po --- old/klickety-25.12.3/po/sa/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sa/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-12-24 20:39+0530\n" "Last-Translator: kali <[email protected]>\n" "Language-Team: Sanskrit <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sk/klickety.po new/klickety-26.04.0/po/sk/klickety.po --- old/klickety-25.12.3/po/sk/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sk/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2023-12-10 15:06+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" @@ -13,8 +13,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 23.08.3\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Lokalize 23.08.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -84,15 +84,13 @@ msgstr "Povoliť zvýrazňovanie" #: gamescene.cpp:236 -#, fuzzy, kde-format -#| msgid "paused" +#, kde-format msgctxt "@info:status" msgid "Paused" msgstr "pozastavené" #: gamescene.cpp:348 -#, fuzzy, kde-format -#| msgid "Game finished" +#, kde-format msgctxt "@info:status" msgid "Game finished" msgstr "Hra skončila" @@ -245,8 +243,7 @@ msgstr "Čas: 00:00" #: mainwindow.cpp:92 -#, fuzzy, kde-format -#| msgid "General" +#, kde-format msgctxt "@title:tab" msgid "General" msgstr "Hlavné" @@ -257,15 +254,13 @@ msgstr "Téma" #: mainwindow.cpp:94 -#, fuzzy, kde-format -#| msgid "Background" +#, kde-format msgctxt "@title:tab" msgid "Background" msgstr "Pozadie" #: mainwindow.cpp:96 -#, fuzzy, kde-format -#| msgid "Custom Game" +#, kde-format msgctxt "@title:tab" msgid "Custom Game" msgstr "Vlastná hra" @@ -330,8 +325,7 @@ msgstr "Chcete sa vzdať?" #: mainwindow.cpp:346 -#, fuzzy, kde-format -#| msgid "New Game" +#, kde-format msgctxt "@title:window" msgid "New Game" msgstr "Nová hra" @@ -343,29 +337,25 @@ msgstr "Vzdať sa" #: mainwindow.cpp:364 -#, fuzzy, kde-format -#| msgid "New Numbered Game..." +#, kde-format msgctxt "@action" msgid "New Numbered Game…" msgstr "Nová číslovaná hra..." #: mainwindow.cpp:369 -#, fuzzy, kde-format -#| msgid "Play Sounds" +#, kde-format msgctxt "@option:check" msgid "Play Sounds" msgstr "Prehrávať zvuky" #: mainwindow.cpp:384 -#, fuzzy, kde-format -#| msgid "Undo All" +#, kde-format msgctxt "@action" msgid "Undo All" msgstr "Všetko späť" #: mainwindow.cpp:390 -#, fuzzy, kde-format -#| msgid "Redo All" +#, kde-format msgctxt "@action" msgid "Redo All" msgstr "Všetko znovu" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sl/klickety.po new/klickety-26.04.0/po/sl/klickety.po --- old/klickety-25.12.3/po/sl/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sl/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 06:25+0200\n" "Last-Translator: Matjaž Jeran <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sr/klickety.po new/klickety-26.04.0/po/sr/klickety.po --- old/klickety-25.12.3/po/sr/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sr/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-03-20 15:25+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sr@ijekavian/klickety.po new/klickety-26.04.0/po/sr@ijekavian/klickety.po --- old/klickety-25.12.3/po/sr@ijekavian/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sr@ijekavian/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-03-20 15:25+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sr@ijekavianlatin/klickety.po new/klickety-26.04.0/po/sr@ijekavianlatin/klickety.po --- old/klickety-25.12.3/po/sr@ijekavianlatin/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sr@ijekavianlatin/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-03-20 15:25+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sr@latin/klickety.po new/klickety-26.04.0/po/sr@latin/klickety.po --- old/klickety-25.12.3/po/sr@latin/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sr@latin/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2016-03-20 15:25+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/sv/klickety.po new/klickety-26.04.0/po/sv/klickety.po --- old/klickety-25.12.3/po/sv/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/sv/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-06-19 02:48+0200\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/tr/klickety.po new/klickety-26.04.0/po/tr/klickety.po --- old/klickety-25.12.3/po/tr/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/tr/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdegames-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-09-23 15:20+0300\n" "Last-Translator: Emir SARI <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/ug/klickety.po new/klickety-26.04.0/po/ug/klickety.po --- old/klickety-25.12.3/po/ug/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/ug/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur Computer Science Association <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/uk/klickety.po new/klickety-26.04.0/po/uk/klickety.po --- old/klickety-25.12.3/po/uk/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/uk/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: klickety\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-04 08:57+0300\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/zh_CN/klickety.po new/klickety-26.04.0/po/zh_CN/klickety.po --- old/klickety-25.12.3/po/zh_CN/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/zh_CN/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-04-22 15:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/po/zh_TW/klickety.po new/klickety-26.04.0/po/zh_TW/klickety.po --- old/klickety-25.12.3/po/zh_TW/klickety.po 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/po/zh_TW/klickety.po 2026-04-09 05:26:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2025-11-17 14:39+0000\n" +"POT-Creation-Date: 2025-11-17 11:49+0000\n" "PO-Revision-Date: 2024-05-26 23:21+0900\n" "Last-Translator: Kisaragi Hiu <[email protected]>\n" "Language-Team: Traditional Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/snap/snapcraft.yaml new/klickety-26.04.0/snap/snapcraft.yaml --- old/klickety-25.12.3/snap/snapcraft.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/klickety-26.04.0/snap/snapcraft.yaml 2026-04-09 05:26:17.000000000 +0200 @@ -0,0 +1,82 @@ +# SPDX-FileCopyrightText: 2024-2026 Scarlett Moore <[email protected]> +# +# SPDX-License-Identifier: CC0-1.0 +--- +name: klickety +confinement: strict +grade: stable +base: core24 +adopt-info: klickety +apps: + klickety: + extensions: + - kde-neon-6 + common-id: org.kde.klickety.desktop + desktop: usr/share/applications/org.kde.klickety.desktop + command: usr/bin/klickety + plugs: + - audio-playback + environment: + ALSA_CONFIG_PATH: "$SNAP/kf6/etc/asound.conf" +layout: + /usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib: + bind: $SNAP/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib +slots: + session-dbus-interface: + interface: dbus + name: org.kde.klickety + bus: session +parts: + klickety: + parse-info: + - usr/share/metainfo/org.kde.klickety.appdata.xml + plugin: cmake + source: . + source-type: local + build-snaps: + - kde-qt6-core24-sdk/latest/beta + - kf6-core24-sdk/latest/beta + build-packages: + - libxml2-dev + - gettext + - doxygen + - graphviz + - libxml2-utils + - docbook-xml + - docbook-xsl + - libduktape207 + - libxkbcommon-dev + - libpulse0 + stage-packages: + - libxkbcommon0 + - libpulse0 + - libasound2 + - libasound2-plugins + - libasound2-data + cmake-parameters: + - -DCMAKE_INSTALL_PREFIX=/usr + - -DCMAKE_BUILD_TYPE=Release + - -DQT_MAJOR_VERSION=6 + - -DBUILD_TESTING=OFF + prime: + - -usr/lib/*/cmake/* + - -usr/include/* + - -usr/share/ECM/* + - -usr/share/man/* + - -usr/bin/X11 + - -usr/lib/gcc/$CRAFT_ARCH_TRIPLET_BUILD_FOR/6.0.0 + - -usr/lib/aspell/* + - -usr/share/lintian + cleanup: + after: + - klickety + plugin: nil + build-snaps: + - core24 + - kf6-core24 + override-prime: | + set -eux + for snap in "core24" "kf6-core24" + do + cd "/snap/$snap/current" && find . -type f,l -exec rm -rf "$CRAFT_PRIME/{}" \; + done diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/snapcraft.yaml new/klickety-26.04.0/snapcraft.yaml --- old/klickety-25.12.3/snapcraft.yaml 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/snapcraft.yaml 1970-01-01 01:00:00.000000000 +0100 @@ -1,80 +0,0 @@ -# SPDX-FileCopyrightText: 2024-2025 Scarlett Moore <[email protected]> -# -# SPDX-License-Identifier: CC0-1.0 ---- -name: klickety -confinement: strict -grade: stable -base: core24 -adopt-info: klickety -apps: - klickety: - extensions: - - kde-neon-6 - common-id: org.kde.klickety.desktop - desktop: usr/share/applications/org.kde.klickety.desktop - command: usr/bin/klickety - plugs: - - audio-playback - environment: - ALSA_CONFIG_PATH: "$SNAP/kf6/etc/asound.conf" -layout: - /usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib: - bind: $SNAP/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/alsa-lib -slots: - session-dbus-interface: - interface: dbus - name: org.kde.klickety - bus: session -parts: - klickety: - parse-info: - - usr/share/metainfo/org.kde.klickety.appdata.xml - plugin: cmake - source: . - source-type: local - build-packages: - - libpulse0 - stage-packages: - - libpulse0 - - libasound2 - - libasound2-plugins - - libasound2-data - cmake-parameters: - - -DCMAKE_INSTALL_PREFIX=/usr - - -DCMAKE_BUILD_TYPE=Release - - -DQT_MAJOR_VERSION=6 - - -DBUILD_TESTING=OFF - build-environment: - - LD_LIBRARY_PATH: > - "/snap/mesa-2404/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:$CRAFT_STAGE/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR:/snap/kde-qt6-core24-sdk/current/usr/lib/$CRAFT_ARCH_TRIPLET_BUILD_FOR/libproxy:$LD_LIBRARY_PATH" - prime: - - -usr/lib/*/cmake/* - - -usr/include/* - - -usr/share/ECM/* - - -usr/share/man/* - - -usr/bin/X11 - - -usr/lib/gcc/$CRAFT_ARCH_TRIPLET_BUILD_FOR/6.0.0 - - -usr/lib/aspell/* - - -usr/share/lintian - gpu-2404: - after: [klickety] - source: https://github.com/canonical/gpu-snap.git - plugin: dump - override-prime: | - craftctl default - ${CRAFT_PART_SRC}/bin/gpu-2404-cleanup mesa-2404 - prime: - - bin/gpu-2404-wrapper - cleanup: - after: - - klickety - plugin: nil - build-snaps: - - core24 - - kf6-core24 - override-prime: | - set -eux - for snap in "core24" "kf6-core24"; do - cd "/snap/$snap/current" && find . -type f,l -exec rm -rf "${CRAFT_PRIME}/{}" \; - done diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/src/org.kde.klickety.appdata.xml new/klickety-26.04.0/src/org.kde.klickety.appdata.xml --- old/klickety-25.12.3/src/org.kde.klickety.appdata.xml 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/src/org.kde.klickety.appdata.xml 2026-04-09 05:26:17.000000000 +0200 @@ -73,6 +73,7 @@ <summary xml:lang="pt-BR">Uma adaptação do jogo "Clickomania".</summary> <summary xml:lang="ru">Klickety — адаптация игры «Clickomania».</summary> <summary xml:lang="sa">"क्लिकमेनिया" क्रीडायाः अनुकूलनम् ।</summary> + <summary xml:lang="sk">Klickety je adaptácia hry "clickomania".</summary> <summary xml:lang="sl">Klickety je priredba igre »Clickomania«.</summary> <summary xml:lang="sv">En anpassning av spelet "clickomania".</summary> <summary xml:lang="tr">Kliketi, “Clickomania” oyununun bir uyarlamasıdır.</summary> @@ -107,6 +108,7 @@ <p xml:lang="pt-BR">O Klickety é uma adaptação do jogo Clickomania. As regras são semelhantes às do jogo Same: o seu objetivo é limpar o tabuleiro do jogo de todos os blocos coloridos, clicando nos grupos para destruí-los. O intuito global é obter a menor pontuação possível. Ele irá oferecer entretenimento para todas as aptidões, mas é um desafio de raciocínio lógico se você quiser obter uma pontuação realmente baixa.</p> <p xml:lang="ru">Klickety — адаптация игры «Clickomania». Правила этой игры похожи на правила «Same Game»: нужно очистить игровую доску, нажимая на группы шариков. Главная задача — набрать как можно меньше очков. Можно играть как просто ради развлечения, так и развивать логическое мышление (продумывать ходы для набора минимального количества очков не так уж просто).</p> <p xml:lang="sa">क्लिकेटी क्लिक्मेनिया-क्रीडायाः रूपान्तरणम् अस्ति । नियमाः समानक्रीडायाः सदृशाः सन्ति: भवतः लक्ष्यं समूहान् क्लिक् कृत्वा फलकं स्वच्छं कृत्वा तान् नाशयितुं भवति। समग्रं लक्ष्यं न्यूनतमं स्कोरं प्राप्तुं भवति। सर्वेषां क्षमतानां कृते मनोरञ्जनं प्रदास्यति, परन्तु यदि भवान् वास्तविकरूपेण न्यूनं स्कोरं प्राप्तुम् इच्छति तर्हि तार्किकचिन्तने एकं आव्हानं।</p> + <p xml:lang="sk">Klickety je adaptácia hry Clickomania. Pravidlá sú podobné ako v hre Same: vašim cieľom je vyčistiť hraciu plochu kliknutím na skupiny, čím ich zničíte. Celkovým cieľom je dosiahnuť čo najnižšie skóre. Hra poskytne zábavu pre všetky úrovne zručností, ale ak chcete dosiahnuť naozaj nízke skóre, bude pre vás výzvou v logickom myslení.</p> <p xml:lang="sl">Klickety je priredba igre Clickomania. Pravila so podobna tistim v igri Same: vaš cilj je počistiti tablo s klikom na skupine, da jih uničite. Splošni cilj je doseči najnižjo možno oceno. Zagotovila bo zabavo za vse sposobnosti, a izziv pri logičnem razmišljanju, če želite doseči res nizek rezultat.</p> <p xml:lang="sv">Klickety är en anpassning av spelet Clickomania. Reglerna liknar reglerna i spel Same: målet är att rensa brädet genom att klicka på grupper för att förstöra dem. Det övergripande målet är att få lägsta möjliga poäng. Det är underhållande för alla förmågor, men en utmaning i logiskt tänkande om du vill få riktigt låg poäng.</p> <p xml:lang="tr">Kliketi, Clickomania oyununun bir uyarlamasıdır. Kurallar aynı oyundakilere benzer: Amacınız grupları yok etmek için üzerlerine tıklayarak tahtayı temizlemektir. Genel amaç olabilen en düşük puanı almaktır. Tüm yetenekler için eğlence sağlayacaktır; ancak gerçekten düşük bir puan almak istiyorsanız mantıksal düşünme konusunda zorluk çekeceksiniz.</p> @@ -132,6 +134,7 @@ </provides> <launchable type="desktop-id">org.kde.klickety.desktop</launchable> <releases> + <release version="2.1.26040" date="2026-04-16"/> <release version="2.1.25123" date="2026-03-05"/> <release version="2.1.25122" date="2026-02-05"/> <release version="2.1.25121" date="2026-01-08"/> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/src/org.kde.ksame.appdata.xml new/klickety-26.04.0/src/org.kde.ksame.appdata.xml --- old/klickety-25.12.3/src/org.kde.ksame.appdata.xml 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/src/org.kde.ksame.appdata.xml 2026-04-09 05:26:17.000000000 +0200 @@ -72,6 +72,7 @@ <summary xml:lang="pt-BR">O modo de jogo do Klickety, que é uma adaptação do jogo "Clickomania"</summary> <summary xml:lang="ru">Игровой режим игры Klickety, которая является адаптацией игры «Clickomania»</summary> <summary xml:lang="sa">क्लिकेटी इत्यस्य क्रीडाविधिः, यत् "क्लिकमेनिया" क्रीडायाः अनुकूलनम् अस्ति</summary> + <summary xml:lang="sk">KSame je herný režim hry Klickety, ktorá je adaptáciou hry "clickomania"</summary> <summary xml:lang="sl">Igralni način igre Klickety, ki je priredba igre 'Clickomania'</summary> <summary xml:lang="sv">Spelvariant av Klickety, som är en anpassning av spelet "clickomania".</summary> <summary xml:lang="tr">“Clickomania” oyununun uyarlanması olan Kliketi’nin bir oyun kipi</summary> @@ -140,6 +141,7 @@ <launchable type="desktop-id">org.kde.ksame.desktop</launchable> <content_rating type="oars-1.1"/> <releases> + <release version="2.1.26040" date="2026-04-16"/> <release version="2.1.25123" date="2026-03-05"/> <release version="2.1.25122" date="2026-02-05"/> <release version="2.1.25121" date="2026-01-08"/> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/themes/ksame.desktop new/klickety-26.04.0/themes/ksame.desktop --- old/klickety-25.12.3/themes/ksame.desktop 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/themes/ksame.desktop 2026-04-09 05:26:17.000000000 +0200 @@ -21,6 +21,7 @@ Name[he]=KSame Name[hi]=केसेम Name[hu]=KSame +Name[ia]=KSame Name[id]=KSame Name[it]=KSame Name[ka]=KSame diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/klickety-25.12.3/themes/ksame_old.desktop new/klickety-26.04.0/themes/ksame_old.desktop --- old/klickety-25.12.3/themes/ksame_old.desktop 2026-02-28 12:45:25.000000000 +0100 +++ new/klickety-26.04.0/themes/ksame_old.desktop 2026-04-09 05:26:17.000000000 +0200 @@ -21,6 +21,7 @@ Name[he]=KSame ישנה Name[hi]=केसेम पुराना Name[hu]=KSame Old +Name[ia]=KSame Vetere Name[id]=KSame Old Name[it]=Vecchio Ksame Name[ka]=KSame ძველი
