Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package plasma6-browser-integration for 
openSUSE:Factory checked in at 2026-04-10 17:48:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma6-browser-integration (Old)
 and      /work/SRC/openSUSE:Factory/.plasma6-browser-integration.new.21863 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "plasma6-browser-integration"

Fri Apr 10 17:48:38 2026 rev:40 rq:1345630 version:6.6.4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/plasma6-browser-integration/plasma6-browser-integration.changes
  2026-03-19 17:35:35.289361927 +0100
+++ 
/work/SRC/openSUSE:Factory/.plasma6-browser-integration.new.21863/plasma6-browser-integration.changes
       2026-04-10 17:50:45.936252661 +0200
@@ -1,0 +2,11 @@
+Tue Apr  7 14:59:42 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.4:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.6.4
+- Changes since 6.6.3:
+  * Update version for new release 6.6.4
+  * purpose: Don't determine MIME type from the host
+  * reminder: Set XDG activation token on ApplicationLauncherJob
+
+-------------------------------------------------------------------

Old:
----
  plasma-browser-integration-6.6.3.tar.xz
  plasma-browser-integration-6.6.3.tar.xz.sig

New:
----
  plasma-browser-integration-6.6.4.tar.xz
  plasma-browser-integration-6.6.4.tar.xz.sig

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

Other differences:
------------------
++++++ plasma6-browser-integration.spec ++++++
--- /var/tmp/diff_new_pack.cgvvre/_old  2026-04-10 17:50:46.692283791 +0200
+++ /var/tmp/diff_new_pack.cgvvre/_new  2026-04-10 17:50:46.696283955 +0200
@@ -29,7 +29,7 @@
 # Latest ABI-stable Plasma (e.g. 6.0 in KF6, but 6.0.80 in KUF)
 %{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk 
-F. '{print $1"."$2}')}
 Name:           plasma6-browser-integration
-Version:        6.6.3
+Version:        6.6.4
 Release:        0
 Summary:        Helper for the KDE Plasma Browser Integration
 License:        GPL-3.0-or-later

++++++ plasma-browser-integration-6.6.3.tar.xz -> 
plasma-browser-integration-6.6.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-browser-integration-6.6.3/CMakeLists.txt 
new/plasma-browser-integration-6.6.4/CMakeLists.txt
--- old/plasma-browser-integration-6.6.3/CMakeLists.txt 2026-03-17 
12:05:24.000000000 +0100
+++ new/plasma-browser-integration-6.6.4/CMakeLists.txt 2026-04-07 
09:57:00.000000000 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.16)
 
-set(PROJECT_VERSION "6.6.3")
+set(PROJECT_VERSION "6.6.4")
 
 project(plasma-browser-integration VERSION ${PROJECT_VERSION})
 
-set(PROJECT_DEP_VERSION "6.6.3")
+set(PROJECT_DEP_VERSION "6.6.4")
 set(QT_MIN_VERSION "6.6.0")
 set(KF6_MIN_VERSION "6.8.0")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/extension/extension-purpose.js 
new/plasma-browser-integration-6.6.4/extension/extension-purpose.js
--- old/plasma-browser-integration-6.6.3/extension/extension-purpose.js 
2026-03-17 12:05:24.000000000 +0100
+++ new/plasma-browser-integration-6.6.4/extension/extension-purpose.js 
2026-04-07 09:57:00.000000000 +0200
@@ -23,42 +23,71 @@
 // notification it will open the URL
 let purposeNotificationUrls = {};
 
