Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package plasma6-nm for openSUSE:Factory 
checked in at 2026-02-27 17:00:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma6-nm (Old)
 and      /work/SRC/openSUSE:Factory/.plasma6-nm.new.29461 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "plasma6-nm"

Fri Feb 27 17:00:20 2026 rev:39 rq:1334976 version:6.6.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma6-nm/plasma6-nm.changes    2026-02-16 
13:10:59.130192663 +0100
+++ /work/SRC/openSUSE:Factory/.plasma6-nm.new.29461/plasma6-nm.changes 
2026-02-27 17:01:29.107171049 +0100
@@ -1,0 +2,15 @@
+Tue Feb 24 17:22:06 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.1:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.6.1
+- Changes since 6.6.0:
+  * Update version for new release 6.6.1
+  * libs/models: Respond to changes to the "show virtual connections" setting 
(kde#516091)
+  * libs/editor: Respond to external configuration changes in Configuration
+  * libs/editor: Write all configuration changes with the Notify flag set
+  * Use more appropriate wired and wireless disconnection icons
+  * Correctly detect "Wi-Fi disabled" state in connection icon
+  * applet: Remove all QML import versions
+
+-------------------------------------------------------------------

Old:
----
  plasma-nm-6.6.0.tar.xz
  plasma-nm-6.6.0.tar.xz.sig

New:
----
  plasma-nm-6.6.1.tar.xz
  plasma-nm-6.6.1.tar.xz.sig

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

Other differences:
------------------
++++++ plasma6-nm.spec ++++++
--- /var/tmp/diff_new_pack.T9VkBf/_old  2026-02-27 17:01:29.999207928 +0100
+++ /var/tmp/diff_new_pack.T9VkBf/_new  2026-02-27 17:01:29.999207928 +0100
@@ -30,14 +30,14 @@
 %bcond_without openconnect
 %endif
 Name:           plasma6-nm
-Version:        6.6.0
+Version:        6.6.1
 Release:        0
 Summary:        Plasma applet written in QML for managing network connections
 License:        (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR 
LGPL-3.0-only)
 URL:            https://www.kde.org
-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
 BuildRequires:  fdupes

++++++ plasma-nm-6.6.0.tar.xz -> plasma-nm-6.6.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/CMakeLists.txt 
new/plasma-nm-6.6.1/CMakeLists.txt
--- old/plasma-nm-6.6.0/CMakeLists.txt  2026-02-12 11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/CMakeLists.txt  2026-02-24 10:42:18.000000000 +0100
@@ -2,9 +2,9 @@
 
 project(plasma-networkmanagement)
 
-set(PROJECT_VERSION "6.6.0")
+set(PROJECT_VERSION "6.6.1")
 
-set(PROJECT_DEP_VERSION "6.6.0")
+set(PROJECT_DEP_VERSION "6.6.1")
 set(QT_MIN_VERSION "6.10.0")
 set(KF6_MIN_VERSION "6.22.0")
 set(KDE_COMPILERSETTINGS_LEVEL "5.82")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/ConnectionItem.qml 
new/plasma-nm-6.6.1/applet/ConnectionItem.qml
--- old/plasma-nm-6.6.0/applet/ConnectionItem.qml       2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/applet/ConnectionItem.qml       2026-02-24 
10:42:18.000000000 +0100
@@ -6,19 +6,19 @@
 */
 pragma ComponentBehavior: Bound
 
-import QtQuick 2.15
-import QtQuick.Layouts 1.15
-import QtQuick.Controls 2.15
+import QtQuick
+import QtQuick.Layouts
+import QtQuick.Controls
 import QtQuick.Templates as T
 
-import org.kde.coreaddons 1.0 as KCoreAddons
+import org.kde.coreaddons as KCoreAddons
 import org.kde.kcmutils as KCMUtils
 
-import org.kde.kirigami 2.20 as Kirigami
-import org.kde.plasma.components 3.0 as PlasmaComponents3
-import org.kde.plasma.extras 2.0 as PlasmaExtras
+import org.kde.kirigami as Kirigami
+import org.kde.plasma.components as PlasmaComponents3
+import org.kde.plasma.extras as PlasmaExtras
 import org.kde.plasma.networkmanagement as PlasmaNM
-import org.kde.plasma.plasmoid 2.0
+import org.kde.plasma.plasmoid
 
 PlasmaExtras.ExpandableListItem {
     id: connectionItem
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/ConnectionListPage.qml 
new/plasma-nm-6.6.1/applet/ConnectionListPage.qml
--- old/plasma-nm-6.6.0/applet/ConnectionListPage.qml   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/applet/ConnectionListPage.qml   2026-02-24 
10:42:18.000000000 +0100
@@ -4,10 +4,10 @@
     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR 
LicenseRef-KDE-Accepted-LGPL
 */
 
-import QtQuick 2.15
-import QtQuick.Layouts 1.2
-import org.kde.plasma.components 3.0 as PlasmaComponents3
-import org.kde.kirigami 2.20 as Kirigami
+import QtQuick
+import QtQuick.Layouts
+import org.kde.plasma.components as PlasmaComponents3
+import org.kde.kirigami as Kirigami
 import org.kde.plasma.extras as PlasmaExtras
 import org.kde.plasma.networkmanagement as PlasmaNM
 import org.kde.networkmanager as NMQt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/DetailsText.qml 
new/plasma-nm-6.6.1/applet/DetailsText.qml
--- old/plasma-nm-6.6.0/applet/DetailsText.qml  2026-02-12 11:08:27.000000000 
+0100
+++ new/plasma-nm-6.6.1/applet/DetailsText.qml  2026-02-24 10:42:18.000000000 
+0100
@@ -6,13 +6,13 @@
 
 pragma ComponentBehavior: Bound
 
-import QtQuick 2.2
-import QtQuick.Layouts 1.15
+import QtQuick
+import QtQuick.Layouts
 
-import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons
-import org.kde.kirigami 2.20 as Kirigami
-import org.kde.plasma.extras 2.0 as PlasmaExtras
-import org.kde.plasma.components 3.0 as PlasmaComponents3
+import org.kde.kquickcontrolsaddons as KQuickControlsAddons
+import org.kde.kirigami as Kirigami
+import org.kde.plasma.extras as PlasmaExtras
+import org.kde.plasma.components as PlasmaComponents3
 import org.kde.plasma.networkmanagement as PlasmaNM
 
 MouseArea {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/PopupDialog.qml 
new/plasma-nm-6.6.1/applet/PopupDialog.qml
--- old/plasma-nm-6.6.0/applet/PopupDialog.qml  2026-02-12 11:08:27.000000000 
+0100
+++ new/plasma-nm-6.6.1/applet/PopupDialog.qml  2026-02-24 10:42:18.000000000 
+0100
@@ -4,13 +4,13 @@
     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR 
LicenseRef-KDE-Accepted-LGPL
 */
 
-import QtQuick 2.15
-import QtQuick.Controls 2.15 as QQC2
-import QtQuick.Layouts 1.2
-import org.kde.plasma.components 3.0 as PlasmaComponents3
-import org.kde.plasma.extras 2.0 as PlasmaExtras
+import QtQuick
+import QtQuick.Controls as QQC2
+import QtQuick.Layouts
+import org.kde.plasma.components as PlasmaComponents3
+import org.kde.plasma.extras as PlasmaExtras
 import org.kde.plasma.networkmanagement as PlasmaNM
-import org.kde.plasma.plasmoid 2.0
+import org.kde.plasma.plasmoid
 
 PlasmaExtras.Representation {
     id: full
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/ShareNetworkQrCodePage.qml 
new/plasma-nm-6.6.1/applet/ShareNetworkQrCodePage.qml
--- old/plasma-nm-6.6.0/applet/ShareNetworkQrCodePage.qml       2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/applet/ShareNetworkQrCodePage.qml       2026-02-24 
10:42:18.000000000 +0100
@@ -5,12 +5,12 @@
 */
 
 import QtQuick
-import QtQuick.Layouts 1.2
+import QtQuick.Layouts
 
-import org.kde.plasma.components 3.0 as PlasmaComponents3
+import org.kde.plasma.components as PlasmaComponents3
 import org.kde.kirigami as Kirigami
 
-import org.kde.prison 1.0 as Prison
+import org.kde.prison as Prison
 
 ColumnLayout {
     id: page
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/Toolbar.qml 
new/plasma-nm-6.6.1/applet/Toolbar.qml
--- old/plasma-nm-6.6.0/applet/Toolbar.qml      2026-02-12 11:08:27.000000000 
+0100
+++ new/plasma-nm-6.6.1/applet/Toolbar.qml      2026-02-24 10:42:18.000000000 
+0100
@@ -4,12 +4,12 @@
     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR 
LicenseRef-KDE-Accepted-LGPL
 */
 
-import QtQuick 2.2
-import QtQuick.Layouts 1.2
-import org.kde.plasma.components 3.0 as PlasmaComponents3
-import org.kde.plasma.core 2.0 as PlasmaCore
-import org.kde.kirigami 2.20 as Kirigami
-import org.kde.plasma.extras 2.0 as PlasmaExtras
+import QtQuick
+import QtQuick.Layouts
+import org.kde.plasma.components as PlasmaComponents3
+import org.kde.plasma.core as PlasmaCore
+import org.kde.kirigami as Kirigami
+import org.kde.plasma.extras as PlasmaExtras
 import org.kde.plasma.networkmanagement as PlasmaNM
 import org.kde.kcmutils as KCMUtils
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/applet/main.qml 
new/plasma-nm-6.6.1/applet/main.qml
--- old/plasma-nm-6.6.0/applet/main.qml 2026-02-12 11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/applet/main.qml 2026-02-24 10:42:18.000000000 +0100
@@ -4,13 +4,13 @@
     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR 
LicenseRef-KDE-Accepted-LGPL
 */
 
-import QtQuick 2.2
-import org.kde.plasma.plasmoid 2.0
-import org.kde.kirigami 2.20 as Kirigami
-import org.kde.plasma.core 2.0 as PlasmaCore
+import QtQuick
+import org.kde.plasma.plasmoid
+import org.kde.kirigami as Kirigami
+import org.kde.plasma.core as PlasmaCore
 import org.kde.plasma.networkmanagement as PlasmaNM
 import org.kde.networkmanager as NMQt
-import QtQuick.Layouts 1.1
+import QtQuick.Layouts
 import org.kde.kcmutils as KCMUtils
 import org.kde.config as KConfig
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/libs/connectionicon.cpp 
new/plasma-nm-6.6.1/libs/connectionicon.cpp
--- old/plasma-nm-6.6.0/libs/connectionicon.cpp 2026-02-12 11:08:27.000000000 
+0100
+++ new/plasma-nm-6.6.1/libs/connectionicon.cpp 2026-02-24 10:42:18.000000000 
+0100
@@ -401,25 +401,20 @@
                 wired = true;
             }
         } else if (device->type() == NetworkManager::Device::Wifi //
-                   && NetworkManager::isWirelessEnabled() //
                    && NetworkManager::isWirelessHardwareEnabled()) {
-            NetworkManager::WirelessDevice::Ptr wifiDevice = 
device.objectCast<NetworkManager::WirelessDevice>();
-            if (!wifiDevice->accessPoints().isEmpty() || 
!wifiDevice->availableConnections().isEmpty()) {
-                wireless = true;
-            }
+            wireless = true;
         } else if (device->type() == NetworkManager::Device::Modem //
-                   && NetworkManager::isWwanEnabled() //
                    && NetworkManager::isWwanHardwareEnabled()) {
             modem = true;
         }
     }
 
     if (wired) {
-        setConnectionIcon(QStringLiteral("network-wired-available"));
+        setConnectionIcon(QStringLiteral("network-wired-disconnected"));
         setConnectionTooltipIcon(QStringLiteral("network-wired"));
         return;
     } else if (wireless) {
-        setConnectionIcon(QStringLiteral("network-wireless-available"));
+        setConnectionIcon(QStringLiteral("network-wireless-disconnected"));
         
setConnectionTooltipIcon(QStringLiteral("network-wireless-connected-00"));
         return;
     } else if (modem) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/libs/editor/configuration.cpp 
new/plasma-nm-6.6.1/libs/editor/configuration.cpp
--- old/plasma-nm-6.6.0/libs/editor/configuration.cpp   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/libs/editor/configuration.cpp   2026-02-24 
10:42:18.000000000 +0100
@@ -19,6 +19,7 @@
 {
     // Add config watcher so that config is reparsed when changes happen 
externally
     m_configWatcher = 
KConfigWatcher::create(KSharedConfig::openConfig(QStringLiteral("plasma-nm")));
+    connect(m_configWatcher.get(), &KConfigWatcher::configChanged, this, 
&Configuration::onConfigChanged);
 }
 
 Configuration &Configuration::self()
@@ -45,7 +46,7 @@
     KConfigGroup grp(config, QStringLiteral("General"));
 
     if (grp.isValid()) {
-        grp.writeEntry(QStringLiteral("UnlockModemOnDetection"), unlock);
+        grp.writeEntry(QStringLiteral("UnlockModemOnDetection"), unlock, 
KConfigBase::Notify);
     }
 }
 
@@ -78,7 +79,7 @@
     if (grp.isValid()) {
         {
             QMutexLocker locker(&sMutex);
-            grp.writeEntry(QStringLiteral("ManageVirtualConnections"), manage);
+            grp.writeEntry(QStringLiteral("ManageVirtualConnections"), manage, 
KConfigBase::Notify);
             grp.sync();
             propManageVirtualConnections = manage;
         }
@@ -99,7 +100,7 @@
     KConfigGroup grp(config, QStringLiteral("General"));
 
     if (grp.isValid()) {
-        grp.writeEntry(QStringLiteral("AirplaneModeEnabled"), enabled);
+        grp.writeEntry(QStringLiteral("AirplaneModeEnabled"), enabled, 
KConfigBase::Notify);
         grp.sync();
         Q_EMIT airplaneModeEnabledChanged();
     }
@@ -145,7 +146,7 @@
             for (int i = 0; i < 26; ++i) {
                 pwd += 
QString::number(QRandomGenerator::global()->bounded(base16), base16).toUpper();
             }
-            grp.writeEntry(QStringLiteral("HotspotPassword"), pwd);
+            grp.writeEntry(QStringLiteral("HotspotPassword"), pwd, 
KConfigBase::Notify);
         }
         return pwd;
     }
