Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kunifiedpush for openSUSE:Factory checked in at 2026-08-24 12:08:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kunifiedpush (Old) and /work/SRC/openSUSE:Factory/.kunifiedpush.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kunifiedpush" Mon Aug 24 12:08:44 2026 rev:22 rq:1372484 version:26.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kunifiedpush/kunifiedpush.changes 2026-07-02 22:17:15.268959189 +0200 +++ /work/SRC/openSUSE:Factory/.kunifiedpush.new.1258/kunifiedpush.changes 2026-08-24 12:13:27.986920508 +0200 @@ -1,0 +2,27 @@ +Sun Aug 16 07:27:49 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 26.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/26.08.0/ +- No code change since 26.07.90 + +------------------------------------------------------------------- +Sat Aug 1 11:39:29 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 26.07.90 + * New feature release +- No code change since 26.07.80 + +------------------------------------------------------------------- +Sat Jul 18 11:12:11 UTC 2026 - Christophe Marin <[email protected]> + +- Update to 26.07.80 + * New feature release +- Changes since 26.04.3: + * Add missing qqml.h include + * Rename KCM to "Push Services" + * Fix Android build with Qt 6.11 + * fix: make connectivity check for Offline status + +------------------------------------------------------------------- Old: ---- kunifiedpush-26.04.3.tar.xz kunifiedpush-26.04.3.tar.xz.sig New: ---- kunifiedpush-26.08.0.tar.xz kunifiedpush-26.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kunifiedpush.spec ++++++ --- /var/tmp/diff_new_pack.37Irnx/_old 2026-08-24 12:13:28.825950559 +0200 +++ /var/tmp/diff_new_pack.37Irnx/_new 2026-08-24 12:13:28.828950666 +0200 @@ -18,11 +18,11 @@ %bcond_without released -%define kf6_version 6.19.0 +%define kf6_version 6.27.0 %define qt6_version 6.9.0 # Name: kunifiedpush -Version: 26.04.3 +Version: 26.08.0 Release: 0 Summary: UnifiedPush client components License: LGPL-2.0-or-later ++++++ kunifiedpush-26.04.3.tar.xz -> kunifiedpush-26.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/CMakeLists.txt new/kunifiedpush-26.08.0/CMakeLists.txt --- old/kunifiedpush-26.04.3/CMakeLists.txt 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/CMakeLists.txt 2026-08-11 22:16:54.000000000 +0200 @@ -5,8 +5,8 @@ # KDE Application Version, managed by release script set (RELEASE_SERVICE_VERSION_MAJOR "26") -set (RELEASE_SERVICE_VERSION_MINOR "04") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MINOR "08") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(KUnifiedPush VERSION ${RELEASE_SERVICE_VERSION}) @@ -52,7 +52,7 @@ endif() set(KUNIFIEDPUSH_INCLUDE_INSTALLDIR ${KDE_INSTALL_INCLUDEDIR}/KUnifiedPush) -ecm_set_disabled_deprecation_versions(QT 6.7 KF 6.7.0) +ecm_set_disabled_deprecation_versions(QT 6.11 KF 6.23.0) add_compile_definitions(-DOPENSSL_API_COMPAT=30000 -DOPENSSL_NO_DEPRECATED) add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/CMakePresets.json new/kunifiedpush-26.08.0/CMakePresets.json --- old/kunifiedpush-26.04.3/CMakePresets.json 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/CMakePresets.json 2026-08-11 22:16:54.000000000 +0200 @@ -1,5 +1,6 @@ { - "version": 3, + "$schema": "https://cmake.org/cmake/help/latest/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json", + "version": 8, "configurePresets": [ { "name": "base", @@ -7,21 +8,26 @@ "generator": "Ninja", "binaryDir": "${sourceDir}/build-${presetName}", "installDir": "$env{KF6}", - "hidden": true, + "hidden": true + }, + { + "name": "generate-doc", + "displayName": "Build as debug + using mold linker + generate doc", "cacheVariables": { - "BUILD_QCH": "ON" - } + "DOC_DESTDIR": "$env{GENERATE_DOCDIR}" + }, + "inherits": [ + "dev-mold" + ] }, { "name": "dev-mold", "displayName": "Build as debug + using mold linker", "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", "CMAKE_SHARED_LINKER_FLAGS": "-fuse-ld=mold" }, "inherits": [ - "base" + "dev" ] }, { @@ -40,7 +46,7 @@ "displayName": "Build with Asan support.", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "ECM_ENABLE_SANITIZERS" : "'address;undefined'" + "ECM_ENABLE_SANITIZERS": "'address;undefined'" }, "inherits": [ "base" @@ -49,27 +55,22 @@ { "name": "dev-clang", "displayName": "dev-clang", - "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" - }, "environment": { "CXX": "clang++", "CCACHE_DISABLE": "ON" }, "inherits": [ - "base" + "dev" ] }, { "name": "unity", "displayName": "Build with CMake unity support.", "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", "USE_UNITY_CMAKE_SUPPORT": "ON" }, "inherits": [ - "base" + "dev" ] }, { @@ -120,23 +121,9 @@ ] }, { - "name": "pch", - "displayName": "pch", - "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", - "USE_PRECOMPILED_HEADERS": "ON", - "BUILD_COVERAGE": "ON" - }, - "inherits": [ - "base" - ] - }, - { "name": "ftime-trace", "displayName": "ftime-trace", "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", - "USE_DEVELOPER_MODE": "ON", "CMAKE_C_FLAGS_INIT": "-ftime-trace", "CMAKE_CXX_FLAGS_INIT": "-ftime-trace" }, @@ -146,19 +133,27 @@ "CCACHE_DISABLE": "ON" }, "inherits": [ - "base" + "dev" ] } ], "buildPresets": [ { + "name": "generate-doc", + "configurePreset": "generate-doc", + "targets": [ + "prepare_docs", + "generate_docs" + ] + }, + { "name": "dev", "configurePreset": "dev" }, { "name": "ftime-trace", "configurePreset": "ftime-trace" - }, + }, { "name": "dev-mold", "configurePreset": "dev-mold" @@ -168,10 +163,6 @@ "configurePreset": "dev-clang" }, { - "name": "pch", - "configurePreset": "pch" - }, - { "name": "release", "configurePreset": "release" }, @@ -191,35 +182,55 @@ "name": "clazy", "configurePreset": "clazy", "environment": { - "CLAZY_CHECKS" : "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo", - "CCACHE_DISABLE" : "ON" + "CLAZY_CHECKS": "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo", + "CCACHE_DISABLE": "ON" } } ], "testPresets": [ - { - "name": "dev", - "configurePreset": "dev", - "output": {"outputOnFailure": true}, - "execution": {"noTestsAction": "error", "stopOnFailure": false} - }, - { - "name": "asan", - "configurePreset": "asan", - "output": {"outputOnFailure": true}, - "execution": {"noTestsAction": "error", "stopOnFailure": true} - }, - { - "name": "unity", - "configurePreset": "unity", - "output": {"outputOnFailure": true}, - "execution": {"noTestsAction": "error", "stopOnFailure": true} - }, - { - "name": "coverage", - "configurePreset": "coverage", - "output": {"outputOnFailure": true}, - "execution": {"noTestsAction": "error", "stopOnFailure": true} - } - ] + { + "name": "dev", + "configurePreset": "dev", + "output": { + "outputOnFailure": true + }, + "execution": { + "noTestsAction": "error", + "stopOnFailure": false + } + }, + { + "name": "asan", + "configurePreset": "asan", + "output": { + "outputOnFailure": true + }, + "execution": { + "noTestsAction": "error", + "stopOnFailure": true + } + }, + { + "name": "unity", + "configurePreset": "unity", + "output": { + "outputOnFailure": true + }, + "execution": { + "noTestsAction": "error", + "stopOnFailure": true + } + }, + { + "name": "coverage", + "configurePreset": "coverage", + "output": { + "outputOnFailure": true + }, + "execution": { + "noTestsAction": "error", + "stopOnFailure": true + } + } + ] } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/ca/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/ca/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/ca/kcm_push_notifications.po 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/po/ca/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -230,3 +230,6 @@ msgctxt "%1 is an application name" msgid "Are you sure you want to unregister '%1'?" msgstr "Esteu segur que voleu cancel·lar el registre de l'aplicació «%1»?" + +#~ msgid "Url:" +#~ msgstr "URL:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/cs/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/cs/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/cs/kcm_push_notifications.po 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/po/cs/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -1,21 +1,22 @@ # Copyright (C) 2023 This file is copyright: # This file is distributed under the same license as the kunifiedpush package. # SPDX-FileCopyrightText: 2022-2023, 2026 Vit Pelcak <[email protected]> +# SPDX-FileCopyrightText: 2026 Libor Filípek <[email protected]> # msgid "" msgstr "" "Project-Id-Version: kunifiedpush\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-02-09 00:42+0000\n" -"PO-Revision-Date: 2026-06-08 10:39+0200\n" -"Last-Translator: Vít Pelčák <[email protected]>\n" +"PO-Revision-Date: 2026-08-09 10:44+0200\n" +"Last-Translator: Libor Filípek <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 26.04.1\n" +"X-Generator: Lokalize 26.04.3\n" #: selftest.cpp:34 #, kde-format @@ -25,22 +26,22 @@ #: selftest.cpp:59 #, kde-format msgid "Push notification self-test." -msgstr "Vlastní test Upozornění Push" +msgstr "Autotest push oznámení." #: selftest.cpp:73 #, kde-format msgid "Could not obtain push notification endpoint." -msgstr "" +msgstr "Nepodařilo se získat koncový bod pro push oznámení." #: selftest.cpp:126 #, kde-format msgid "Received notification does not have the expected content." -msgstr "" +msgstr "Přijaté oznámení neobsahuje očekávaný obsah." #: ui/main.qml:28 #, kde-format msgid "There is no push notification service running!" -msgstr "" +msgstr "Není spuštěna žádná služba pro zasílání push oznámení!" #: ui/main.qml:37 #, kde-format @@ -48,17 +49,19 @@ "There is a 3rd party push notification service running. Push notifications " "are available, but cannot be configured here." msgstr "" +"Je spuštěna služba push oznámení třetí strany. Push oznámení jsou k " +"dispozici, ale zde je nelze nastavit." #: ui/main.qml:46 #, kde-format msgid "" "<b>Online</b><br>Connected to the push notification server and operational." -msgstr "" +msgstr "<b>Online</b><br>Připojeno k serveru pro push oznámení a v provozu." #: ui/main.qml:55 #, kde-format msgid "<b>Idle</b><br>There are no applications using push notifications." -msgstr "" +msgstr "<b>Nečinnost</b><br>Žádná aplikace nevyužívá push oznámení." #: ui/main.qml:65 #, kde-format @@ -66,32 +69,33 @@ "<b>Offline</b><br>Network connection to the server could not be established " "(%1)." msgstr "" +"<b>Offline</b><br>Nepodařilo se navázat síťové připojení k serveru (%1)." #: ui/main.qml:66 #, kde-format msgid "" "<b>Offline</b><br>Network connection to the server could not be established." -msgstr "" +msgstr "<b>Offline</b><br>Nepodařilo se navázat síťové připojení k serveru." #: ui/main.qml:76 #, kde-format msgid "<b>Offline</b><br>Could not authenticate at the server (%1)." -msgstr "" +msgstr "<b>Offline</b><br>Nepodařilo se ověřit na serveru (%1)." #: ui/main.qml:77 #, kde-format msgid "<b>Offline</b><br>Could not authenticate at the server." -msgstr "" +msgstr "<b>Offline</b><br>Nepodařilo se ověřit na serveru." #: ui/main.qml:86 #, kde-format msgid "<b>Offline</b><br>Push notifications are not set up yet." -msgstr "" +msgstr "<b>Offline</b><br>Push oznámení nejsou zatím nastaveny." #: ui/main.qml:114 #, kde-format msgid "Push provider:" -msgstr "Poskytovatel Push:" +msgstr "Poskytovatel push:" #: ui/main.qml:154 ui/main.qml:181 ui/main.qml:233 ui/main.qml:285 #, kde-format @@ -120,12 +124,14 @@ "with applications with a larger amount of users, such as public Matrix or " "Mastodon instances." msgstr "" +"Upozorňujeme, že skript ntfy.sh omezuje počet požadavků aplikací. Nebude " +"proto fungovat s aplikacemi s větším počtem uživatelů, jako jsou například " +"veřejné instance Matrixu nebo Mastodonu." #: ui/main.qml:245 -#, fuzzy, kde-format -#| msgid "Authenticate" +#, kde-format msgid "Authentication method:" -msgstr "Ověřit" +msgstr "Metoda ověření:" # žádné parametry funkce v inspektoru funkcí #: ui/main.qml:246 @@ -165,27 +171,27 @@ #: ui/main.qml:331 #, kde-format msgid "Push notifications are working correctly." -msgstr "" +msgstr "Push oznámení fungují správně." #: ui/main.qml:333 #, kde-format msgid "Push notification test failed." -msgstr "" +msgstr "Test push oznámení se nezdařil." #: ui/main.qml:335 #, kde-format msgid "Registering with push server…" -msgstr "" +msgstr "Probíhá registrace u push serveru…" #: ui/main.qml:337 #, kde-format msgid "Sending push notification…" -msgstr "" +msgstr "Odesílání push oznámení…" #: ui/main.qml:339 #, kde-format msgid "Waiting to receive push notification…" -msgstr "" +msgstr "Čekání na přijetí push oznámení…" #: ui/main.qml:346 #, kde-format @@ -201,7 +207,7 @@ #: ui/main.qml:393 #, kde-format msgid "Unregister application from push notifications" -msgstr "" +msgstr "Zrušit registraci aplikace pro push oznámení" #: ui/main.qml:400 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/nn/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/nn/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/nn/kcm_push_notifications.po 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/po/nn/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -1,5 +1,6 @@ # Translation of kcm_push_notifications to Norwegian Nynorsk # +# Karl Ove Hufthammer <[email protected]>, 2023, 2024, 2026. msgid "" msgstr "" "Project-Id-Version: kunifiedpush\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/sk/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/sk/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/sk/kcm_push_notifications.po 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/po/sk/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -152,7 +152,7 @@ #: ui/main.qml:260 #, kde-format msgid "Username:" -msgstr "Meno používateľa:" +msgstr "Užívateľské meno:" #: ui/main.qml:266 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/sv/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/sv/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/sv/kcm_push_notifications.po 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/po/sv/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -1,13 +1,13 @@ # Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the kunifiedpush package. # -# SPDX-FileCopyrightText: 2023, 2024, 2025 Stefan Asserhäll <[email protected]> +# SPDX-FileCopyrightText: 2023-2026 Stefan Asserhäll <[email protected]> msgid "" msgstr "" "Project-Id-Version: kunifiedpush\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-02-09 00:42+0000\n" -"PO-Revision-Date: 2025-08-23 06:32+0200\n" +"PO-Revision-Date: 2026-07-06 13:44+0200\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" "Language: sv\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 25.08.0\n" +"X-Generator: Lokalize 26.04.2\n" #: selftest.cpp:34 #, kde-format @@ -136,45 +136,43 @@ "Matrix eller Mastodon." #: ui/main.qml:245 -#, fuzzy, kde-format -#| msgid "Authenticate" +#, kde-format msgid "Authentication method:" -msgstr "Kontrollera behörighet" +msgstr "Behörighetskontrollmetod:" #: ui/main.qml:246 #, kde-format msgctxt "authentication method" msgid "None" -msgstr "" +msgstr "Ingen" #: ui/main.qml:246 #, kde-format msgctxt "authentication method" msgid "Password" -msgstr "" +msgstr "Lösenord" #: ui/main.qml:246 #, kde-format msgctxt "authentication method" msgid "Token" -msgstr "" +msgstr "Symbol" #: ui/main.qml:260 -#, fuzzy, kde-format -#| msgid "User name:" +#, kde-format msgid "Username:" msgstr "Användarnamn:" #: ui/main.qml:266 #, kde-format msgid "Password:" -msgstr "" +msgstr "Lösenord:" #: ui/main.qml:266 #, kde-format msgctxt "authentication token" msgid "Token:" -msgstr "" +msgstr "Symbol:" #: ui/main.qml:331 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/tr/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/tr/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/tr/kcm_push_notifications.po 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/po/tr/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -9,7 +9,7 @@ "POT-Creation-Date: 2026-02-09 00:42+0000\n" "PO-Revision-Date: 2026-03-09 21:52+0300\n" "Last-Translator: Emir SARI <[email protected]>\n" -"Language-Team: Turkish <[email protected]>\n" +"Language-Team: Turkish <[email protected]>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/po/ug/kcm_push_notifications.po new/kunifiedpush-26.08.0/po/ug/kcm_push_notifications.po --- old/kunifiedpush-26.04.3/po/ug/kcm_push_notifications.po 1970-01-01 01:00:00.000000000 +0100 +++ new/kunifiedpush-26.08.0/po/ug/kcm_push_notifications.po 2026-08-11 22:16:54.000000000 +0200 @@ -0,0 +1,215 @@ +# Uyghur translation for kcm_push_notifications. +# Copyright (C) YEAR This file is copyright: +# This file is distributed under the same license as the kunifiedpush package. +# Abduqadir Abliz <[email protected]>, 2026., YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: kunifiedpush\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2026-02-09 00:42+0000\n" +"PO-Revision-Date: 2026-05-31 19:55-0400\n" +"Last-Translator: Abduqadir Abliz <[email protected]>\n" +"Language-Team: Uyghur <[email protected]>\n" +"Language: ug\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.9\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: selftest.cpp:34 +#, kde-format +msgid "The operation timed out." +msgstr "مەشغۇلات ۋاقىت ھالقىدى." + +#: selftest.cpp:59 +#, kde-format +msgid "Push notification self-test." +msgstr "" + +#: selftest.cpp:73 +#, kde-format +msgid "Could not obtain push notification endpoint." +msgstr "" + +#: selftest.cpp:126 +#, kde-format +msgid "Received notification does not have the expected content." +msgstr "" + +#: ui/main.qml:28 +#, kde-format +msgid "There is no push notification service running!" +msgstr "" + +#: ui/main.qml:37 +#, kde-format +msgid "" +"There is a 3rd party push notification service running. Push notifications " +"are available, but cannot be configured here." +msgstr "" + +#: ui/main.qml:46 +#, kde-format +msgid "" +"<b>Online</b><br>Connected to the push notification server and operational." +msgstr "" + +#: ui/main.qml:55 +#, kde-format +msgid "<b>Idle</b><br>There are no applications using push notifications." +msgstr "" + +#: ui/main.qml:65 +#, kde-format +msgid "" +"<b>Offline</b><br>Network connection to the server could not be established " +"(%1)." +msgstr "" + +#: ui/main.qml:66 +#, kde-format +msgid "" +"<b>Offline</b><br>Network connection to the server could not be established." +msgstr "" + +#: ui/main.qml:76 +#, kde-format +msgid "<b>Offline</b><br>Could not authenticate at the server (%1)." +msgstr "" + +#: ui/main.qml:77 +#, kde-format +msgid "<b>Offline</b><br>Could not authenticate at the server." +msgstr "" + +#: ui/main.qml:86 +#, kde-format +msgid "<b>Offline</b><br>Push notifications are not set up yet." +msgstr "" + +#: ui/main.qml:114 +#, kde-format +msgid "Push provider:" +msgstr "" + +#: ui/main.qml:154 ui/main.qml:181 ui/main.qml:233 ui/main.qml:285 +#, kde-format +msgid "URL:" +msgstr "تور ئادرېسى:" + +#: ui/main.qml:159 +#, kde-format +msgid "Client token:" +msgstr "" + +#: ui/main.qml:186 +#, kde-format +msgid "User name:" +msgstr "ئىشلەتكۈچى ئاتى:" + +#: ui/main.qml:192 +#, kde-format +msgid "Authenticate" +msgstr "كىملىك دەلىللەش" + +#: ui/main.qml:240 +#, kde-format +msgid "" +"Note that ntfy.sh is rate-limiting applications. It will therefore not work " +"with applications with a larger amount of users, such as public Matrix or " +"Mastodon instances." +msgstr "" + +#: ui/main.qml:245 +#, kde-format +msgid "Authentication method:" +msgstr "" + +#: ui/main.qml:246 +#, kde-format +msgctxt "authentication method" +msgid "None" +msgstr "يوق" + +#: ui/main.qml:246 +#, kde-format +msgctxt "authentication method" +msgid "Password" +msgstr "ئىم" + +#: ui/main.qml:246 +#, kde-format +msgctxt "authentication method" +msgid "Token" +msgstr "" + +#: ui/main.qml:260 +#, kde-format +msgid "Username:" +msgstr "ئىشلەتكۈچى ئاتى:" + +#: ui/main.qml:266 +#, kde-format +msgid "Password:" +msgstr "ئىم:" + +#: ui/main.qml:266 +#, kde-format +msgctxt "authentication token" +msgid "Token:" +msgstr "" + +#: ui/main.qml:331 +#, kde-format +msgid "Push notifications are working correctly." +msgstr "" + +#: ui/main.qml:333 +#, kde-format +msgid "Push notification test failed." +msgstr "" + +#: ui/main.qml:335 +#, kde-format +msgid "Registering with push server…" +msgstr "" + +#: ui/main.qml:337 +#, kde-format +msgid "Sending push notification…" +msgstr "" + +#: ui/main.qml:339 +#, kde-format +msgid "Waiting to receive push notification…" +msgstr "" + +#: ui/main.qml:346 +#, kde-format +msgctxt "@action:button" +msgid "Test" +msgstr "سىنا" + +#: ui/main.qml:363 +#, kde-format +msgid "Applications" +msgstr "پىروگرامما" + +#: ui/main.qml:393 +#, kde-format +msgid "Unregister application from push notifications" +msgstr "" + +#: ui/main.qml:400 +#, kde-format +msgctxt "@title:window" +msgid "Unregister Application" +msgstr "" + +#: ui/main.qml:401 +#, kde-format +msgctxt "%1 is an application name" +msgid "Are you sure you want to unregister '%1'?" +msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/src/distributor/org.kde.kunifiedpush-distributor.desktop new/kunifiedpush-26.08.0/src/distributor/org.kde.kunifiedpush-distributor.desktop --- old/kunifiedpush-26.04.3/src/distributor/org.kde.kunifiedpush-distributor.desktop 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/src/distributor/org.kde.kunifiedpush-distributor.desktop 2026-08-11 22:16:54.000000000 +0200 @@ -34,6 +34,7 @@ Name[sl]=Distributer za UnifiedPush Name[sv]=Förenad utsändningsfördelare Name[tr]=Birleşik Anında Bildirim Dağıtıcısı +Name[ug]=UnifiedPush تارقاتقۇچ Name[uk]=Розподільник UnifiedPush Name[zh_CN]=统一推送分发程序 Name[zh_TW]=UnifiedPush 發佈者 @@ -73,6 +74,7 @@ GenericName[sv]=Tjänst för utsända underrättelser GenericName[ta]=புஷ் அறிவிப்பு சேவை GenericName[tr]=Anında Bildirim Hizmeti +GenericName[ug]=يەتكۈزۈش ئۇقتۇرۇش مۇلازىمىتى GenericName[uk]=Служба контекстних сповіщень GenericName[zh_CN]=推送通知服务 GenericName[zh_TW]=推送通知服務 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kunifiedpush-26.04.3/src/kcm/kcm_push_notifications.json new/kunifiedpush-26.08.0/src/kcm/kcm_push_notifications.json --- old/kunifiedpush-26.04.3/src/kcm/kcm_push_notifications.json 2026-06-26 21:49:46.000000000 +0200 +++ new/kunifiedpush-26.08.0/src/kcm/kcm_push_notifications.json 2026-08-11 22:16:54.000000000 +0200 @@ -5,6 +5,7 @@ "Description[bg]": "Конфигуриране на известия от онлайн услуги", "Description[ca@valencia]": "Configura les notificacions de serveis en línia", "Description[ca]": "Configura les notificacions de serveis en línia", + "Description[cs]": "Nastavení oznámení z online služeb", "Description[de]": "Benachrichtigungen von Online-Diensten einrichten", "Description[eo]": "Agordi sciigojn el enretaj servoj", "Description[es]": "Configurar notificaciones de los servicios en línea", @@ -31,7 +32,7 @@ "Description[sl]": "Konfiguriraj obvestila spletnih storitev", "Description[sv]": "Anpassa underrättelser från nättjänster", "Description[ta]": "இணைய சேவைகளிடமிருந்து வரும் அறிவிப்புகளை அமைக்கவிடும்", - "Description[tr]": "Bildirimleri ve çevrimiçi hizmetleri yapılandırın", + "Description[tr]": "Bildirimleri ve çevrim içi hizmetleri yapılandırın", "Description[uk]": "Налаштовування сповіщень від служб інтернету", "Description[zh_CN]": "配置来自在线服务的通知", "Description[zh_TW]": "設定來自線上服務的通知", @@ -41,51 +42,43 @@ "desktop" ], "Icon": "network-connect", - "Name": "Push Notifications", - "Name[ar]": "الإشعارات الفورية", - "Name[bg]": "Насочени известия", - "Name[ca@valencia]": "Notificacions automàtiques", - "Name[ca]": "Notificacions automàtiques", - "Name[cs]": "Upozornění Push", - "Name[de]": "Push-Benachrichtigungen", - "Name[en_GB]": "Push Notifications", - "Name[eo]": "Puŝ-Sciigoj", - "Name[es]": "Notificaciones push", - "Name[eu]": "'Push' jakinarazpenak", - "Name[fi]": "Push-ilmoitukset", - "Name[fr]": "Notifications automatiques", - "Name[gl]": "Notificacións levadas", - "Name[he]": "הודעות בדחיפה", - "Name[hi]": "सूचनाएं धक्का", - "Name[hu]": "Leküldéses értesítések", - "Name[ia]": "Notificationes de Push", - "Name[it]": "Notifiche push", - "Name[ka]": "პუშ გაფრთხილებები", - "Name[ko]": "푸시 알림", - "Name[lt]": "„Push“ pranešimai", - "Name[lv]": "Pašpiegādes paziņojumi", - "Name[nl]": "Push-meldingen", - "Name[nn]": "Varslingar frå varslingsteneste", - "Name[pl]": "Powiadomienia push", - "Name[pt]": "Notificações 'Push'", - "Name[pt_BR]": "Notificações push", - "Name[ro]": "Notificări „push”", - "Name[ru]": "Push-уведомления", - "Name[sa]": "पुश सूचनाएँ", - "Name[sk]": "Push notifikácie", - "Name[sl]": "Potisni obvestila", - "Name[sv]": "Utsända underrättelser", - "Name[ta]": "புஷ் அறிவிப்புகள்", - "Name[tr]": "Anında Bildirimler", - "Name[uk]": "Імпульсні сповіщення", - "Name[zh_CN]": "推送通知", - "Name[zh_TW]": "推送通知" + "Name": "Push Services", + "Name[ar]": "خدمات الإشعارات الفورية", + "Name[bg]": "Услуги за известия", + "Name[ca@valencia]": "Serveis de notificació automàtica", + "Name[ca]": "Serveis de notificació automàtica", + "Name[cs]": "Služby push", + "Name[de]": "Push-Dienste", + "Name[es]": "Servicios push", + "Name[eu]": "Push zerbitzuak", + "Name[fr]": "Services de notifications automatiques", + "Name[he]": "שירותים בדחיפה", + "Name[ia]": "Servicios de push ", + "Name[it]": "Servizi push", + "Name[ka]": "პუშ-სერვისები", + "Name[ko]": "푸시 서비스", + "Name[lt]": "„Push“ paslaugos", + "Name[nl]": "Push-services", + "Name[nn]": "Varslingstenester", + "Name[pt_BR]": "Serviços push", + "Name[ro]": "Servicii „push”", + "Name[ru]": "Push-службы", + "Name[sk]": "Služby Push", + "Name[sl]": "Potisne storitve", + "Name[sv]": "Utsändningstjänster", + "Name[ta]": "புஷ் சேவைகள்", + "Name[tr]": "Anında Bildirim Hizmetleri", + "Name[ug]": "يەتكۈزۈش ئۇقتۇرۇشى", + "Name[uk]": "Служби надсилання", + "Name[zh_CN]": "推送服务", + "Name[zh_TW]": "推送通知服務" }, "X-KDE-Keywords": "Push notifications,unified push,KUnifiedPush", "X-KDE-Keywords[ar]": "Push notifications,unified push,إشعارات الدفع,الدفع الموحد,KUnifiedPush,إشعارات فورية", "X-KDE-Keywords[bg]": "насочени известия,KUnifiedPush", "X-KDE-Keywords[ca@valencia]": "Notificacions automàtiques,notificacions unificades,KUnifiedPush", "X-KDE-Keywords[ca]": "Notificacions automàtiques,notificacions unificades,KUnifiedPush", + "X-KDE-Keywords[cs]": "Push oznámení,sjednocené push oznámení,KUnifiedPush", "X-KDE-Keywords[de]": "Push-Benachrichtigungen,UnifiedPush,KUnifiedPush", "X-KDE-Keywords[en_GB]": "Push notifications,unified push,KUnifiedPush", "X-KDE-Keywords[eo]": "Puŝ-sciigoj,unuiĝinta puŝo,KUnifiedPush", @@ -99,7 +92,7 @@ "X-KDE-Keywords[hu]": "Leküldéses értesítések,egységes leküldés,KUnifiedPush", "X-KDE-Keywords[ia]": "Notificationes de Push, push unificate, KUnifiedPush", "X-KDE-Keywords[it]": "Notifiche push,push unificate,KUnifiedPush", - "X-KDE-Keywords[ka]": "Push notifications,unified push,KUnifiedPush;პუშ გაფრთხილებები", + "X-KDE-Keywords[ka]": "Push notifications,unified push,KUnifiedPush;პუშ-გაფრთხილებები", "X-KDE-Keywords[ko]": "푸시 알림,통합 푸시", "X-KDE-Keywords[lt]": "Push notifications,unified push,KUnifiedPush,Push pranešimai,jungtinis push,bendras push,KUnifiedPush,push žinutės,push zinutes", "X-KDE-Keywords[lv]": "Pašpiegādes paziņojumi,apvienotā pašpiegāde,KUnifiedPush",