-function purposeShare(data) {
+function determineMimeType(url) {
     return new Promise((resolve, reject) => {
-        sendPortMessageWithReply("purpose", "share", {data}).then((reply) => {
-            if (!reply.success) {
-                if (!["BUSY", "CANCELED", 
"INVALID_ARGUMENT"].includes(reply.errorCode)
-                    && reply.errorCode !== 1 /*ERR_USER_CANCELED*/) {
-                    chrome.notifications.create(null, {
-                        type: "basic",
-                        title: 
chrome.i18n.getMessage("purpose_share_failed_title"),
-                        message: 
chrome.i18n.getMessage("purpose_share_failed_text",
-                                                        reply.errorMessage || 
chrome.i18n.getMessage("general_error_unknown")),
-                        iconUrl: "icons/document-share-failed.png"
-                    });
-                }
+        fetch(url, {method: "HEAD"}).then((response) => {
+            const mimeType = response.headers.get("Content-Type");
+            resolve(mimeType);
+        }, (error) => {
+            console.warn("Failed to determine mime type for", url, error);
+            resolve("");
+        });
+    });
+}
 
-                reject();
-                return;
+function purposeShare(data) {
+    return new Promise((resolve, reject) => {
+        new Promise((resolve, reject) => {
+            if (!data.url) {
+                return resolve("");
             }
 
-            let url = reply.response.url;
-            if (url) {
-                chrome.notifications.create(null, {
-                    type: "basic",
-                    title: 
chrome.i18n.getMessage("purpose_share_finished_title"),
-                    message: 
chrome.i18n.getMessage("purpose_share_finished_text", url),
-                    iconUrl: "icons/document-share.png"
-                }, (notificationId) => {
-                    if (chrome.runtime.lastError) {
-                        return;
+            fetch(data.url, {method: "HEAD"}).then((response) => {
+                const mimeType = response.headers.get("Content-Type");
+                resolve(mimeType);
+            }, (error) => {
+                console.warn("Failed to determine mime type for", data.url, 
error);
+                resolve("");
+            });
+        }).then((mimeType) => {
+            sendPortMessageWithReply("purpose", "share", {
+                data,
+                mimeType,
+            }).then((reply) => {
+                if (!reply.success) {
+                    if (!["BUSY", "CANCELED", 
"INVALID_ARGUMENT"].includes(reply.errorCode)
+                        && reply.errorCode !== 1 /*ERR_USER_CANCELED*/) {
+                        chrome.notifications.create(null, {
+                            type: "basic",
+                            title: 
chrome.i18n.getMessage("purpose_share_failed_title"),
+                            message: 
chrome.i18n.getMessage("purpose_share_failed_text",
+                                                            reply.errorMessage 
|| chrome.i18n.getMessage("general_error_unknown")),
+                            iconUrl: "icons/document-share-failed.png"
+                        });
                     }
 
-                    purposeNotificationUrls[notificationId] = url;
-                });
-            }
+                    reject();
+                    return;
+                }
+
+                let url = reply.response.url;
+                if (url) {
+                    chrome.notifications.create(null, {
+                        type: "basic",
+                        title: 
chrome.i18n.getMessage("purpose_share_finished_title"),
+                        message: 
chrome.i18n.getMessage("purpose_share_finished_text", url),
+                        iconUrl: "icons/document-share.png"
+                    }, (notificationId) => {
+                        if (chrome.runtime.lastError) {
+                            return;
+                        }
+
+                        purposeNotificationUrls[notificationId] = url;
+                    });
+                }
 
-            resolve();
+                resolve();
+            });
         });
     });
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/host/purposeplugin.cpp 
new/plasma-browser-integration-6.6.4/host/purposeplugin.cpp
--- old/plasma-browser-integration-6.6.3/host/purposeplugin.cpp 2026-03-17 
12:05:24.000000000 +0100
+++ new/plasma-browser-integration-6.6.4/host/purposeplugin.cpp 2026-04-07 
09:57:00.000000000 +0200
@@ -11,8 +11,6 @@
 #include <QJsonArray>
 #include <QJsonObject>
 
-#include <KIO/MimeTypeFinderJob>
-
 #include <Purpose/AlternativesModel>
 #include <Purpose/Menu>
 
@@ -45,6 +43,9 @@
         // store request serial for asynchronous reply
         m_pendingReplySerial = serial;
 
+        // This is not in share data, our extension sends this by doing a HEAD 
request on the url, if applicable.
+        const QString mimeType = 
data.value(QStringLiteral("mimeType")).toString();
+
         const QJsonObject shareData = 
data.value(QStringLiteral("data")).toObject();
 
         QString title = shareData.value(QStringLiteral("title")).toString();
@@ -146,12 +147,7 @@
         }
 
         if (!urls.isEmpty()) {
-            auto *mimeJob = new KIO::MimeTypeFinderJob(QUrl(urlString));
-            mimeJob->setAuthenticationPromptEnabled(false);
-            connect(mimeJob, &KIO::MimeTypeFinderJob::result, this, [this, 
mimeJob, shareJson] {
-                showShareMenu(shareJson, mimeJob->mimeType());
-            });
-            mimeJob->start();
+            showShareMenu(shareJson, mimeType);
             return {};
         }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ar/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ar/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ar/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ar/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2021-08-20 10:59+0300\n"
 "Last-Translator: Safa Alfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "نزّل تكامل بلازما مع المتصفّح"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "لا تعرض ثانيةً"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ast/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ast/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ast/plasma-browser-integration-reminder.po
  2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ast/plasma-browser-integration-reminder.po
  2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2023-05-03 21:28+0200\n"
 "Last-Translator: Enol P. <[email protected]>\n"
 "Language-Team: \n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr ""
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/az/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/az/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/az/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/az/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-07-27 17:32+0400\n"
 "Last-Translator: Xəyyam Qocayev <[email protected]>\n"
 "Language-Team: Azerbaijani <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma Bələdçi İnteqrasiyası-nı əldə etmək"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Yenidən göstərməmək"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/bg/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/bg/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/bg/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/bg/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2022-01-11 11:39+0100\n"
 "Last-Translator: mkkDr2010 <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Изтегляне на интеграция на браузър за Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Не показвай отново"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ca/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ca/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ca/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ca/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-07-30 10:27+0200\n"
 "Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -25,7 +25,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obtén la Integració del navegador amb el Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "No ho tornis a mostrar"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ca@valencia/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ca@valencia/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ca@valencia/plasma-browser-integration-reminder.po
  2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ca@valencia/plasma-browser-integration-reminder.po
  2026-04-07 09:57:00.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-07-30 10:27+0200\n"
 "Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -25,7 +25,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obtín la Integració del navegador amb Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "No ho tornes a mostrar"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/cs/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/cs/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/cs/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/cs/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-17 12:06+0100\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Získat Integraci prohlížeče do prostředí Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Znovu nezobrazovat"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/da/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/da/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/da/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/da/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-05-07 12:37+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Hent Plasma browser-integration"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Vis ikke igen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/de/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/de/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/de/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/de/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration-reminder\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2025-12-23 16:43+0100\n"
 "Last-Translator: Philipp Kiemle <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma-Browser-Integration holen"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Nicht wieder anzeigen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/el/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/el/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/el/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/el/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-10-08 09:25+0300\n"
 "Last-Translator: Stelios <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Αποκτήστε την ενσωμάτωση περιηγητή στο Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Να μην εμφανιστεί ξανά"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/en_GB/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/en_GB/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/en_GB/plasma-browser-integration-reminder.po
        2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/en_GB/plasma-browser-integration-reminder.po
        2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-10-27 19:59+0100\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Get Plasma Browser Integration"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Do not show again"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/eo/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/eo/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/eo/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/eo/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2023-04-29 12:29+0100\n"
 "Last-Translator: Oliver Kellogg <[email protected]>\n"
 "Language-Team: Esperanto <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Ekpreni Foliumilan Integriĝon de Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ne montri refoje"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/es/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/es/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/es/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/es/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration-reminder\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2025-05-21 01:25+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -24,7 +24,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obtener integración del navegador en Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "No volver a mostrar"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/et/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/et/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/et/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/et/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-11-08 23:48+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma brauseriga lõimimise hankimine"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Rohkem ei näidata"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/eu/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/eu/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/eu/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/eu/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-04-25 00:13+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
@@ -25,7 +25,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Lortu Plasman arakatzailea bateratzea"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ez erakutsi berriz"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/fi/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/fi/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/fi/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/fi/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-27 16:03+0200\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -21,7 +21,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Nouda Plasma-selainintegrointi"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Älä näytä uudelleen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/fr/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/fr/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/fr/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/fr/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-16 19:22+0800\n"
 "Last-Translator: Simon Depiets <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obtenir l'intégration au navigateur Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ne plus afficher"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ga/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ga/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ga/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ga/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: Irish Gaelic <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr ""
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/gl/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/gl/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/gl/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/gl/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-10-21 20:52+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -21,7 +21,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obter a integración co navegador de Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Non amosar de novo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/he/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/he/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/he/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/he/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2023-10-03 09:16+0300\n"
 "Last-Translator: \n"
 "Language-Team: צוות התרגום של KDE ישראל\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "הורדת שילוב בין פלזמה לדפדפן"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "לא להציג שוב"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/hi/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/hi/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/hi/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/hi/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2024-12-15 17:36+0530\n"
 "Last-Translator: Kali <EMAIL@ADDRESS>\n"
 "Language-Team: Hindi <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "प्लाज्मा ब्राउज़र एकीकरण प्राप्त करें"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "दोबारा न दिखाएं"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/hu/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/hu/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/hu/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/hu/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-12-09 22:14+0100\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Telepítse a Plasma böngészőintegrációt"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ne jelenjen meg újra"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ia/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ia/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ia/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ia/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-12-25 21:04+0100\n"
 "Last-Translator: Giovanni Sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obtene Plasma Browser Integration (Integration de Navigator de Plasma)"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Non monstra de nove"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/id/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/id/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/id/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/id/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-10-06 22:36+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
@@ -21,7 +21,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Dapatkan Plasma Browser Integration"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Jangan tampilkan lagi"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/is/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/is/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/is/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/is/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2023-10-01 18:17+0000\n"
 "Last-Translator: Guðmundur Erlingsson <[email protected]>\n"
 "Language-Team: Icelandic <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Sækja Plasma vafrasamþættingu"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ekki sýna þetta aftur"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/it/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/it/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/it/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/it/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-10-18 23:48+0100\n"
 "Last-Translator: Luigi Toscano <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Scarica l'integrazione del browser con Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Non mostrare di nuovo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ja/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ja/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ja/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ja/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2022-08-08 16:04+0900\n"
 "Last-Translator: Ryuichi Yamada <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -21,7 +21,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma Browser Integration を入手"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "再度表示しない"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ka/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ka/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ka/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ka/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2022-05-26 13:23+0200\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma-ის ბრაუზერის ინტეგრაცია"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "აღარ მაჩვენო"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ko/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ko/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ko/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ko/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-04-12 01:07+0100\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma 브라우저 통합 다운로드"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "다시 보지 않기"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/lt/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/lt/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/lt/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/lt/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-06-04 22:14+0000\n"
 "Last-Translator: Moo\n"
 "Language-Team: lt\n"
@@ -24,7 +24,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Gaukite Plasma naršyklės integraciją"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Daugiau neberodyti"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/lv/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/lv/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/lv/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/lv/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2024-01-19 15:09+0200\n"
 "Last-Translator: Toms Trasuns <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Iegūstiet Plasma pārlūka integrāciju"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Vairs nerādīt"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ml/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ml/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ml/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ml/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-02-12 03:28+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം 
Computing|കമ്പ്യൂട്ടിങ്ങ് <smc."
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr ""
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/nb/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/nb/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/nb/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/nb/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2026-01-18 18:16+0100\n"
 "Last-Translator: Martin Hansen <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Hent nettleserintegrering for Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ikke vis igjen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/nl/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/nl/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/nl/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/nl/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-15 14:43+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma-browserintegratie ophalen"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Niet meer tonen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/nn/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/nn/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/nn/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/nn/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-16 11:10+0200\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -24,7 +24,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Hent nettlesarintegrering for Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ikkje vis igjen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/pa/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/pa/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/pa/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/pa/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-12-19 13:21-0800\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "ਪਲਾਜ਼ਮ ਬਰਾਊਜ਼ਰ ਐਂਟੀਗਰੇਸ਼ਨ ਲਵੋ"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "ਮੁੜ ਨਾ ਵੇਖਾਓ"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/pl/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/pl/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/pl/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/pl/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-01-13 10:30+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Pobierz integrację przeglądarki Plazmy"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Nie pokazuj ponownie"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/pt/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/pt/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/pt/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/pt/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-11-04 13:18+0000\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -17,7 +17,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obter a Integração do Navegador com o Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Não mostrar de novo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/pt_BR/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/pt_BR/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/pt_BR/plasma-browser-integration-reminder.po
        2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/pt_BR/plasma-browser-integration-reminder.po
        2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-10-03 17:30-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Baixar a integração de navegador do Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Não mostrar novamente"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ro/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ro/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ro/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ro/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-09-19 10:42+0100\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Obține integrarea Plasma cu navigatorul"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Nu mai arăta"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ru/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ru/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ru/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ru/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-15 14:53+0300\n"
 "Last-Translator: Alexander Potashev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Установить расширение браузера для интеграции с Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Больше не показывать"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/sa/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/sa/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/sa/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/sa/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2024-12-13 19:10+0530\n"
 "Last-Translator: Kali <EMAIL@ADDRESS>\n"
 "Language-Team: Sanskrit <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "प्लाज्मा ब्राउज़र एकीकरण प्राप्त करें"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "पुनः न दर्शयतु"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/sk/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/sk/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/sk/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/sk/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration-reminder\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-22 20:32+0100\n"
 "Last-Translator: Roman Paholík <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -20,7 +20,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Získať integráciu prehliadača Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Znovu nezobrazovať"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/sl/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/sl/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/sl/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/sl/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2020-06-15 13:33+0200\n"
 "Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Pridobite integracijo brskalnika in Plasme"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Ne prikazuj tega več"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/sv/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/sv/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/sv/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/sv/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-18 19:59+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Hämta Plasma webbläsarintegrering"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Visa inte igen"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/ta/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/ta/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/ta/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/ta/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2021-06-26 21:43+0530\n"
 "Last-Translator: Kishore G <[email protected]>\n"
 "Language-Team: Tamil <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "பிளாஸ்மா உலாவி ஒருங்கிணைப்பை நிறுவு"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "மறுபடியும் காட்டாதே"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/tg/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/tg/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/tg/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/tg/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-09-18 11:43+0500\n"
 "Last-Translator: Victor Ibragimov <[email protected]>\n"
 "Language-Team: English <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Гирифтани ҳампайвандии намоишгари Plasma"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Дигар нишон дода нашавад"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/tr/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/tr/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/tr/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/tr/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2022-03-12 13:38+0300\n"
 "Last-Translator: Emir SARI <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Plasma Tarayıcı Tümleştirmesini Al"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Bir daha gösterme"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/uk/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/uk/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/uk/plasma-browser-integration-reminder.po
   2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/uk/plasma-browser-integration-reminder.po
   2026-04-07 09:57:00.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration-reminder\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2018-09-15 07:48+0300\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -25,7 +25,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "Отримати інтеграцію Плазми з браузерами"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "Більше не показувати"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/zh_CN/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/zh_CN/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/zh_CN/plasma-browser-integration-reminder.po
        2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/zh_CN/plasma-browser-integration-reminder.po
        2026-04-07 09:57:00.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2024-04-22 15:58\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
@@ -23,7 +23,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "获取 Plasma 浏览器集成程序"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "不再显示"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/po/zh_TW/plasma-browser-integration-reminder.po
 
new/plasma-browser-integration-6.6.4/po/zh_TW/plasma-browser-integration-reminder.po
--- 
old/plasma-browser-integration-6.6.3/po/zh_TW/plasma-browser-integration-reminder.po
        2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/po/zh_TW/plasma-browser-integration-reminder.po
        2026-04-07 09:57:00.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: plasma-browser-integration\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-01-24 02:39+0000\n"
+"POT-Creation-Date: 2026-03-19 02:48+0000\n"
 "PO-Revision-Date: 2019-01-04 21:59+0800\n"
 "Last-Translator: pan93412 <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -22,7 +22,7 @@
 msgid "Get Plasma Browser Integration"
 msgstr "取得 Plasma 瀏覽器整合元件"
 
-#: browserintegrationreminder.cpp:169
+#: browserintegrationreminder.cpp:170
 #, kde-format
 msgid "Do not show again"
 msgstr "不再顯示"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-browser-integration-6.6.3/reminder/browserintegrationreminder.cpp 
new/plasma-browser-integration-6.6.4/reminder/browserintegrationreminder.cpp
--- 
old/plasma-browser-integration-6.6.3/reminder/browserintegrationreminder.cpp    
    2026-03-17 12:05:24.000000000 +0100
+++ 
new/plasma-browser-integration-6.6.4/reminder/browserintegrationreminder.cpp    
    2026-04-07 09:57:00.000000000 +0200
@@ -155,6 +155,7 @@
         KIO::ApplicationLauncherJob *job = new 
KIO::ApplicationLauncherJob(service);
         job->setUrls({m_browsers[browser]});
         job->setUiDelegate(new 
KNotificationJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled));
+        job->setStartupId(m_sni->providedToken().toUtf8());
         job->start();
 
         
KActivities::ResourceInstance::notifyAccessed(QUrl(QStringLiteral("applications:")
 + browser),

Reply via email to