@@ -159,7 +160,7 @@
     KConfigGroup grp(config, QStringLiteral("General"));
 
     if (grp.isValid()) {
-        grp.writeEntry(QStringLiteral("HotspotPassword"), password);
+        grp.writeEntry(QStringLiteral("HotspotPassword"), password, 
KConfigBase::Notify);
     }
 }
 
@@ -181,7 +182,7 @@
     KConfigGroup grp(config, QStringLiteral("General"));
 
     if (grp.isValid()) {
-        grp.writeEntry(QStringLiteral("HotspotConnectionPath"), path);
+        grp.writeEntry(QStringLiteral("HotspotConnectionPath"), path, 
KConfigBase::Notify);
     }
 }
 
@@ -215,7 +216,25 @@
     KConfigGroup grp(config, QStringLiteral("General"));
 
     if (grp.isValid()) {
-        grp.writeEntry(QStringLiteral("SystemConnectionsByDefault"), opt);
+        grp.writeEntry(QStringLiteral("SystemConnectionsByDefault"), opt, 
KConfigBase::Notify);
+    }
+}
+
+void Configuration::onConfigChanged(const KConfigGroup &group, const 
QByteArrayList &names)
+{
+    if (group.name() != QStringLiteral("General")) {
+        return;
+    }
+
+    for (const auto &name : names) {
+        if (name == "AirplaneModeEnabled") {
+            Q_EMIT airplaneModeEnabledChanged();
+        }
+
+        if (name == "ManageVirtualConnections") {
+            propManageVirtualConnectionsInitialized = false;
+            Q_EMIT manageVirtualConnectionsChanged(manageVirtualConnections());
+        }
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/libs/editor/configuration.h 
new/plasma-nm-6.6.1/libs/editor/configuration.h
--- old/plasma-nm-6.6.0/libs/editor/configuration.h     2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/libs/editor/configuration.h     2026-02-24 
10:42:18.000000000 +0100
@@ -49,6 +49,8 @@
 
 private:
     Configuration();
+    void onConfigChanged(const KConfigGroup &group, const QByteArrayList 
&names);
+
     static QMutex sMutex;
     KConfigWatcher::Ptr m_configWatcher;
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/libs/models/appletproxymodel.cpp 
new/plasma-nm-6.6.1/libs/models/appletproxymodel.cpp
--- old/plasma-nm-6.6.0/libs/models/appletproxymodel.cpp        2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/libs/models/appletproxymodel.cpp        2026-02-24 
10:42:18.000000000 +0100
@@ -9,6 +9,8 @@
 #include "networkmodelitem.h"
 #include "uiutils.h"
 
+#include "configuration.h"
+
 AppletProxyModel::AppletProxyModel(QObject *parent)
     : QSortFilterProxyModel(parent)
 {
@@ -16,6 +18,8 @@
     setFilterRole(NetworkModel::ItemUniqueNameRole);
     setFilterCaseSensitivity(Qt::CaseInsensitive);
     sort(0, Qt::DescendingOrder);
+
+    connect(&Configuration::self(), 
&Configuration::manageVirtualConnectionsChanged, this, 
&AppletProxyModel::onManageVirtualConnectionsChanged);
 }
 
 AppletProxyModel::~AppletProxyModel() = default;
@@ -120,4 +124,10 @@
     }
 }
 
