Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package discover6 for openSUSE:Factory checked in at 2026-06-25 10:48:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/discover6 (Old) and /work/SRC/openSUSE:Factory/.discover6.new.2088 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "discover6" Thu Jun 25 10:48:23 2026 rev:46 rq:1361383 version:6.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/discover6/discover6.changes 2026-06-18 21:35:02.166112734 +0200 +++ /work/SRC/openSUSE:Factory/.discover6.new.2088/discover6.changes 2026-06-25 10:48:28.387237538 +0200 @@ -1,0 +2,13 @@ +Tue Jun 23 10:54:32 UTC 2026 - Fabian Vogt <[email protected]> + +- Update to 6.7.1: + * New bugfix release + * For more details see https://kde.org/announcements/plasma/6/6.7.1 +- Changes since 6.7.0: + * Update version for new release 6.7.1 + * rpm-ostree: Wait for 60 seconds before looking at deployments + * rpm-ostree: Limit filesystem watcher triggers (kde#519672) + * appiumtests: fix removeButton click + * Generate valid appstream:// URLs for Flatpak apps + +------------------------------------------------------------------- Old: ---- discover-6.7.0.tar.xz discover-6.7.0.tar.xz.sig New: ---- discover-6.7.1.tar.xz discover-6.7.1.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ discover6.spec ++++++ --- /var/tmp/diff_new_pack.fhRPO0/_old 2026-06-25 10:48:29.283268501 +0200 +++ /var/tmp/diff_new_pack.fhRPO0/_new 2026-06-25 10:48:29.283268501 +0200 @@ -24,14 +24,14 @@ %global have_fwupd (0%{?suse_version} > 1500 || 0%{?sle_version} >= 150600) Name: discover6 -Version: 6.7.0 +Version: 6.7.1 Release: 0 Summary: Software store for the KDE Plasma desktop License: GPL-2.0-only AND GPL-3.0-only AND GPL-3.0-or-later URL: https://apps.kde.org/discover/ -Source: %{rname}-%{version}.tar.xz +Source: https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz %if %{with released} -Source1: %{rname}-%{version}.tar.xz.sig +Source1: https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz.sig Source2: plasma.keyring %endif # PATCH-FIX-OPENSUSE ++++++ discover-6.7.0.tar.xz -> discover-6.7.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/CMakeLists.txt new/discover-6.7.1/CMakeLists.txt --- old/discover-6.7.0/CMakeLists.txt 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/CMakeLists.txt 2026-06-23 10:10:23.000000000 +0200 @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) project(discover) -set(PROJECT_VERSION "6.7.0") +set(PROJECT_VERSION "6.7.1") set(QT_MIN_VERSION "6.10.0") set(KF6_MIN_VERSION "6.26.0") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/appiumtests/flatpak.py new/discover-6.7.1/appiumtests/flatpak.py --- old/discover-6.7.0/appiumtests/flatpak.py 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/appiumtests/flatpak.py 2026-06-23 10:10:23.000000000 +0200 @@ -60,10 +60,13 @@ installButton = self.driver.find_element(by=AppiumBy.XPATH, value="//*[@name='Install from Flathub (user)' and contains(@accessibility-id, 'Button')]") installButton.click() - removeButton = WebDriverWait(self.driver, 120).until( - EC.element_to_be_clickable((AppiumBy.XPATH, "//*[@name='Remove' and contains(@accessibility-id, 'Button')]")) + removeButtons = WebDriverWait(self.driver, 120).until( + EC.visibility_of_any_elements_located((AppiumBy.XPATH, "//*[@name='Remove' and contains(@accessibility-id, 'Button')]")) ) - removeButton.click() + for button in removeButtons: + if button.is_enabled(): + button.click() + break # should find install button again after removal WebDriverWait(self.driver, 30).until( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/discover/org.kde.discover.appdata.xml new/discover-6.7.1/discover/org.kde.discover.appdata.xml --- old/discover-6.7.0/discover/org.kde.discover.appdata.xml 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/discover/org.kde.discover.appdata.xml 2026-06-23 10:10:23.000000000 +0200 @@ -326,10 +326,10 @@ </provides> <compulsory_for_desktop>KDE</compulsory_for_desktop> <releases> + <release version="6.7.1" date="2026-06-23"/> <release version="6.7.0" date="2026-06-16"/> <release version="6.6.5" date="2026-05-12"/> <release version="6.6.4" date="2026-04-06"/> - <release version="6.6.3" date="2026-03-17"/> </releases> <content_rating type="oars-1.1"/> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp new/discover-6.7.1/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp --- old/discover-6.7.0/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/libdiscover/backends/FlatpakBackend/FlatpakResource.cpp 2026-06-23 10:10:23.000000000 +0200 @@ -683,7 +683,7 @@ return m_resourceFile; } - QUrl ret(QStringLiteral("appstream:") + appstreamId()); + QUrl ret(QStringLiteral("appstream://") + appstreamId()); const AppStream::Provided::Kind AppStream_Provided_KindId = (AppStream::Provided::Kind)12; // Should be AppStream::Provided::KindId when released const auto provided = m_appdata.provided(AppStream_Provided_KindId).items(); if (!provided.isEmpty()) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/libdiscover/backends/FlatpakBackend/org.kde.discover.flatpak.appdata.xml new/discover-6.7.1/libdiscover/backends/FlatpakBackend/org.kde.discover.flatpak.appdata.xml --- old/discover-6.7.0/libdiscover/backends/FlatpakBackend/org.kde.discover.flatpak.appdata.xml 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/libdiscover/backends/FlatpakBackend/org.kde.discover.flatpak.appdata.xml 2026-06-23 10:10:23.000000000 +0200 @@ -167,9 +167,9 @@ <developer_name xml:lang="zh-TW">Aleix Pol Gonzalez</developer_name> <icon type="stock">system-software-install</icon> <releases> + <release version="6.7.1" date="2026-06-23"/> <release version="6.7.0" date="2026-06-16"/> <release version="6.6.5" date="2026-05-12"/> <release version="6.6.4" date="2026-04-06"/> - <release version="6.6.3" date="2026-03-17"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/libdiscover/backends/PackageKitBackend/org.kde.discover.packagekit.appdata.xml new/discover-6.7.1/libdiscover/backends/PackageKitBackend/org.kde.discover.packagekit.appdata.xml --- old/discover-6.7.0/libdiscover/backends/PackageKitBackend/org.kde.discover.packagekit.appdata.xml 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/libdiscover/backends/PackageKitBackend/org.kde.discover.packagekit.appdata.xml 2026-06-23 10:10:23.000000000 +0200 @@ -167,9 +167,9 @@ <developer_name xml:lang="zh-TW">Aleix Pol Gonzalez</developer_name> <icon type="stock">system-software-install</icon> <releases> + <release version="6.7.1" date="2026-06-23"/> <release version="6.7.0" date="2026-06-16"/> <release version="6.6.5" date="2026-05-12"/> <release version="6.6.4" date="2026-04-06"/> - <release version="6.6.3" date="2026-03-17"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.cpp new/discover-6.7.1/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.cpp --- old/discover-6.7.0/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.cpp 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.cpp 2026-06-23 10:10:23.000000000 +0200 @@ -32,27 +32,22 @@ // Setup a watcher to trigger a check for reboot when the deployments are changed // and there is thus likely an new deployment installed following an update. m_watcher = new QFileSystemWatcher(this); + connect(m_watcher, &QFileSystemWatcher::directoryChanged, this, [this]() { + // Stop watching all directories + m_watcher->removePaths(m_watcher->directories()); + qCInfo(RPMOSTREE_LOG) << "Change in deployments. Triggering timer"; + m_timer->start(); + }); + setupWatcherPaths(); // We also setup a timer to avoid triggering a check immediately when a new // deployment is made available and instead wait a bit to let things settle down. m_timer = new QTimer(this); m_timer->setSingleShot(true); - // Wait 10 seconds for all rpm-ostree operations to complete - m_timer->setInterval(10000); + // Wait 60 seconds for all rpm-ostree operations to complete + m_timer->setInterval(60000); connect(m_timer, &QTimer::timeout, this, &RpmOstreeNotifier::checkForPendingDeployment); - // Find all ostree managed system installations available. There is usually only one but - // doing that dynamically here avoids hardcoding a specific value or doing a DBus call. - QDirIterator it(QStringLiteral("/ostree/deploy/"), QDir::AllDirs | QDir::NoDotAndDotDot); - while (it.hasNext()) { - QString path = QStringLiteral("%1/deploy/").arg(it.next()); - m_watcher->addPath(path); - qCInfo(RPMOSTREE_LOG) << "Looking for new deployments in" << path; - } - connect(m_watcher, &QFileSystemWatcher::directoryChanged, this, [this]() { - m_timer->start(); - }); - qCInfo(RPMOSTREE_LOG) << "Looking for ostree format"; m_process = new QProcess(this); m_stdout = QByteArray(); @@ -140,6 +135,18 @@ return QFile::exists(QStringLiteral("/run/ostree-booted")); } +void RpmOstreeNotifier::setupWatcherPaths() +{ + // Find all ostree managed system installations available. There is usually only one but + // doing that dynamically here avoids hardcoding a specific value or doing a DBus call. + QDirIterator it(QStringLiteral("/ostree/deploy/"), QDir::AllDirs | QDir::NoDotAndDotDot); + while (it.hasNext()) { + const QString path = it.next() + QLatin1String("/deploy/"); + m_watcher->addPath(path); + qCInfo(RPMOSTREE_LOG) << "Looking for new deployments in" << path; + } +} + void RpmOstreeNotifier::recheckSystemUpdateNeeded() { // Refuse to run on systems not managed by rpm-ostree @@ -314,6 +321,9 @@ void RpmOstreeNotifier::checkForPendingDeployment() { + // Re-setup the paths to watch for deployments now that the timer expired. + setupWatcherPaths(); + qCInfo(RPMOSTREE_LOG) << "Looking at existing deployments"; m_process = new QProcess(this); m_stdout = QByteArray(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.h new/discover-6.7.1/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.h --- old/discover-6.7.0/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.h 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/libdiscover/backends/RpmOstreeBackend/RpmOstreeNotifier.h 2026-06-23 10:10:23.000000000 +0200 @@ -61,6 +61,9 @@ * only notify once about an update for a given version. */ QString m_updateVersion; + /* Setup the paths in the filesystem watcher to look for changes in deployments */ + void setupWatcherPaths(); + /* Check if we already have a pending deployment for the version availalbe * for update */ void checkForPendingDeployment(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/libdiscover/backends/SnapBackend/org.kde.discover.snap.appdata.xml new/discover-6.7.1/libdiscover/backends/SnapBackend/org.kde.discover.snap.appdata.xml --- old/discover-6.7.0/libdiscover/backends/SnapBackend/org.kde.discover.snap.appdata.xml 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/libdiscover/backends/SnapBackend/org.kde.discover.snap.appdata.xml 2026-06-23 10:10:23.000000000 +0200 @@ -165,9 +165,9 @@ <developer_name xml:lang="zh-TW">Aleix Pol Gonzalez</developer_name> <icon type="stock">system-software-install</icon> <releases> + <release version="6.7.1" date="2026-06-23"/> <release version="6.7.0" date="2026-06-16"/> <release version="6.6.5" date="2026-05-12"/> <release version="6.6.4" date="2026-04-06"/> - <release version="6.6.3" date="2026-03-17"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/po/bg/libdiscover.po new/discover-6.7.1/po/bg/libdiscover.po --- old/discover-6.7.0/po/bg/libdiscover.po 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/po/bg/libdiscover.po 2026-06-23 10:10:23.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: discover\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-05-22 02:47+0000\n" -"PO-Revision-Date: 2026-05-28 19:03+0200\n" +"PO-Revision-Date: 2026-06-17 15:45+0200\n" "Last-Translator: Mincho Kondarev <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" "Language: bg\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 26.04.1\n" +"X-Generator: Lokalize 26.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -2163,7 +2163,7 @@ #: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:414 #, kde-format msgid "Release Notes:" -msgstr "Бележки към изданието:" +msgstr "Бележки към версията:" #: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:415 #, kde-format @@ -2207,8 +2207,8 @@ #, kde-format msgid "<h3>%1</h3>Upgrade to new version %2<br/>No release notes provided" msgstr "" -"<h3>%1</h3>Надграждане до нова версия %2<br/>Не са предоставени бележки за " -"версиите" +"<h3>%1</h3>Надграждане до нова версия %2<br/>Не са предоставени бележки към " +"версията" #: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:205 #, kde-format @@ -2216,8 +2216,8 @@ "<h3>%1</h3>Upgrade to new version %2<br/>Release notes:<blockquote>%3</" "blockquote>" msgstr "" -"<h3>%1</h3>Надграждане до нова версия %2<br/>Бележки за версията:<blockquote>" -"%3</blockquote>" +"<h3>%1</h3>Надграждане до нова версия %2<br/>Бележки към версията:" +"<blockquote>%3</blockquote>" #: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:231 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/po/hu/libdiscover.po new/discover-6.7.1/po/hu/libdiscover.po --- old/discover-6.7.0/po/hu/libdiscover.po 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/po/hu/libdiscover.po 2026-06-23 10:10:23.000000000 +0200 @@ -4,13 +4,13 @@ # Kristóf Kiszel <[email protected]>, 2010, 2011, 2012, 2014, 2015, 2019, 2020, 2021. # Kiszel Kristóf, 2011, 2017. # Balázs Úr <[email protected]>, 2012, 2013, 2014. -# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Kristof Kiszel <[email protected]> +# SPDX-FileCopyrightText: 2021-2026 Kristof Kiszel <[email protected]> msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-05-22 02:47+0000\n" -"PO-Revision-Date: 2025-11-13 21:00+0100\n" +"PO-Revision-Date: 2026-06-18 22:23+0200\n" "Last-Translator: Kristof Kiszel <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" "Language: hu\n" @@ -18,7 +18,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.2\n" +"X-Generator: Lokalize 26.04.2\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -418,18 +418,17 @@ #: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:334 #: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:333 -#, fuzzy, kde-format -#| msgid "Launch" +#, kde-format msgctxt "Category" msgid "Launchers" -msgstr "Indítás" +msgstr "Indítók" #: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:343 #: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:342 #, kde-format msgctxt "Category" msgid "Tools" -msgstr "" +msgstr "Eszközök" #: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:355 #: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:355 @@ -990,6 +989,8 @@ "Cannot create transaction for '%1':<nl/>%2<nl/><nl/>Please report this to <a " "href='%3'>%3</a>" msgstr "" +"Nem hozható létre tranzakció ehhez: „%1”:<nl/>%2<nl/><nl/>Jelentse ezt itt:" +"<a href='%3'>%3</a>" #: libdiscover/backends/FlatpakBackend/FlatpakTransactionThread.cpp:424 #, kde-format @@ -1119,14 +1120,13 @@ #: libdiscover/backends/HoloBackend/HoloBackend.cpp:73 #, kde-format msgid "Holo" -msgstr "" +msgstr "Holo" #: libdiscover/backends/HoloBackend/HoloBackend.cpp:113 -#, fuzzy, kde-format -#| msgid "SteamOS: Unable to query atomupd for SteamOS Updates..." +#, kde-format msgctxt "%1 is the pretty name of the distro e.g. Holo or SteamOS" msgid "Holo: Unable to query atomupd for %1 Updates..." -msgstr "SteamOS: Az atomupd nem kérhető le a SteamOS frissítésekhez…" +msgstr "Holo: Az atomupd nem kérhető le a(z) %1 frissítésekhez…" #: libdiscover/backends/KNSBackend/KNSBackend.cpp:64 #, kde-format @@ -2463,6 +2463,7 @@ msgid "" "<br/>This version is pinned and won't be automatically removed on updates." msgstr "" +"<br/>Ez a verzió rögzített, frissítéskor nem lesz automatikusan eltávolítva." #: libdiscover/backends/RpmOstreeBackend/RpmOstreeResource.cpp:360 #: libdiscover/backends/RpmOstreeBackend/RpmOstreeResource.cpp:373 @@ -2470,7 +2471,7 @@ #, kde-format msgctxt "@label OS vendor" msgid "Fedora Project" -msgstr "" +msgstr "Fedora Project" #: libdiscover/backends/RpmOstreeBackend/RpmOstreeResource.cpp:400 #, kde-format @@ -2634,28 +2635,27 @@ msgstr "Minősített kiadó a snapcraft.io-n" #: libdiscover/backends/SnapBackend/SnapTransaction.cpp:57 -#, fuzzy, kde-format -#| msgid "" -#| "This Snap application is not compatible with security sandboxing and will " -#| "have full access to this computer. Install it anyway?" +#, kde-format msgid "" "This Snap application is not compatible with security sandboxing and will " "have full access to this system. Install it anyway?" msgstr "" "Ez a Snap alkalmazás nem kompatibilis a biztonsági tesztkörnyezettel, és " -"teljes hozzáférés lesz a számítógéphez. Biztosan telepíti?" +"teljes hozzáférése lesz a rendszerhez. Biztosan telepíti?" #: libdiscover/backends/SystemdSysupdateBackend/SystemdSysupdateBackend.cpp:149 #, kde-kuit-format msgctxt "@info:status" msgid "Failed to get appstream data for “%1”.<nl/><nl/>Error message: %2" msgstr "" +"Nem sikerült lekérni az appstream adatokat ehhez: „%1”.<nl/><nl/>Hibaüzenet: " +"%2" #: libdiscover/backends/SystemdSysupdateBackend/SystemdSysupdateBackend.cpp:154 #, kde-format msgctxt "@info:status" msgid "No appstream URLs found for target “%1”" -msgstr "" +msgstr "Nem található appstream URL a(z) „%1” célhoz" #: libdiscover/backends/SystemdSysupdateBackend/SystemdSysupdateBackend.cpp:165 #, kde-kuit-format @@ -2664,18 +2664,21 @@ "Failed to fetch the updates from <a href='%1'>%1</a>.<nl/><nl/>Error " "message: %2" msgstr "" +"Nem sikerült lekérni a frissítéseket innen: <a href='%1'>%1</a>.<nl/><nl/" +">Hibaüzenet: %2" #: libdiscover/backends/SystemdSysupdateBackend/SystemdSysupdateBackend.cpp:178 #, kde-kuit-format msgctxt "@info:status" msgid "Failed to parse update metadata.<nl/><nl/>Error message: %1" msgstr "" +"Nem sikerült feldolgozni a frissítés metaadatait.<nl/><nl/>Hibaüzenet: %1" #: libdiscover/backends/SystemdSysupdateBackend/SystemdSysupdateBackend.cpp:187 #, kde-format msgctxt "@info:status" msgid "No components found in appstream metadata for target “%1”" -msgstr "" +msgstr "Nem találhatók komponensek a(z) „%1” cél appstream metaadataiban" #: libdiscover/DiscoverBackendsFactory.cpp:127 #, kde-format @@ -2734,32 +2737,25 @@ msgstr "%1 frissítése" #: libdiscover/resources/ResourcesProxyModel.cpp:561 -#, fuzzy, kde-format -#| msgid "Applications" +#, kde-format msgctxt "@label" msgid "Applications" msgstr "Alkalmazások" #: libdiscover/resources/ResourcesProxyModel.cpp:563 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Addons" +#, kde-format msgctxt "@label" msgid "Addons" msgstr "Bővítmények" #: libdiscover/resources/ResourcesProxyModel.cpp:565 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Application Support" +#, kde-format msgctxt "@label" msgid "Application Support" msgstr "Alkalmazástámogatás" #: libdiscover/resources/ResourcesProxyModel.cpp:567 -#, fuzzy, kde-format -#| msgctxt "Category" -#| msgid "System" +#, kde-format msgctxt "@label" msgid "System" msgstr "Rendszer" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/po/hu/plasma-discover.po new/discover-6.7.1/po/hu/plasma-discover.po --- old/discover-6.7.0/po/hu/plasma-discover.po 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/po/hu/plasma-discover.po 2026-06-23 10:10:23.000000000 +0200 @@ -4,13 +4,13 @@ # Kristóf Kiszel <[email protected]>, 2012, 2014, 2015, 2019. # Balázs Úr <[email protected]>, 2012, 2013, 2014. # Kiszel Kristóf <[email protected]>, 2017, 2020. -# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Kristof Kiszel <[email protected]> +# SPDX-FileCopyrightText: 2021-2026 Kristof Kiszel <[email protected]> msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-05-22 02:47+0000\n" -"PO-Revision-Date: 2025-10-15 20:38+0200\n" +"PO-Revision-Date: 2026-06-18 21:46+0200\n" "Last-Translator: Kristof Kiszel <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" "Language: hu\n" @@ -18,7 +18,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.2\n" +"X-Generator: Lokalize 26.04.2\n" #: discover/DiscoverObject.cpp:198 #, kde-format @@ -203,10 +203,9 @@ msgstr "Egy alkalmazásfelfedező" #: discover/main.cpp:124 -#, fuzzy, kde-format -#| msgid "© 2010-2025 Plasma Development Team" +#, kde-format msgid "© 2010-2026 Plasma Development Team" -msgstr "© A Plasma fejlesztői, 2010-2025." +msgstr "© A Plasma fejlesztői, 2010-2026." #: discover/main.cpp:125 #, kde-format @@ -291,11 +290,10 @@ #: discover/qml/UpdatesPage.qml:316 discover/qml/WebflowDialog.qml:41 #, kde-format msgid "Cancel" -msgstr "Mégsem" +msgstr "Mégse" #: discover/qml/ApplicationDelegate.qml:160 -#, fuzzy, kde-format -#| msgid "No ratings yet" +#, kde-format msgid "No ratings" msgstr "Nincsenek értékelések" @@ -582,16 +580,13 @@ #: discover/qml/ApplicationPageFullComponent.qml:114 #: discover/qml/ApplicationPageStickyComponent.qml:46 -#, fuzzy, kde-format -#| msgid "Unknown author" +#, kde-format msgctxt "As in 'this app is made by an unknown author'" msgid "Unknown author" msgstr "Ismeretlen szerző" #: discover/qml/ApplicationPageFullComponent.qml:148 -#, fuzzy, kde-format -#| msgid "%1 rating" -#| msgid_plural "%1 ratings" +#, kde-format msgctxt "@info as in the number of ratings an application has" msgid "%1 rating" msgid_plural "%1 ratings" @@ -599,15 +594,13 @@ msgstr[1] "%1 értékelés" #: discover/qml/ApplicationPageFullComponent.qml:148 -#, fuzzy, kde-format -#| msgid "No ratings yet" +#, kde-format msgctxt "@info" msgid "No ratings yet" msgstr "Nincsenek értékelések" #: discover/qml/ApplicationPageFullComponent.qml:196 -#, fuzzy, kde-format -#| msgid "Version:" +#, kde-format msgctxt "@info" msgid "Version:" msgstr "Verzió:" @@ -618,9 +611,7 @@ msgstr "Méret:" #: discover/qml/ApplicationPageFullComponent.qml:242 -#, fuzzy, kde-format -#| msgid "License:" -#| msgid_plural "Licenses:" +#, kde-format msgctxt "@info" msgid "License:" msgid_plural "Licenses:" @@ -641,17 +632,13 @@ msgstr "Mit jelent ez?" #: discover/qml/ApplicationPageFullComponent.qml:348 -#, fuzzy, kde-format -#| msgid "All Licenses" +#, kde-format msgctxt "Show all licenses of the package" msgid "All licenses…" -msgstr "Minden licenc" +msgstr "Minden licenc…" #: discover/qml/ApplicationPageFullComponent.qml:361 -#, fuzzy, kde-format -#| msgctxt "" -#| "@label The app is suitable for people of the following ages or older" -#| msgid "Ages:" +#, kde-format msgctxt "@info The app is suitable for people of the following ages or older" msgid "Ages:" msgstr "Korhatár:" @@ -669,8 +656,7 @@ msgstr "%1+" #: discover/qml/ApplicationPageFullComponent.qml:391 -#, fuzzy, kde-format -#| msgid "See details" +#, kde-format msgctxt "@action:button See content rating details" msgid "See details" msgstr "Részletek megtekintése" @@ -679,7 +665,7 @@ #, kde-format msgctxt "@action:button" msgid "Scroll to top" -msgstr "" +msgstr "Görgetés legfelülre" #: discover/qml/ApplicationsListPage.qml:57 #, kde-format @@ -730,14 +716,12 @@ msgstr "Név" #: discover/qml/ApplicationsListPage.qml:129 -#, fuzzy, kde-format -#| msgid "Submit review" +#, kde-format msgid "Number of reviews" -msgstr "Értékelés elküldése" +msgstr "Értékelések száma" #: discover/qml/ApplicationsListPage.qml:140 -#, fuzzy, kde-format -#| msgid "Rating" +#, kde-format msgctxt "@item:inmenu sort by highest-rated apps" msgid "Rating" msgstr "Értékelés" @@ -756,7 +740,7 @@ #, kde-format msgctxt "@info" msgid "Group by Type" -msgstr "" +msgstr "Csoportosítás típus szerint" #: discover/qml/ApplicationsListPage.qml:248 #, kde-format @@ -898,16 +882,14 @@ msgstr "Következő képernyőkép" #: discover/qml/DiscoverDrawer.qml:161 -#, fuzzy, kde-format -#| msgid "Updates are available" +#, kde-format msgid "Security updates available" -msgstr "Frissítések érhetőek el" +msgstr "Biztonsági frissítések érhetők el" #: discover/qml/DiscoverDrawer.qml:162 -#, fuzzy, kde-format -#| msgid "Updates are available" +#, kde-format msgid "Updates available" -msgstr "Frissítések érhetőek el" +msgstr "Frissítések érhetők el" #: discover/qml/DiscoverWindow.qml:48 #, kde-format @@ -935,10 +917,9 @@ msgstr "Fr&issítések (lekérés…)" #: discover/qml/DiscoverWindow.qml:102 -#, fuzzy, kde-format -#| msgid "Updates" +#, kde-format msgid "&Updates" -msgstr "Frissítések" +msgstr "&Frissítések" #: discover/qml/DiscoverWindow.qml:110 #, kde-format @@ -976,7 +957,7 @@ #, kde-format msgctxt "@title:dialog" msgid "Discover is Offline" -msgstr "" +msgstr "A Discover offline" #: discover/qml/DiscoverWindow.qml:348 #, kde-format @@ -984,6 +965,8 @@ msgid "" "Please connect to a network to install applications and update the system." msgstr "" +"Csatlakozzon egy hálózathoz alkalmazások telepítéséhez és a rendszer " +"frissítéséhez." #: discover/qml/DiscoverWindow.qml:365 #, kde-format @@ -1067,6 +1050,8 @@ "You can help KDE improve Discover by sharing anonymous information on how " "you use it." msgstr "" +"Segíthet a KDE-nek a Discover fejlesztésében azzal, hogy névtelen adatokat " +"oszt meg arról, hogyan használja az alkalmazást." #: discover/qml/Feedback.qml:60 #, kde-format @@ -1460,11 +1445,10 @@ msgstr "Tartalom megjelenítése" #: discover/qml/SourcesPage.qml:305 -#, fuzzy, kde-format -#| msgid "Unable to find resource: %1" +#, kde-format msgctxt "@info:tooltip" msgid "Enable this source" -msgstr "Nem található erőforrás: %1" +msgstr "Engedélyezi ezt a forrást" #: discover/qml/SourcesPage.qml:326 #, kde-format @@ -1529,12 +1513,12 @@ msgstr "Összes frissítése" #: discover/qml/UpdatesPage.qml:189 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "Updates will be installed after the system is restarted" +#, kde-format msgctxt "@info" msgid "A pending update will be installed when restarting the system." -msgstr "A frissítések a rendszer újraindítása után kerülnek telepítésre" +msgstr "" +"A függőben lévő frissítések a rendszer újraindítása után kerülnek " +"telepítésre." #: discover/qml/UpdatesPage.qml:210 #, kde-format @@ -1552,30 +1536,25 @@ msgstr "Kijelölés megszüntetése" #: discover/qml/UpdatesPage.qml:287 -#, fuzzy, kde-format -#| msgid "updates not selected" +#, kde-format msgctxt "@info After updates complete, shut down/restart/quit" msgid "After updates complete:" -msgstr "frissítés nincs kijelölve" +msgstr "A frissítések befejezése után:" #: discover/qml/UpdatesPage.qml:293 #, kde-format msgctxt "@item:inlistbox after updates complete, do nothing" msgid "Do nothing" -msgstr "" +msgstr "Nincs művelet" #: discover/qml/UpdatesPage.qml:294 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Restart" +#, kde-format msgctxt "@item:inlistbox after updates complete, restart" msgid "Restart" msgstr "Újraindítás" #: discover/qml/UpdatesPage.qml:295 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Shut down" +#, kde-format msgctxt "@item:inlistbox after updates complete, shut down" msgid "Shut down" msgstr "Leállítás" @@ -1584,7 +1563,7 @@ #, kde-format msgctxt "@item:inlistbox after updates complete, quit" msgid "Quit" -msgstr "" +msgstr "Kilépés" #: discover/qml/UpdatesPage.qml:306 #, kde-format @@ -1603,14 +1582,10 @@ msgstr "Telepítés" #: discover/qml/UpdatesPage.qml:543 -#, fuzzy, kde-format -#| msgctxt "" -#| "@item:inlistbox %1 is the name of an app source e.g. \"Flathub\" or " -#| "\"Ubuntu\"" -#| msgid "From %1" +#, kde-format msgctxt "@info This update is from the following source" msgid "From:" -msgstr "Forrás: %1" +msgstr "Forrás:" #: discover/qml/UpdatesPage.qml:560 #, kde-format @@ -1621,8 +1596,7 @@ msgstr "%1 (%2)" #: discover/qml/UpdatesPage.qml:572 -#, fuzzy, kde-format -#| msgid "More Information…" +#, kde-format msgctxt "@action:button minimize the length of this label" msgid "More Info…" msgstr "További információk…" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/po/pl/libdiscover.po new/discover-6.7.1/po/pl/libdiscover.po --- old/discover-6.7.0/po/pl/libdiscover.po 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/po/pl/libdiscover.po 2026-06-23 10:10:23.000000000 +0200 @@ -1,7 +1,7 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # Artur Chłond <[email protected]>, 2011. -# SPDX-FileCopyrightText: 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Łukasz Wojniłowicz <[email protected]> +# SPDX-FileCopyrightText: 2011-2026 Łukasz Wojniłowicz <[email protected]> # Marta Rybczyńska <[email protected]>, 2013. # Ignacy Kajdan <[email protected]>, 2021. # @@ -10,7 +10,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-05-22 02:47+0000\n" -"PO-Revision-Date: 2026-04-11 07:22+0200\n" +"PO-Revision-Date: 2026-06-13 17:18+0200\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: pl\n" "Language: pl\n" @@ -19,7 +19,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 25.08.2\n" +"X-Generator: Lokalize 26.04.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -2743,32 +2743,25 @@ msgstr "Odświeżanie %1" #: libdiscover/resources/ResourcesProxyModel.cpp:561 -#, fuzzy, kde-format -#| msgid "Applications" +#, kde-format msgctxt "@label" msgid "Applications" -msgstr "Programy" +msgstr "Aplikacje" #: libdiscover/resources/ResourcesProxyModel.cpp:563 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Addons" +#, kde-format msgctxt "@label" msgid "Addons" msgstr "Dodatki" #: libdiscover/resources/ResourcesProxyModel.cpp:565 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Application Support" +#, kde-format msgctxt "@label" msgid "Application Support" msgstr "Obsługa aplikacji" #: libdiscover/resources/ResourcesProxyModel.cpp:567 -#, fuzzy, kde-format -#| msgctxt "Category" -#| msgid "System" +#, kde-format msgctxt "@label" msgid "System" msgstr "System" @@ -2842,7 +2835,7 @@ #, kde-format msgctxt "@item:inlistbox" msgid "Applications" -msgstr "Programy" +msgstr "Aplikacje" #: libdiscover/UpdateModel/UpdateModel.cpp:138 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/po/ru/libdiscover.po new/discover-6.7.1/po/ru/libdiscover.po --- old/discover-6.7.0/po/ru/libdiscover.po 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/po/ru/libdiscover.po 2026-06-23 10:10:23.000000000 +0200 @@ -1,7 +1,7 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# SPDX-FileCopyrightText: 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Alexander Yavorsky <[email protected]> +# SPDX-FileCopyrightText: 2018-2026 Alexander Yavorsky <[email protected]> # Yuri Efremov <[email protected]>, 2010, 2011, 2012, 2013, 2014. # Alexander Potashev <[email protected]>, 2010, 2011, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021. # Alexander Lakhin <[email protected]>, 2013. @@ -13,7 +13,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-05-22 02:47+0000\n" -"PO-Revision-Date: 2026-04-03 20:31+0200\n" +"PO-Revision-Date: 2026-06-18 19:39+0200\n" "Last-Translator: Alexander Yavorskiy <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" "Language: ru\n" @@ -22,7 +22,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Lokalize 25.12.3\n" +"X-Generator: Lokalize 26.04.2\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -2491,6 +2491,7 @@ msgid "" "<br/>This version is pinned and won't be automatically removed on updates." msgstr "" +"<br/>Эта версия закреплена и не будет автоматически удалена при обновлениях." #: libdiscover/backends/RpmOstreeBackend/RpmOstreeResource.cpp:360 #: libdiscover/backends/RpmOstreeBackend/RpmOstreeResource.cpp:373 @@ -2498,7 +2499,7 @@ #, kde-format msgctxt "@label OS vendor" msgid "Fedora Project" -msgstr "" +msgstr "Fedora Project" #: libdiscover/backends/RpmOstreeBackend/RpmOstreeResource.cpp:400 #, kde-format @@ -2765,32 +2766,25 @@ msgstr "Проверка наличия обновлений: %1" #: libdiscover/resources/ResourcesProxyModel.cpp:561 -#, fuzzy, kde-format -#| msgid "Applications" +#, kde-format msgctxt "@label" msgid "Applications" msgstr "Приложения" #: libdiscover/resources/ResourcesProxyModel.cpp:563 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Addons" +#, kde-format msgctxt "@label" msgid "Addons" msgstr "Дополнения" #: libdiscover/resources/ResourcesProxyModel.cpp:565 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Application Support" +#, kde-format msgctxt "@label" msgid "Application Support" msgstr "Поддержка приложений" #: libdiscover/resources/ResourcesProxyModel.cpp:567 -#, fuzzy, kde-format -#| msgctxt "Category" -#| msgid "System" +#, kde-format msgctxt "@label" msgid "System" msgstr "Система" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/discover-6.7.0/po/ru/plasma-discover.po new/discover-6.7.1/po/ru/plasma-discover.po --- old/discover-6.7.0/po/ru/plasma-discover.po 2026-06-11 11:31:10.000000000 +0200 +++ new/discover-6.7.1/po/ru/plasma-discover.po 2026-06-23 10:10:23.000000000 +0200 @@ -1,7 +1,7 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# SPDX-FileCopyrightText: 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026 Alexander Yavorsky <[email protected]> +# SPDX-FileCopyrightText: 2018-2026 Alexander Yavorsky <[email protected]> # SPDX-FileCopyrightText: 2022, 2024, 2025, 2026 Olesya Gerasimenko <[email protected]> # Yuri Efremov <[email protected]>, 2012, 2013, 2014. # Alexander Lakhin <[email protected]>, 2013. @@ -13,7 +13,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2026-05-22 02:47+0000\n" -"PO-Revision-Date: 2026-04-03 20:16+0200\n" +"PO-Revision-Date: 2026-06-18 19:43+0200\n" "Last-Translator: Alexander Yavorskiy <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" "Language: ru\n" @@ -22,7 +22,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Lokalize 25.12.3\n" +"X-Generator: Lokalize 26.04.2\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" @@ -307,8 +307,7 @@ msgstr "Отмена" #: discover/qml/ApplicationDelegate.qml:160 -#, fuzzy, kde-format -#| msgid "No ratings yet" +#, kde-format msgid "No ratings" msgstr "Пока нет оценок" @@ -599,16 +598,13 @@ #: discover/qml/ApplicationPageFullComponent.qml:114 #: discover/qml/ApplicationPageStickyComponent.qml:46 -#, fuzzy, kde-format -#| msgid "Unknown author" +#, kde-format msgctxt "As in 'this app is made by an unknown author'" msgid "Unknown author" msgstr "Автор неизвестен" #: discover/qml/ApplicationPageFullComponent.qml:148 -#, fuzzy, kde-format -#| msgid "%1 rating" -#| msgid_plural "%1 ratings" +#, kde-format msgctxt "@info as in the number of ratings an application has" msgid "%1 rating" msgid_plural "%1 ratings" @@ -618,15 +614,13 @@ msgstr[3] "%1 оценка" #: discover/qml/ApplicationPageFullComponent.qml:148 -#, fuzzy, kde-format -#| msgid "No ratings yet" +#, kde-format msgctxt "@info" msgid "No ratings yet" msgstr "Пока нет оценок" #: discover/qml/ApplicationPageFullComponent.qml:196 -#, fuzzy, kde-format -#| msgid "Version:" +#, kde-format msgctxt "@info" msgid "Version:" msgstr "Версия:" @@ -637,13 +631,11 @@ msgstr "Размер:" #: discover/qml/ApplicationPageFullComponent.qml:242 -#, fuzzy, kde-format -#| msgid "License:" -#| msgid_plural "Licenses:" +#, kde-format msgctxt "@info" msgid "License:" msgid_plural "Licenses:" -msgstr[0] "Лицензии:" +msgstr[0] "Лицензия:" msgstr[1] "Лицензии:" msgstr[2] "Лицензии:" msgstr[3] "Лицензия:" @@ -662,17 +654,13 @@ msgstr "Что это значит?" #: discover/qml/ApplicationPageFullComponent.qml:348 -#, fuzzy, kde-format -#| msgid "All Licenses" +#, kde-format msgctxt "Show all licenses of the package" msgid "All licenses…" -msgstr "Все лицензии" +msgstr "Все лицензии…" #: discover/qml/ApplicationPageFullComponent.qml:361 -#, fuzzy, kde-format -#| msgctxt "" -#| "@label The app is suitable for people of the following ages or older" -#| msgid "Ages:" +#, kde-format msgctxt "@info The app is suitable for people of the following ages or older" msgid "Ages:" msgstr "Возраст:" @@ -690,8 +678,7 @@ msgstr "%1+" #: discover/qml/ApplicationPageFullComponent.qml:391 -#, fuzzy, kde-format -#| msgid "See details" +#, kde-format msgctxt "@action:button See content rating details" msgid "See details" msgstr "Подробности" @@ -700,7 +687,7 @@ #, kde-format msgctxt "@action:button" msgid "Scroll to top" -msgstr "" +msgstr "Прокрутить вверх" #: discover/qml/ApplicationsListPage.qml:57 #, kde-format @@ -781,7 +768,7 @@ #, kde-format msgctxt "@info" msgid "Group by Type" -msgstr "" +msgstr "Группировать по типу" #: discover/qml/ApplicationsListPage.qml:248 #, kde-format @@ -1000,14 +987,14 @@ #, kde-format msgctxt "@title:dialog" msgid "Discover is Offline" -msgstr "" +msgstr "Discover в автономном режиме" #: discover/qml/DiscoverWindow.qml:348 #, kde-format msgctxt "@info" msgid "" "Please connect to a network to install applications and update the system." -msgstr "" +msgstr "Чтобы установить приложения и обновить систему, подключитесь к сети." #: discover/qml/DiscoverWindow.qml:365 #, kde-format @@ -1090,6 +1077,7 @@ "You can help KDE improve Discover by sharing anonymous information on how " "you use it." msgstr "" +"Обезличенная информация об использовании помогает KDE улучшать Discover." #: discover/qml/Feedback.qml:60 #, kde-format @@ -1487,11 +1475,10 @@ msgstr "Показать содержимое" #: discover/qml/SourcesPage.qml:305 -#, fuzzy, kde-format -#| msgid "Unable to find resource: %1" +#, kde-format msgctxt "@info:tooltip" msgid "Enable this source" -msgstr "Не удалось найти ресурс: «%1»" +msgstr "Включить этот источник" #: discover/qml/SourcesPage.qml:326 #, kde-format @@ -1555,9 +1542,7 @@ msgstr "Установить обновления" #: discover/qml/UpdatesPage.qml:189 -#, fuzzy, kde-format -#| msgctxt "@info" -#| msgid "Updates will be installed after the system is restarted" +#, kde-format msgctxt "@info" msgid "A pending update will be installed when restarting the system." msgstr "Обновления будут установлены после перезапуска системы" @@ -1578,35 +1563,25 @@ msgstr "Снять выделение" #: discover/qml/UpdatesPage.qml:287 -#, fuzzy, kde-format -#| msgctxt "" -#| "@info on the completion of updates, the action that automatically happens " -#| "after (e.g shut down)" -#| msgid "After completing:" +#, kde-format msgctxt "@info After updates complete, shut down/restart/quit" msgid "After updates complete:" -msgstr "После завершения:" +msgstr "После завершения обновлений:" #: discover/qml/UpdatesPage.qml:293 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Do nothing" +#, kde-format msgctxt "@item:inlistbox after updates complete, do nothing" msgid "Do nothing" msgstr "Ничего не делать" #: discover/qml/UpdatesPage.qml:294 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Restart" +#, kde-format msgctxt "@item:inlistbox after updates complete, restart" msgid "Restart" msgstr "Перезагрузить" #: discover/qml/UpdatesPage.qml:295 -#, fuzzy, kde-format -#| msgctxt "@item:inlistbox" -#| msgid "Shut down" +#, kde-format msgctxt "@item:inlistbox after updates complete, shut down" msgid "Shut down" msgstr "Выключить" @@ -1615,7 +1590,7 @@ #, kde-format msgctxt "@item:inlistbox after updates complete, quit" msgid "Quit" -msgstr "" +msgstr "Выйти" #: discover/qml/UpdatesPage.qml:306 #, kde-format
