Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package baloo-widgets for openSUSE:Factory 
checked in at 2026-08-24 12:02:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/baloo-widgets (Old)
 and      /work/SRC/openSUSE:Factory/.baloo-widgets.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "baloo-widgets"

Mon Aug 24 12:02:18 2026 rev:31 rq:1372315 version:26.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/baloo-widgets/baloo-widgets.changes      
2026-07-02 22:04:16.682194247 +0200
+++ /work/SRC/openSUSE:Factory/.baloo-widgets.new.1258/baloo-widgets.changes    
2026-08-24 12:03:30.570650028 +0200
@@ -1,0 +2,30 @@
+Sun Aug 16 07:26:29 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/26.08.0/
+- No code change since 26.07.90
+
+-------------------------------------------------------------------
+Sat Aug  1 11:38:14 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.07.90
+  * New feature release
+- No code change since 26.07.80
+
+-------------------------------------------------------------------
+Sat Jul 18 11:10:49 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 26.07.80
+  * New feature release
+- Changes since 26.04.3:
+  * Revert "filemetadatawidget: remove TextInteractionFlag"
+  * tagsfileitemaction: fix crash on empty selection (kde#521325)
+  * Remove FileMetaDataConfigWidget, deprecated since 23.08
+  * Use default DEFAULT_SEVERITY for logging
+  * Remove pointless path check for indexed files
+  * autotests: Fix leak of test widget
+  * filemetadatawidget: remove TextInteractionFlag (kde#515867)
+
+-------------------------------------------------------------------

Old:
----
  baloo-widgets-26.04.3.tar.xz
  baloo-widgets-26.04.3.tar.xz.sig

New:
----
  baloo-widgets-26.08.0.tar.xz
  baloo-widgets-26.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ baloo-widgets.spec ++++++
--- /var/tmp/diff_new_pack.Rr7bE9/_old  2026-08-24 12:03:31.984699955 +0200
+++ /var/tmp/diff_new_pack.Rr7bE9/_new  2026-08-24 12:03:31.989700132 +0200
@@ -16,14 +16,13 @@
 #
 
 
-
-%define kf6_version 6.19.0
+%define kf6_version 6.27.0
 %define qt6_version 6.9.0
 
 %define rname baloo-widgets
 %bcond_without released
 Name:           baloo-widgets
-Version:        26.04.3
+Version:        26.08.0
 Release:        0
 Summary:        Framework for searching and managing metadata
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-only
@@ -47,9 +46,9 @@
 # Due to the binary it can't be SLPP compliant currently,
 # but only the latest version should be needed.
 Obsoletes:      libKF5BalooWidgets5 < %{version}
-Obsoletes:      libKF6BalooNaturalQueryParser1 < %{version}
 Obsoletes:      baloo5-widgets < %{version}
 Obsoletes:      baloo5-widgets-lang < %{version}
+Obsoletes:      libKF6BalooNaturalQueryParser1 < %{version}
 
 %description
 Baloo is a framework for searching and managing metada


++++++ baloo-widgets-26.04.3.tar.xz -> baloo-widgets-26.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/CMakeLists.txt 
new/baloo-widgets-26.08.0/CMakeLists.txt
--- old/baloo-widgets-26.04.3/CMakeLists.txt    2026-06-27 00:17:44.000000000 
+0200
+++ new/baloo-widgets-26.08.0/CMakeLists.txt    2026-08-11 23:38:29.000000000 
+0200
@@ -2,8 +2,8 @@
 
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "26")
-set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "3")
+set (RELEASE_SERVICE_VERSION_MINOR "08")
+set (RELEASE_SERVICE_VERSION_MICRO "0")
 set (RELEASE_SERVICE_VERSION 
"${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
 project(baloo-widgets VERSION ${RELEASE_SERVICE_VERSION})
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/autotests/filemetadatadatedisplaytest.cpp 
new/baloo-widgets-26.08.0/autotests/filemetadatadatedisplaytest.cpp
--- old/baloo-widgets-26.04.3/autotests/filemetadatadatedisplaytest.cpp 
2026-06-27 00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/autotests/filemetadatadatedisplaytest.cpp 
2026-08-11 23:38:29.000000000 +0200
@@ -127,9 +127,9 @@
     QFETCH(QUrl, file);
     QFETCH(QRegularExpression, regex);
 
-    const auto widget = new Baloo::FileMetaDataWidget();
+    auto widget = std::make_unique<Baloo::FileMetaDataWidget>();
     widget->setDateFormat(format);
-    QSignalSpy spy(widget, 
&Baloo::FileMetaDataWidget::metaDataRequestFinished);
+    QSignalSpy spy(widget.get(), 
&Baloo::FileMetaDataWidget::metaDataRequestFinished);
     widget->setItems({KFileItem{file}});
     QVERIFY(spy.wait());
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ar/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ar/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ar/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ar/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-12 18:52+0400\n"
 "Last-Translator: Zayed Al-Saidi <[email protected]>\n"
 "Language-Team: ar\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/az/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/az/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/az/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/az/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2022-07-20 11:16+0400\n"
 "Last-Translator: Kheyyam <[email protected]>\n"
 "Language-Team: Azerbaijani <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/bg/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/bg/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/bg/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/bg/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-09 14:05+0100\n"
 "Last-Translator: Mincho Kondarev <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/bs/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/bs/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/bs/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/bs/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: kde 49i410\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2015-02-14 23:08+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ca/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ca/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ca/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ca/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 14:53+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -263,3 +263,28 @@
 msgctxt "String list separator"
 msgid ", "
 msgstr ", "
+
+#~ msgid "Create New..."
+#~ msgstr "Crea nova..."
+
+#~ msgid "New tag"
+#~ msgstr "Etiqueta nova"
+
+#~ msgid "New tag:"
+#~ msgstr "Etiqueta nova:"
+
+#~ msgctxt "@label"
+#~ msgid "Add..."
+#~ msgstr "Afegeix..."
+
+#~ msgctxt "@label"
+#~ msgid "Edit..."
+#~ msgstr "Edita..."
+
+#~ msgctxt "@title:window"
+#~ msgid "Edit Comment"
+#~ msgstr "Edició de comentari"
+
+#~ msgctxt "@title:window"
+#~ msgid "Add Comment"
+#~ msgstr "Afegeix un comentari"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/po/ca@valencia/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ca@valencia/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ca@valencia/baloowidgets5.po   2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ca@valencia/baloowidgets5.po   2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 14:53+0100\n"
 "Last-Translator: Josep M. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/cs/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/cs/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/cs/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/cs/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-12-02 11:48+0100\n"
 "Last-Translator: Vit Pelcak <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/da/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/da/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/da/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/da/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2022-08-08 17:36+0200\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/de/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/de/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/de/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/de/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -1,12 +1,12 @@
-# SPDX-FileCopyrightText: 2012, 2013, 2014, 2015, 2017, 2018, 2019, 2020 
Burkhard Lück <[email protected]>
 # SPDX-FileCopyrightText: 2012, 2014, 2016, 2022 Frederik Schwarzer 
<[email protected]>
-# SPDX-FileCopyrightText: 2025 Alois Spitzbart <[email protected]>
+# SPDX-FileCopyrightText: 2012-2015, 2017-2020 Burkhard Lück 
<[email protected]>
 # SPDX-FileCopyrightText: 2025 Alexander Becker 
<[email protected]>
+# SPDX-FileCopyrightText: 2025 Alois Spitzbart <[email protected]>
 msgid ""
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-12-21 23:29+0100\n"
 "Last-Translator: Alexander Becker <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/el/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/el/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/el/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/el/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2023-01-04 10:34+0200\n"
 "Last-Translator: Stelios <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/en_GB/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/en_GB/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/en_GB/baloowidgets5.po 2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/en_GB/baloowidgets5.po 2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2022-07-22 15:53+0100\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/eo/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/eo/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/eo/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/eo/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2024-05-29 23:46+0200\n"
 "Last-Translator: Oliver Kellogg <[email protected]>\n"
 "Language-Team: Esperanto <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/es/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/es/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/es/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/es/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-10 02:26+0100\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/et/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/et/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/et/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/et/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2020-01-13 11:02+0200\n"
 "Last-Translator: Marek Laane <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/eu/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/eu/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/eu/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/eu/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-01-25 13:29+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/fi/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/fi/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/fi/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/fi/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: nepomukwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-01-10 20:41+0200\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/fr/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/fr/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/fr/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/fr/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: nepomukwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-09 16:37+0100\n"
 "Last-Translator: Xavier Besnard <[email protected]>\n"
 "Language-Team: French <French <[email protected]>>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ga/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ga/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ga/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ga/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: nepomukwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2012-09-21 16:01-0500\n"
 "Last-Translator: Kevin Scannell <[email protected]>\n"
 "Language-Team: Irish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/gl/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/gl/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/gl/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/gl/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2023-06-24 10:58+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/he/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/he/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/he/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/he/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 19:59+0200\n"
 "Last-Translator: Yaron Shahrabani <[email protected]>\n"
 "Language-Team: צוות התרגום של KDE ישראל\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/hi/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/hi/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/hi/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/hi/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2024-12-15 17:36+0530\n"
 "Last-Translator: Kali <EMAIL@ADDRESS>\n"
 "Language-Team: Hindi <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/hu/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/hu/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/hu/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/hu/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-16 20:26+0100\n"
 "Last-Translator: Kristof Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ia/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ia/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ia/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ia/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-12-29 16:55+0100\n"
 "Last-Translator: giovanni <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/id/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/id/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/id/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/id/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2020-02-24 22:04+0700\n"
 "Last-Translator: Wantoyo <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/it/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/it/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/it/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/it/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: nepomukwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-09 07:39+0100\n"
 "Last-Translator: Vincenzo Reale <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ja/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ja/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ja/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ja/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: nepomukwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-03-01 16:45+0900\n"
 "Last-Translator: Mint <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ka/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ka/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ka/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ka/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 07:29+0100\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/kk/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/kk/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/kk/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/kk/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2012-12-30 03:45+0600\n"
 "Last-Translator: Sairan Kikkarin <[email protected]>\n"
 "Language-Team: Kazakh <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ko/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ko/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ko/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ko/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-04-26 22:58+0200\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/lt/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/lt/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/lt/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/lt/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: l 10n\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-12-20 02:51+0200\n"
 "Last-Translator: Moo <<>>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/lv/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/lv/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/lv/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/lv/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-09 10:44+0200\n"
 "Last-Translator: Toms Trasūns <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ml/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ml/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ml/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ml/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2019-12-12 13:28+0000\n"
 "Last-Translator: Preyas Prathap <[email protected]>\n"
 "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം 
Computing|കമ്പ്യൂട്ടിങ്ങ് <smc."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/mr/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/mr/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/mr/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/mr/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2013-02-08 16:27+0530\n"
 "Last-Translator: Chetan Khona <[email protected]>\n"
 "Language-Team: American English <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/nb/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/nb/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/nb/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/nb/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2014-09-19 20:28+0200\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/nds/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/nds/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/nds/baloowidgets5.po   2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/nds/baloowidgets5.po   2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2014-09-18 16:35+0200\n"
 "Last-Translator: Sönke Dibbern <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/nl/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/nl/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/nl/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/nl/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 11:03+0100\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: \n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/nn/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/nn/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/nn/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/nn/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -1,10 +1,11 @@
 # Translation of baloowidgets5 to Norwegian Nynorsk
 #
+# Karl Ove Hufthammer <[email protected]>, 2016, 2018, 2019, 2020, 2022, 2026.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-02-26 18:59+0100\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/pa/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/pa/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/pa/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/pa/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2012-12-12 08:52+0530\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi/Panjabi <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/pl/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/pl/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/pl/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/pl/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-14 08:21+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: pl\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/pt/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/pt/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/pt/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/pt/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: baloo_queryparser\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2022-07-17 16:19+0100\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/pt_BR/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/pt_BR/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/pt_BR/baloowidgets5.po 2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/pt_BR/baloowidgets5.po 2026-08-11 
23:38:29.000000000 +0200
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-19 06:52-0300\n"
 "Last-Translator: Marcus Gama <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ro/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ro/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ro/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ro/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-27 12:26+0000\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ru/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ru/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ru/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ru/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-01-28 16:54+0200\n"
 "Last-Translator: Alexander Yavorskiy <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/sa/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sa/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sa/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sa/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2024-12-20 21:51+0530\n"
 "Last-Translator: kali <[email protected]>\n"
 "Language-Team: Sanskrit <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/sk/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sk/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sk/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sk/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2022-04-07 18:01+0200\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/sl/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sl/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sl/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sl/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 06:52+0100\n"
 "Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/sr/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sr/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sr/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sr/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2017-09-09 22:51+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/po/sr@ijekavian/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sr@ijekavian/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sr@ijekavian/baloowidgets5.po  2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sr@ijekavian/baloowidgets5.po  2026-08-11 
23:38:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2017-09-09 22:51+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/po/sr@ijekavianlatin/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sr@ijekavianlatin/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sr@ijekavianlatin/baloowidgets5.po     
2026-06-27 00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sr@ijekavianlatin/baloowidgets5.po     
2026-08-11 23:38:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2017-09-09 22:51+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/sr@latin/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sr@latin/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sr@latin/baloowidgets5.po      2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sr@latin/baloowidgets5.po      2026-08-11 
23:38:29.000000000 +0200
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2017-09-09 22:51+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/sv/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/sv/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/sv/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/sv/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-21 01:34+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ta/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ta/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ta/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ta/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: baloo-widgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-30 11:33+0530\n"
 "Last-Translator: Kishore G <[email protected]>\n"
 "Language-Team: Tamil <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/tr/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/tr/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/tr/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/tr/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: kdelibs-kde4\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2026-04-09 15:33+0300\n"
 "Last-Translator: Emir SARI <[email protected]>\n"
 "Language-Team: Turkish <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/ug/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/ug/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/ug/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/ug/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -7,16 +7,16 @@
 msgstr ""
 "Project-Id-Version: nepomukwidgets\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
-"PO-Revision-Date: 2013-09-08 07:05+0900\n"
-"Last-Translator: Gheyret Kenji <[email protected]>\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
+"PO-Revision-Date: 2026-05-28 17:15-0400\n"
+"Last-Translator: Abduqadir Abliz <[email protected]>\n"
 "Language-Team: \n"
 "Language: ug\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Poedit 1.5.7\n"
+"X-Generator: Poedit 3.9\n"
 
 #: src/filemetadataprovider.cpp:204 src/filemetadataprovider.cpp:210
 #: src/filemetadataprovider.cpp:305 src/filemetadataprovider.cpp:308
@@ -33,9 +33,7 @@
 msgstr "ئىزاھات"
 
 #: src/filemetadataprovider.cpp:443
-#, fuzzy, kde-format
-#| msgctxt "@label creation date"
-#| msgid "Created"
+#, kde-format
 msgctxt "@label"
 msgid "Created"
 msgstr "قۇرغان ۋاقتى"
@@ -44,7 +42,7 @@
 #, kde-format
 msgctxt "@label"
 msgid "Accessed"
-msgstr ""
+msgstr "ﺯﯨﻴﺎﺭﻩﺕ ﯞﺍﻗﺘﻰ"
 
 #: src/filemetadataprovider.cpp:445
 #, kde-format
@@ -56,19 +54,19 @@
 #, kde-format
 msgctxt "@label"
 msgid "Owner"
-msgstr "ئىگىسى"
+msgstr "ئىگىدار"
 
 #: src/filemetadataprovider.cpp:447
 #, kde-format
 msgctxt "@label"
 msgid "Group"
-msgstr ""
+msgstr "گۇرۇپپا"
 
 #: src/filemetadataprovider.cpp:448
 #, kde-format
 msgctxt "@label"
 msgid "Permissions"
-msgstr "ئىمتىيازلار"
+msgstr "ئىجازەت"
 
 #: src/filemetadataprovider.cpp:449 src/filemetadataprovider.cpp:458
 #, kde-format
@@ -86,7 +84,7 @@
 #, kde-format
 msgctxt "@label"
 msgid "Tags"
-msgstr "خەتكۈشلەر"
+msgstr "بەلگە"
 
 #: src/filemetadataprovider.cpp:452
 #, kde-format
@@ -104,7 +102,7 @@
 #, kde-format
 msgctxt "@label"
 msgid "Type"
-msgstr "تىپى"
+msgstr "تۈرى"
 
 #: src/filemetadataprovider.cpp:455
 #, kde-format
@@ -119,69 +117,57 @@
 msgstr ""
 
 #: src/filemetadataprovider.cpp:460
-#, fuzzy, kde-format
-#| msgctxt "@label"
-#| msgid "Copied From"
+#, kde-format
 msgctxt "@label"
 msgid "Downloaded From"
-msgstr "كۆچۈرۈلگەن ئورۇن"
+msgstr "چۈشۈرگەن ئورنى"
 
 #: src/filemetadataprovider.cpp:461
 #, kde-format
 msgctxt "@label"
 msgid "Dimensions"
-msgstr ""
+msgstr "ئۆلچەم"
 
 #: src/filemetadataprovider.cpp:462
-#, fuzzy, kde-format
-#| msgctxt "@label file URL"
-#| msgid "Location"
+#, kde-format
 msgctxt "@label"
 msgid "GPS Location"
-msgstr "ئورنى"
+msgstr ""
 
 #: src/filepropertiesplugin/baloofilepropertiesplugin.cpp:66
 #, kde-format
 msgctxt "Tab page with file meta data"
 msgid "&Details"
-msgstr ""
+msgstr "تەپسىلاتى(&D)"
 
 #: src/kcommentwidget.cpp:40
-#, fuzzy, kde-format
-#| msgctxt "@label"
-#| msgid "Comment"
+#, kde-format
 msgctxt "accessible name for file metadata comment text box"
 msgid "Comment"
 msgstr "ئىزاھات"
 
 #: src/kcommentwidget.cpp:53
-#, fuzzy, kde-format
-#| msgctxt "@title:window"
-#| msgid "Change Comment"
+#, kde-format
 msgctxt "@action:button file metadata comment"
 msgid "Save Comment"
-msgstr "ئىزاھات ئۆزگەرت"
+msgstr ""
 
 #: src/kedittagsdialog.cpp:36
-#, fuzzy, kde-format
-#| msgctxt "@title:window"
-#| msgid "Add Tags"
+#, kde-format
 msgctxt "@title:window"
 msgid "Edit Tags"
-msgstr "خەتكۈش قوش"
+msgstr "بەلگە تەھرىر"
 
 #: src/kedittagsdialog.cpp:36
-#, fuzzy, kde-format
-#| msgctxt "@label"
-#| msgid "Add Tags..."
+#, kde-format
 msgctxt "@title:window"
 msgid "Add Tags"
-msgstr "بەلگە قوش…"
+msgstr "خەتكۈش قوش"
 
 #: src/kedittagsdialog.cpp:40
 #, kde-format
 msgid "Save"
-msgstr ""
+msgstr "ساقلا"
 
 #: src/kedittagsdialog.cpp:50
 #, kde-format
@@ -190,9 +176,7 @@
 msgstr "قايسى بەلگە ئىشلىتىش سەپلىنىدۇ."
 
 #: src/kedittagsdialog.cpp:64
-#, fuzzy, kde-format
-#| msgctxt "@label"
-#| msgid "Create new tag:"
+#, kde-format
 msgctxt "@label"
 msgid "Create new tag:"
 msgstr "يېڭى بەلگە قۇر:"
@@ -213,34 +197,26 @@
 msgstr ""
 
 #: src/tagsfileitemactionplugin/tagsfileitemaction.cpp:55
-#, fuzzy, kde-format
-#| msgctxt "@title:window"
-#| msgid "Add Tags"
+#, kde-format
 msgid "Assign Tags"
-msgstr "خەتكۈش قوش"
+msgstr "بەلگە تەقسىملە"
 
 #: src/tagsfileitemactionplugin/tagsfileitemaction.cpp:89
-#, fuzzy, kde-format
-#| msgctxt "@title:window"
-#| msgid "Add Tags"
+#, kde-format
 msgid "Edit tags..."
-msgstr "خەتكۈش قوش"
+msgstr ""
 
 #: src/tagwidget.cpp:83
-#, fuzzy, kde-format
-#| msgctxt "@label"
-#| msgid "Add Tags..."
+#, kde-format
 msgctxt "@action:button"
 msgid "Add tags…"
-msgstr "بەلگە قوش…"
+msgstr ""
 
 #: src/tagwidget.cpp:83
-#, fuzzy, kde-format
-#| msgctxt "@title:window"
-#| msgid "Add Tags"
+#, kde-format
 msgctxt "@action:button"
 msgid "Edit tags…"
-msgstr "خەتكۈش قوش"
+msgstr ""
 
 #: src/widgetfactory.cpp:62
 #, kde-format
@@ -276,27 +252,24 @@
 #, kde-format
 msgctxt "width × height"
 msgid "%1 × %2"
-msgstr ""
+msgstr "%1 × %2"
 
 #: src/widgetfactory.cpp:286 src/widgetfactory.cpp:297
 #, kde-format
 msgctxt "String list separator"
 msgid ", "
-msgstr ""
+msgstr "، "
 
-#, fuzzy
 #~| msgctxt "@label"
 #~| msgid "Create new tag:"
 #~ msgid "Create New..."
 #~ msgstr "يېڭى بەلگە قۇر:"
 
-#, fuzzy
 #~| msgctxt "@label"
 #~| msgid "Create new tag:"
 #~ msgid "New tag:"
 #~ msgstr "يېڭى بەلگە قۇر:"
 
-#, fuzzy
 #~| msgctxt "@title:window"
 #~| msgid "Add Comment"
 #~ msgctxt "@title:window"
@@ -319,19 +292,16 @@
 #~ msgid "Add Comment..."
 #~ msgstr "ئىزاھات قوش…"
 
-#, fuzzy
 #~| msgctxt "@label"
 #~| msgid "Description"
 #~ msgid "Comment or description"
 #~ msgstr "چۈشەندۈرۈش"
 
-#, fuzzy
 #~| msgctxt "@label"
 #~| msgid "Size"
 #~ msgid "Size"
 #~ msgstr "چوڭلۇقى"
 
-#, fuzzy
 #~| msgctxt "@label"
 #~| msgid "Content"
 #~ msgctxt "Space-separated list of words meaning 10"
@@ -514,7 +484,6 @@
 #~ msgid "Album"
 #~ msgstr "ئالبوم"
 
-#, fuzzy
 #~| msgctxt "@label"
 #~| msgid "Sample Rate"
 #~ msgctxt "@label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/uk/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/uk/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/uk/baloowidgets5.po    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/uk/baloowidgets5.po    2026-08-11 
23:38:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: baloowidgets5\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-08 17:27+0200\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/zh_CN/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/zh_CN/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/zh_CN/baloowidgets5.po 2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/zh_CN/baloowidgets5.po 2026-08-11 
23:38:29.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-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2024-04-22 16:03\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/po/zh_TW/baloowidgets5.po 
new/baloo-widgets-26.08.0/po/zh_TW/baloowidgets5.po
--- old/baloo-widgets-26.04.3/po/zh_TW/baloowidgets5.po 2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/po/zh_TW/baloowidgets5.po 2026-08-11 
23:38:29.000000000 +0200
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2026-06-14 02:31+0000\n"
+"POT-Creation-Date: 2026-06-14 00:42+0000\n"
 "PO-Revision-Date: 2025-11-13 21:51+0900\n"
 "Last-Translator: Kisaragi Hiu <[email protected]>\n"
 "Language-Team: Traditional Chinese <[email protected]>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/src/CMakeLists.txt 
new/baloo-widgets-26.08.0/src/CMakeLists.txt
--- old/baloo-widgets-26.04.3/src/CMakeLists.txt        2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/src/CMakeLists.txt        2026-08-11 
23:38:29.000000000 +0200
@@ -16,8 +16,6 @@
     extractorutil_p.h
     filefetchjob.cpp
     filefetchjob.h
-    filemetadataconfigwidget.cpp
-    filemetadataconfigwidget.h
     filemetadataprovider.cpp
     filemetadataprovider.h
     filemetadatautil.cpp
@@ -46,7 +44,6 @@
 ecm_qt_declare_logging_category(KF6BalooWidgets
     HEADER "widgetsdebug.h"
     IDENTIFIER "Baloo::WIDGETS"
-    DEFAULT_SEVERITY Warning
     CATEGORY_NAME "org.kde.baloo.widgets"
     DESCRIPTION "Baloo Widgets"
     EXPORT BALOO_WIDGETS
@@ -76,7 +73,7 @@
     EXPORT_FILE_NAME widgets_export.h
     VERSION ${BALOO_WIDGETS_VERSION}
     DEPRECATED_BASE_VERSION 0
-    DEPRECATION_VERSIONS 23.08
+    DEPRECATION_VERSIONS
     EXCLUDE_DEPRECATED_BEFORE_AND_AT ${EXCLUDE_DEPRECATED_BEFORE_AND_AT}
 )
 
@@ -86,7 +83,6 @@
     HEADER_NAMES
     TagWidget
     FileMetaDataWidget
-    FileMetaDataConfigWidget
 
     PREFIX baloo
     REQUIRED_HEADERS KFBalooWidgets_HEADERS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/src/filemetadataconfigwidget.cpp 
new/baloo-widgets-26.08.0/src/filemetadataconfigwidget.cpp
--- old/baloo-widgets-26.04.3/src/filemetadataconfigwidget.cpp  2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/src/filemetadataconfigwidget.cpp  1970-01-01 
01:00:00.000000000 +0100
@@ -1,187 +0,0 @@
-/*
-    SPDX-FileCopyrightText: 2013 Vishesh Handa <[email protected]>
-    SPDX-FileCopyrightText: 2009 Peter Penz <[email protected]>
-
-    SPDX-License-Identifier: LGPL-2.0-or-later
-*/
-
-#include "filemetadataconfigwidget.h"
-#include "filemetadataprovider.h"
-
-#include <KConfig>
-#include <KConfigGroup>
-
-#include <QDebug>
-#include <QEvent>
-#include <QListWidget>
-#include <QVBoxLayout>
-
-using namespace Baloo;
-
-class Baloo::FileMetaDataConfigWidgetPrivate
-{
-public:
-    explicit FileMetaDataConfigWidgetPrivate(FileMetaDataConfigWidget *parent);
-    ~FileMetaDataConfigWidgetPrivate();
-
-    FileMetaDataConfigWidgetPrivate(const FileMetaDataConfigWidgetPrivate&) = 
delete;
-    FileMetaDataConfigWidget& operator=(const 
FileMetaDataConfigWidgetPrivate&) = delete;
-
-    void init();
-    void loadMetaData();
-    void addItem(const QString &property);
-
-    /**
-     * Is invoked after the meta data model has finished the loading of
-     * meta data. The meta data labels will be added to the configuration
-     * list.
-     */
-    void slotLoadingFinished();
-
-    int m_visibleDataTypes;
-    KFileItemList m_fileItems;
-    FileMetaDataProvider *m_provider;
-    QListWidget *m_metaDataList;
-
-private:
-    FileMetaDataConfigWidget *const q;
-};
-
-FileMetaDataConfigWidgetPrivate::FileMetaDataConfigWidgetPrivate(FileMetaDataConfigWidget
 *parent)
-    : m_visibleDataTypes(0)
-    , m_fileItems()
-    , m_provider(nullptr)
-    , m_metaDataList(nullptr)
-    , q(parent)
-{
-    m_metaDataList = new QListWidget(q);
-    m_metaDataList->setSelectionMode(QAbstractItemView::NoSelection);
-    m_metaDataList->setSortingEnabled(true);
-
-    auto layout = new QVBoxLayout(q);
-    layout->addWidget(m_metaDataList);
-
-    m_provider = new FileMetaDataProvider(q);
-    m_provider->setReadOnly(true);
-    QObject::connect(m_provider, SIGNAL(loadingFinished()), q, 
SLOT(slotLoadingFinished()));
-}
-
-FileMetaDataConfigWidgetPrivate::~FileMetaDataConfigWidgetPrivate() = default;
-
-void FileMetaDataConfigWidgetPrivate::loadMetaData()
-{
-    m_metaDataList->clear();
-    m_provider->setItems(m_fileItems);
-}
-
-void FileMetaDataConfigWidgetPrivate::addItem(const QString &key)
-{
-    // Meta information provided by Baloo that is already
-    // available from KFileItem as "fixed item" (see above)
-    // should not be shown as second entry.
-    static const char *const hiddenProperties[] = {
-        "comment", // = fixed item kfileitem#comment
-        "contentSize", // = fixed item kfileitem#size
-
-        nullptr // mandatory last entry
-    };
-
-    int i = 0;
-    while (hiddenProperties[i] != nullptr) {
-        if (key == QLatin1String(hiddenProperties[i])) {
-            // the item is hidden
-            return;
-        }
-        ++i;
-    }
-
-    // the item is not hidden, add it to the list
-    KConfig config(QStringLiteral("baloofileinformationrc"), 
KConfig::NoGlobals);
-    KConfigGroup settings = config.group(QStringLiteral("Show"));
-
-    const QString label = m_provider->label(key);
-
-    auto item = new QListWidgetItem(label, m_metaDataList);
-    item->setData(Qt::UserRole, key);
-    const bool show = settings.readEntry(key, true);
-    item->setCheckState(show ? Qt::Checked : Qt::Unchecked);
-}
-
-void FileMetaDataConfigWidgetPrivate::slotLoadingFinished()
-{
-    // Get all meta information labels that are available for
-    // the currently shown file item and add them to the list.
-    Q_ASSERT(m_provider != nullptr);
-
-    m_metaDataList->clear();
-
-    QVariantMap data = m_provider->data();
-    // Always show these 3
-    data.remove(QStringLiteral("rating"));
-    data.remove(QStringLiteral("tags"));
-    data.remove(QStringLiteral("userComment"));
-
-    QVariantMap::const_iterator it = data.constBegin();
-    while (it != data.constEnd()) {
-        addItem(it.key());
-        ++it;
-    }
-
-    addItem(QStringLiteral("rating"));
-    addItem(QStringLiteral("tags"));
-    addItem(QStringLiteral("userComment"));
-}
-
-FileMetaDataConfigWidget::FileMetaDataConfigWidget(QWidget *parent)
-    : QWidget(parent)
-    , d(new FileMetaDataConfigWidgetPrivate(this))
-{
-}
-
-FileMetaDataConfigWidget::~FileMetaDataConfigWidget() = default;
-
-void FileMetaDataConfigWidget::setItems(const KFileItemList &items)
-{
-    d->m_fileItems = items;
-    d->loadMetaData();
-}
-
-KFileItemList FileMetaDataConfigWidget::items() const
-{
-    return d->m_fileItems;
-}
-
-void FileMetaDataConfigWidget::save()
-{
-    KConfig config(QStringLiteral("baloofileinformationrc"), 
KConfig::NoGlobals);
-    KConfigGroup showGroup = config.group(QStringLiteral("Show"));
-
-    const int count = d->m_metaDataList->count();
-    for (int i = 0; i < count; ++i) {
-        QListWidgetItem *item = d->m_metaDataList->item(i);
-        const bool show = (item->checkState() == Qt::Checked);
-        const QString key = item->data(Qt::UserRole).toString();
-        showGroup.writeEntry(key, show);
-    }
-
-    showGroup.sync();
-}
-
-bool FileMetaDataConfigWidget::event(QEvent *event)
-{
-    if (event->type() == QEvent::Polish) {
-        qDebug() << "GOT POLISH EVENT!!!";
-        // loadMetaData() must be invoked asynchronously, as the list
-        // must finish it's initialization first
-        QMetaObject::invokeMethod(this, "loadMetaData", Qt::QueuedConnection);
-    }
-    return QWidget::event(event);
-    ;
-}
-
-QSize FileMetaDataConfigWidget::sizeHint() const
-{
-    return d->m_metaDataList->sizeHint();
-}
-
-#include "moc_filemetadataconfigwidget.cpp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/src/filemetadataconfigwidget.h 
new/baloo-widgets-26.08.0/src/filemetadataconfigwidget.h
--- old/baloo-widgets-26.04.3/src/filemetadataconfigwidget.h    2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/src/filemetadataconfigwidget.h    1970-01-01 
01:00:00.000000000 +0100
@@ -1,69 +0,0 @@
-/*
-    SPDX-FileCopyrightText: 2013 Vishesh Handa <[email protected]>
-    SPDX-FileCopyrightText: 2009 Peter Penz <[email protected]>
-
-    SPDX-License-Identifier: LGPL-2.0-or-later
-*/
-
-#ifndef BALOO_FILEMETADATACONFIGWIDGET_H
-#define BALOO_FILEMETADATACONFIGWIDGET_H
-
-#include "widgets_export.h"
-#include <KFileItem>
-
-#include <QWidget>
-
-#include <memory>
-
-namespace Baloo
-{
-#if BALOO_WIDGETS_ENABLE_DEPRECATED_SINCE(23, 8)
-class FileMetaDataConfigWidgetPrivate;
-
-/**
- * @brief Widget which allows to configure which meta data should be shown
- *        in the FileMetadataWidget
- * @deprecated Since 23.08, use FileMetaDataWidget::setConfigurationMode()
- *             instead.
- */
-class BALOO_WIDGETS_EXPORT FileMetaDataConfigWidget : public QWidget
-{
-    Q_OBJECT
-
-public:
-    explicit FileMetaDataConfigWidget(QWidget *parent = nullptr);
-    ~FileMetaDataConfigWidget() override;
-
-    /**
-     * Sets the items, for which the visibility of the meta data should
-     * be configured. Note that the visibility of the meta data is not
-     * bound to the items itself, the items are only used to determine
-     * which meta data should be configurable. For example when a JPEG image
-     * is set as item, it will be configurable which EXIF data should be
-     * shown. If an audio file is set as item, it will be configurable
-     * whether the artist, album name, ... should be shown.
-     */
-    void setItems(const KFileItemList &items);
-    KFileItemList items() const;
-
-    /**
-     * Saves the modified configuration.
-     */
-    void save();
-
-    /** @see QWidget::sizeHint() */
-    QSize sizeHint() const override;
-
-protected:
-    bool event(QEvent *event) override;
-
-private:
-    friend class FileMetaDataConfigWidgetPrivate;
-    std::unique_ptr<FileMetaDataConfigWidgetPrivate> const d;
-
-    Q_PRIVATE_SLOT(d, void loadMetaData())
-    Q_PRIVATE_SLOT(d, void slotLoadingFinished())
-};
-#endif
-}
-#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-widgets-26.04.3/src/filemetadataprovider.cpp 
new/baloo-widgets-26.08.0/src/filemetadataprovider.cpp
--- old/baloo-widgets-26.04.3/src/filemetadataprovider.cpp      2026-06-27 
00:17:44.000000000 +0200
+++ new/baloo-widgets-26.08.0/src/filemetadataprovider.cpp      2026-08-11 
23:38:29.000000000 +0200
@@ -388,7 +388,7 @@
             // Fully indexed by Baloo
             indexingMode = FileFetchJob::UseRealtimeIndexing::Fallback;
 
-            if (!m_config.fileIndexingEnabled() || 
!m_config.shouldBeIndexed(urls.first()) || m_config.onlyBasicIndexing()) {
+            if (!m_config.fileIndexingEnabled() || 
m_config.onlyBasicIndexing()) {
                 // Not indexed or only basic file indexing (no content)
                 indexingMode = FileFetchJob::UseRealtimeIndexing::Only;
             }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/src/filepropertiesplugin/baloofilepropertiesplugin.json
 
new/baloo-widgets-26.08.0/src/filepropertiesplugin/baloofilepropertiesplugin.json
--- 
old/baloo-widgets-26.04.3/src/filepropertiesplugin/baloofilepropertiesplugin.json
   2026-06-27 00:17:44.000000000 +0200
+++ 
new/baloo-widgets-26.08.0/src/filepropertiesplugin/baloofilepropertiesplugin.json
   2026-08-11 23:38:29.000000000 +0200
@@ -86,6 +86,7 @@
         "Name[sv]": "Egenskapssida för filmetadata",
         "Name[ta]": "கோப்பின் மேனிலைத் தருவுகளைக் காட்டும் பக்கம்",
         "Name[tr]": "Dosya Üst Verisi Özellikleri Sayfası",
+        "Name[ug]": "ھۆججەت تەپسىلىي سانلىق مەلۇمات خاسلىق بېتى",
         "Name[uk]": "Сторінка властивостей і метаданих файла",
         "Name[zh_CN]": "文件元数据属性页",
         "Name[zh_TW]": "檔案中繼資料屬性頁面"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-widgets-26.04.3/src/tagsfileitemactionplugin/tagsfileitemaction.json 
new/baloo-widgets-26.08.0/src/tagsfileitemactionplugin/tagsfileitemaction.json
--- 
old/baloo-widgets-26.04.3/src/tagsfileitemactionplugin/tagsfileitemaction.json  
    2026-06-27 00:17:44.000000000 +0200
+++ 
new/baloo-widgets-26.08.0/src/tagsfileitemactionplugin/tagsfileitemaction.json  
    2026-08-11 23:38:29.000000000 +0200
@@ -44,6 +44,7 @@
                 "Name[sv]": "Nicolas Fella",
                 "Name[ta]": "நிக்கோலஸ் ஃபெல்லா",
                 "Name[tr]": "Nicolas Fella",
+                "Name[ug]": "Nicolas Fella",
                 "Name[uk]": "Nicolas Fella",
                 "Name[zh_CN]": "Nicolas Fella",
                 "Name[zh_TW]": "Nicolas Fella"
@@ -110,6 +111,7 @@
         "Name[de]": "Stichwörter zuweisen",
         "Name[es]": "Asignar etiquetas",
         "Name[eu]": "Esleitu etiketak",
+        "Name[fi]": "Kytke luokituksia",
         "Name[fr]": "Attribuer des étiquettes",
         "Name[he]": "הקצאת תגיות",
         "Name[hu]": "Címkék hozzárendelése",
@@ -127,8 +129,10 @@
         "Name[ru]": "Присвоение меток",
         "Name[sk]": "Priradiť značky",
         "Name[sl]": "Dodeli oznake",
+        "Name[sv]": "Tilldela etiketter",
         "Name[ta]": "குறிச்சொற்களை இடு",
         "Name[tr]": "Künyeler Ata",
+        "Name[ug]": "بەلگە تەقسىملە",
         "Name[uk]": "Призначення міток",
         "Name[zh_CN]": "分配标签",
         "Name[zh_TW]": "指定標籤",

Reply via email to