+void AppletProxyModel::onManageVirtualConnectionsChanged()
+{
+    beginFilterChange();
+    endFilterChange();
+}
+
 #include "moc_appletproxymodel.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/libs/models/appletproxymodel.h 
new/plasma-nm-6.6.1/libs/models/appletproxymodel.h
--- old/plasma-nm-6.6.0/libs/models/appletproxymodel.h  2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/libs/models/appletproxymodel.h  2026-02-24 
10:42:18.000000000 +0100
@@ -25,6 +25,9 @@
 protected:
     bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) 
const override;
     bool lessThan(const QModelIndex &left, const QModelIndex &right) const 
override;
+
+private:
+    void onManageVirtualConnectionsChanged();
 };
 
 #endif // PLASMA_NM_APPLET_PROXY_MODEL_H
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/po/ar/kcm_cellular_network.po 
new/plasma-nm-6.6.1/po/ar/kcm_cellular_network.po
--- old/plasma-nm-6.6.0/po/ar/kcm_cellular_network.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/ar/kcm_cellular_network.po   2026-02-24 
10:42:18.000000000 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) 2025 This file is copyright:
 # This file is distributed under the same license as the plasma-mobile package.
-# SPDX-FileCopyrightText: 2023, 2025 Zayed Al-Saidi <[email protected]>
+# SPDX-FileCopyrightText: 2023, 2025, 2026 Zayed Al-Saidi 
<[email protected]>
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/ca/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/ca/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/ca/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/ca/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2026-01-23 10:14+0100\n"
+"PO-Revision-Date: 2026-02-18 14:52+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/ca@valencia/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/ca@valencia/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/ca@valencia/plasmanetworkmanagement-libs.po  
2026-02-12 11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/ca@valencia/plasmanetworkmanagement-libs.po  
2026-02-24 10:42:18.000000000 +0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2026-01-23 10:14+0100\n"
+"PO-Revision-Date: 2026-02-18 14:52+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca@valencia\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/po/eu/kcm_cellular_network.po 
new/plasma-nm-6.6.1/po/eu/kcm_cellular_network.po
--- old/plasma-nm-6.6.0/po/eu/kcm_cellular_network.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/eu/kcm_cellular_network.po   2026-02-24 
10:42:18.000000000 +0100
@@ -1,16 +1,16 @@
 # Translation for kcm_cellular_network.po to Euskera/Basque (eu).
-# Copyright (C) 2021-2024 This file is copyright:
+# Copyright (C) 2021-2026 This file is copyright:
 # This file is distributed under the same license as the plasma-settings 
package.
-# SPDX-FileCopyrightText: 2023, 2024, 2025 KDE euskaratzeko proiektuko 
arduraduna <[email protected]>
+# SPDX-FileCopyrightText: 2023, 2024, 2025, 2026 KDE euskaratzeko proiektuaren 
arduraduna <[email protected]>
 #
 # Translators:
-# Iñigo Salvador Azurmendi <[email protected]>, 2021, 2022, 2023, 2024.
+# Iñigo Salvador Azurmendi <[email protected]>, 2021, 2022, 2023, 2024, 2026.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-mobile\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-29 03:06+0000\n"
-"PO-Revision-Date: 2025-03-25 22:35+0100\n"
+"PO-Revision-Date: 2026-02-18 20:21+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
 "Language: eu\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 24.12.3\n"
+"X-Generator: Lokalize 25.12.2\n"
 
 #: modem.cpp:128
 #, kde-format
@@ -961,7 +961,7 @@
 #: ui/SimPage.qml:72
 #, kde-format
 msgid "Modify APNs"
-msgstr "Aldatu APNak"
+msgstr "APNak aldatu"
 
 #: ui/SimPage.qml:73
 #, kde-format
@@ -976,12 +976,12 @@
 #: ui/SimPage.qml:84
 #, kde-format
 msgid "Select a network operator."
-msgstr "Hautatu sare operadore bat."
+msgstr "Sare-operadore bat hautatu."
 
 #: ui/SimPage.qml:95
 #, kde-format
 msgid "Modify SIM lock settings."
-msgstr "Aldatu SIM giltzatze ezarpenak."
+msgstr "SIM giltzatze ezarpenak aldatu."
 
 #: ui/SimPage.qml:106
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/eu/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/eu/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/eu/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/eu/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -12,7 +12,7 @@
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2026-01-25 13:48+0100\n"
+"PO-Revision-Date: 2026-02-18 20:34+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
 "Language: eu\n"
@@ -20,7 +20,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.12.1\n"
+"X-Generator: Lokalize 25.12.2\n"
 
 #: editor/connectiondetails.cpp:92
 #, kde-format
@@ -1453,7 +1453,7 @@
 #: editor/settings/ui/ipv6.ui:254
 #, kde-format
 msgid "Disabled"
-msgstr "Ezgaituta"
+msgstr "Desgaituta"
 
 #. i18n: ectx: property (text), widget (QLabel, labelPrivacy)
 #: editor/settings/ui/ipv6.ui:331
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/po/fr/kcm_cellular_network.po 
new/plasma-nm-6.6.1/po/fr/kcm_cellular_network.po
--- old/plasma-nm-6.6.0/po/fr/kcm_cellular_network.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/fr/kcm_cellular_network.po   2026-02-24 
10:42:18.000000000 +0100
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Xavier Besnard 
<[email protected]>
+# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025, 2026 Xavier Besnard 
<[email protected]>
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-settings\n"
@@ -6,13 +6,13 @@
 "POT-Creation-Date: 2026-01-29 03:06+0000\n"
 "PO-Revision-Date: 2025-02-28 11:03+0100\n"
 "Last-Translator: Xavier Besnard <[email protected]>\n"
-"Language-Team: French <French <[email protected]>>\n"
+"Language-Team: \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 24.12.2\n"
+"X-Generator: Lokalize 25.12.2\n"
 
 #: modem.cpp:128
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/fr/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/fr/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/fr/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/fr/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -23,7 +23,7 @@
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Accelerator-Marker: &\n"
 "X-Environment: kde\n"
-"X-Generator: Lokalize 25.12.1\n"
+"X-Generator: Lokalize 25.12.2\n"
 "X-Text-Markup: kde4\n"
 
 #: editor/connectiondetails.cpp:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/is/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/is/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/is/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/is/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -2,20 +2,21 @@
 # This file is distributed under the same license as the plasma-nm package.
 #
 # SPDX-FileCopyrightText: 2024, 2025 Gummi <[email protected]>
+# SPDX-FileCopyrightText: 2026 Sveinn í Felli <[email protected]>
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-nm\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2025-09-17 12:38+0000\n"
-"Last-Translator: Gummi <[email protected]>\n"
-"Language-Team: Icelandic <[email protected]>\n"
+"PO-Revision-Date: 2026-02-16 15:24+0000\n"
+"Last-Translator: Sveinn í Felli <[email protected]>\n"
+"Language-Team: Icelandic\n"
 "Language: is\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 25.04.3\n"
+"X-Generator: Lokalize 23.08.5\n"
 
 #: editor/connectiondetails.cpp:92
 #, kde-format
@@ -47,9 +48,7 @@
 msgstr "Styrkur merkis"
 
 #: editor/connectiondetails.cpp:136
-#, fuzzy, kde-format
-#| msgctxt "WiFi signal strength percentage indicator"
-#| msgid "%1%"
+#, kde-format
 msgctxt "Wi-Fi signal strength percentage indicator"
 msgid "%1%"
 msgstr "%1%"
@@ -207,9 +206,7 @@
 msgstr "Tæki"
 
 #: editor/connectiondetails.cpp:316
-#, fuzzy, kde-format
-#| msgctxt "@title:tab General configuration"
-#| msgid "General"
+#, kde-format
 msgid "General"
 msgstr "Almennt"
 
@@ -272,7 +269,7 @@
 #, kde-format
 msgctxt "@title:tab Connection status and details"
 msgid "Status"
-msgstr ""
+msgstr "Staða"
 
 #: editor/connectioneditorbase.cpp:209
 #, kde-format
@@ -440,9 +437,7 @@
 msgstr "PAN (personal area network)"
 
 #: editor/settings/connectionstatuswidget.cpp:33
-#, fuzzy, kde-format
-#| msgctxt "There is no active network connection"
-#| msgid "Disconnected"
+#, kde-format
 msgid "Disconnected"
 msgstr "Aftengt"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/po/it/kcm_cellular_network.po 
new/plasma-nm-6.6.1/po/it/kcm_cellular_network.po
--- old/plasma-nm-6.6.0/po/it/kcm_cellular_network.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/it/kcm_cellular_network.po   2026-02-24 
10:42:18.000000000 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) 2023 This file is copyright:
 # This file is distributed under the same license as the plasma-settings 
package.
-# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Vincenzo Reale 
<[email protected]>
+# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025, 2026 Vincenzo Reale 
<[email protected]>
 #
 msgid ""
 msgstr ""
@@ -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 24.12.2\n"
+"X-Generator: Lokalize 25.12.2\n"
 
 #: modem.cpp:128
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/it/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/it/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/it/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/it/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -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.12.1\n"
+"X-Generator: Lokalize 25.12.2\n"
 
 #: editor/connectiondetails.cpp:92
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/lt/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/lt/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/lt/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/lt/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: l 10n\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2026-01-28 15:45+0200\n"
+"PO-Revision-Date: 2026-02-21 01:41+0200\n"
 "Last-Translator: Moo <<>>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
 "Language: lt\n"
@@ -1543,7 +1543,7 @@
 "concentrators or a specific service is known to be required."
 msgstr ""
 "Jei apibrėžta, nurodyti PPPoE inicijuoti seansus tik su nurodytą paslaugą "
-"teikiančiais prieigos telktuvais. Daugumai tiekėjų, tai turėtų būti palikta "
+"teikiančiais prieigos telktuvais. Daugumai teikėjų, tai turėtų būti palikta "
 "tuščia. Tai yra reikalinga tik tuomet, jei yra keletas prieigos telktuvų "
 "arba, jei yra žinoma, kad reikia tam tikros paslaugos."
 
@@ -2880,13 +2880,13 @@
 #, kde-format
 msgctxt "possible SIM lock reason"
 msgid "Modem requires the service provider PIN code."
-msgstr "Modemas reikalauja paslaugų tiekėjo PIN kodo."
+msgstr "Modemas reikalauja paslaugų teikėjo PIN kodo."
 
 #: editor/uiutils.cpp:544
 #, kde-format
 msgctxt "possible SIM lock reason"
 msgid "Modem requires the service provider PUK code."
-msgstr "Modemas reikalauja paslaugų tiekėjo PUK kodo."
+msgstr "Modemas reikalauja paslaugų teikėjo PUK kodo."
 
 #: editor/uiutils.cpp:546
 #, kde-format
@@ -3143,7 +3143,7 @@
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "Unknown Provider"
-msgstr "Nežinomas tiekėjas"
+msgstr "Nežinomas teikėjas"
 
 #: editor/widgets/mobileconnectionwizard.cpp:146
 #, kde-format
@@ -3184,7 +3184,7 @@
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "Your broadband provider's name"
-msgstr "Jūsų mobiliojo plačiajuosčio tinklo tiekėjo pavadinimas"
+msgstr "Jūsų mobiliojo plačiajuosčio tinklo teikėjo pavadinimas"
 
 #: editor/widgets/mobileconnectionwizard.cpp:249
 #, kde-format
@@ -3236,7 +3236,7 @@
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "Choose your Provider's Country"
-msgstr "Pasirinkite savo tiekėjo šalį"
+msgstr "Pasirinkite savo teikėjo šalį"
 
 #: editor/widgets/mobileconnectionwizard.cpp:403
 #, kde-format
@@ -3254,19 +3254,19 @@
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "Choose your Provider"
-msgstr "Pasirinkite savo tiekėją"
+msgstr "Pasirinkite savo teikėją"
 
 #: editor/widgets/mobileconnectionwizard.cpp:426
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "Select your provider from a &list:"
-msgstr "Pasirinkite savo tiekėją iš &sąrašo:"
+msgstr "Pasirinkite savo teikėją iš &sąrašo:"
 
 #: editor/widgets/mobileconnectionwizard.cpp:435
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "I cannot find my provider and I wish to enter it &manually:"
-msgstr "Nerandu savo tiekėjo, todėl norėčiau jį įvesti &pats:"
+msgstr "Nerandu savo teikėjo, todėl norėčiau jį įvesti &pats:"
 
 #: editor/widgets/mobileconnectionwizard.cpp:477
 #, kde-format
@@ -3298,7 +3298,7 @@
 "Įspėjimas: Pasirinkus neteisingą planą gali kilti problemų su apmokėjimu už "
 "plačiajuosčio ryšio paskyrą arba apskritai gali nebūti jungiamumo.\n"
 "\n"
-"Jei nesate tikri dėl savo plano, paklauskite savo tiekėjo, koks yra jūsų "
+"Jei nesate tikri dėl savo plano, paklauskite savo teikėjo, koks yra jūsų "
 "plano APN."
 
 #: editor/widgets/mobileconnectionwizard.cpp:540
@@ -3319,7 +3319,7 @@
 #, kde-format
 msgctxt "Mobile Connection Wizard"
 msgid "Your Provider:"
-msgstr "Jūsų tiekėjas:"
+msgstr "Jūsų teikėjas:"
 
 #: editor/widgets/mobileconnectionwizard.cpp:552
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-nm-6.6.0/po/pl/kcm_cellular_network.po 
new/plasma-nm-6.6.1/po/pl/kcm_cellular_network.po
--- old/plasma-nm-6.6.0/po/pl/kcm_cellular_network.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/pl/kcm_cellular_network.po   2026-02-24 
10:42:18.000000000 +0100
@@ -1,6 +1,6 @@
 # Copyright (C) 2023 This file is copyright:
 # This file is distributed under the same license as the plasma-settings 
package.
-# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025 Łukasz Wojniłowicz 
<[email protected]>
+# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024, 2025, 2026 Łukasz 
Wojniłowicz <[email protected]>
 #
 msgid ""
 msgstr ""
@@ -16,7 +16,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.0\n"
+"X-Generator: Lokalize 25.08.2\n"
 
 #: modem.cpp:128
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/pl/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/pl/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/pl/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/pl/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2026-01-18 15:25+0100\n"
+"PO-Revision-Date: 2026-02-21 08:38+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: pl\n"
 "Language: pl\n"
@@ -1055,7 +1055,7 @@
 #: editor/settings/ui/connectionwidget.ui:70 editor/settings/ui/ipv4.ui:354
 #, kde-format
 msgid "Advanced…"
-msgstr "Wybierz użytkowników..."
+msgstr "Rozszerzone…"
 
 #. i18n: ectx: property (text), widget (QCheckBox, autoconnectVpn)
 #: editor/settings/ui/connectionwidget.ui:80
@@ -1084,7 +1084,7 @@
 "data usage should be restricted."
 msgstr ""
 "NetworkManager powiadamia aplikację, że w połączeniu płaci się za ilość "
-"przesłanych danych, tak, aby\n"
+"przesłanych danych, tak aby\n"
 "mogła ona ograniczyć przesył tych danych."
 
 #. i18n: ectx: property (text), item, widget (KComboBox, metered)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/pl/plasmanetworkmanagement_l2tpui.po 
new/plasma-nm-6.6.1/po/pl/plasmanetworkmanagement_l2tpui.po
--- old/plasma-nm-6.6.0/po/pl/plasmanetworkmanagement_l2tpui.po 2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/pl/plasmanetworkmanagement_l2tpui.po 2026-02-24 
10:42:18.000000000 +0100
@@ -1,21 +1,22 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
+# SPDX-FileCopyrightText: 2014, 2015, 2016, 2017, 2020, 2021, 2026 Łukasz 
Wojniłowicz <[email protected]>
 #
-# Łukasz Wojniłowicz <[email protected]>, 2014, 2015, 2016, 2017, 
2020, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2025-11-17 11:54+0000\n"
-"PO-Revision-Date: 2021-06-06 06:51+0200\n"
+"PO-Revision-Date: 2026-02-21 08:54+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
-"Language-Team: Polish <[email protected]>\n"
+"Language-Team: pl\n"
 "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 25.08.2\n"
 
 #. i18n: ectx: property (text), widget (QLabel, labelGateway)
 #: l2tp.ui:19
@@ -499,7 +500,7 @@
 "transmit\n"
 "and the receive directions."
 msgstr ""
-"Zezwól/wyłacz kompresję nagłówków TCP/IP w stylu Van Jacobsona po stronie "
+"Zezwól/wyłącz pakowanie nagłówków TCP/IP w stylu Van Jacobsona po stronie "
 "zarówno przesyłania jak\n"
 "i odbierania."
 
@@ -516,7 +517,7 @@
 "Allow protocol field compression negotiation in both the receive and the\n"
 " transmit directions."
 msgstr ""
-"Zezwól/wyłacz negocjację kompresji pola po stronie zarówno przesyłania jak\n"
+"Zezwól/wyłącz negocjację kompresji pola po stronie zarówno przesyłania jak\n"
 "i odbierania."
 
 #. i18n: ectx: property (text), widget (QCheckBox, cbCompressionNegotiation)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/pl/plasmanetworkmanagement_openvpnui.po 
new/plasma-nm-6.6.1/po/pl/plasmanetworkmanagement_openvpnui.po
--- old/plasma-nm-6.6.0/po/pl/plasmanetworkmanagement_openvpnui.po      
2026-02-12 11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/pl/plasmanetworkmanagement_openvpnui.po      
2026-02-24 10:42:18.000000000 +0100
@@ -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: 2014, 2015, 2016, 2017, 2021, 2022, 2023, 2026 
Łukasz Wojniłowicz <[email protected]>
 #
-# Łukasz Wojniłowicz <[email protected]>, 2014, 2015, 2016, 2017, 
2021, 2022, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
@@ -9,13 +9,14 @@
 "POT-Creation-Date: 2025-12-25 00:45+0000\n"
 "PO-Revision-Date: 2023-04-10 10:59+0200\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
-"Language-Team: Polish <[email protected]>\n"
+"Language-Team: pl\n"
 "Language: pl\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%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Lokalize 25.08.2\n"
 
 #: openvpn.cpp:182
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-nm-6.6.0/po/tr/plasmanetworkmanagement-libs.po 
new/plasma-nm-6.6.1/po/tr/plasmanetworkmanagement-libs.po
--- old/plasma-nm-6.6.0/po/tr/plasmanetworkmanagement-libs.po   2026-02-12 
11:08:27.000000000 +0100
+++ new/plasma-nm-6.6.1/po/tr/plasmanetworkmanagement-libs.po   2026-02-24 
10:42:18.000000000 +0100
@@ -8,15 +8,15 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2026-01-28 02:43+0000\n"
-"PO-Revision-Date: 2026-01-23 11:34+0300\n"
-"Last-Translator: Emir SARI <emir_sari@îcloud.com>\n"
+"PO-Revision-Date: 2026-02-18 17:32+0300\n"
+"Last-Translator: Emir SARI <[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"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 25.12.1\n"
+"X-Generator: Lokalize 25.12.2\n"
 "X-POOTLE-MTIME: 1413102236.000000\n"
 
 #: editor/connectiondetails.cpp:92
@@ -3715,7 +3715,7 @@
 #: networkstatus.cpp:261
 #, kde-format
 msgid "NetworkManager 0.9.8 required, found %1."
-msgstr "Ağ Yönetici 0.9.8 gerekli, bulunan %1."
+msgstr "Ağ Yöneticisi 0.9.8 gerekiyor, bulunan %1."
 
 #: networkstatus.cpp:264
 #, kde-format

Reply via email to