Hello community,

here is the log from the commit of package baloo5 for openSUSE:Factory checked 
in at 2016-01-20 09:40:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/baloo5 (Old)
 and      /work/SRC/openSUSE:Factory/.baloo5.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "baloo5"

Changes:
--------
--- /work/SRC/openSUSE:Factory/baloo5/baloo5.changes    2015-12-29 
12:50:09.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.baloo5.new/baloo5.changes       2016-01-20 
09:40:05.000000000 +0100
@@ -1,0 +2,12 @@
+Sat Jan  2 17:41:18 UTC 2016 - [email protected]
+
+- Update to 5.18.0
+  * Fix several issue of mtime related search
+  * PostingDB Iter: Do not assert on MDB_NOTFOUND
+  * Balooctl status: Avoid showing 'Content indexing' about folders
+  * StatusCommand: Show the correct status for folders
+  * SearchStore: Gracefully handle empty term values (kde#356176)
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.18.0.php
+
+-------------------------------------------------------------------

Old:
----
  baloo-5.17.0.tar.xz

New:
----
  baloo-5.18.0.tar.xz

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

Other differences:
------------------
++++++ baloo5.spec ++++++
--- /var/tmp/diff_new_pack.uvh7DY/_old  2016-01-20 09:40:06.000000000 +0100
+++ /var/tmp/diff_new_pack.uvh7DY/_new  2016-01-20 09:40:06.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package baloo5
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,9 @@
 
 
 %bcond_without lang
-%define _tar_path 5.17
+%define _tar_path 5.18
 Name:           baloo5
-Version:        5.17.0
+Version:        5.18.0
 Release:        0
 %define kf5_version %{version}
 Summary:        Framework for searching and managing metadata

++++++ baloo-5.17.0.tar.xz -> baloo-5.18.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/CMakeLists.txt 
new/baloo-5.18.0/CMakeLists.txt
--- old/baloo-5.17.0/CMakeLists.txt     2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/CMakeLists.txt     2016-01-02 17:20:36.000000000 +0100
@@ -3,7 +3,7 @@
 project(Baloo)
 
 include(FeatureSummary)
-find_package(ECM 5.17.0 REQUIRED NO_MODULE)
+find_package(ECM 5.18.0 REQUIRED NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,8 +19,8 @@
 include(ECMInstallIcons)
 include(ECMAddTests)
 
-set(KF5_VERSION "5.17.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.17.0") # handled by release scripts
+set(KF5_VERSION "5.18.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.18.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX BALOO
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/baloo_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/autotests/unit/engine/mtimedbtest.cpp 
new/baloo-5.18.0/autotests/unit/engine/mtimedbtest.cpp
--- old/baloo-5.17.0/autotests/unit/engine/mtimedbtest.cpp      2015-12-06 
22:14:09.000000000 +0100
+++ new/baloo-5.18.0/autotests/unit/engine/mtimedbtest.cpp      2016-01-02 
17:20:36.000000000 +0100
@@ -97,6 +97,41 @@
             QCOMPARE(it->docId(), static_cast<quint64>(val));
         }
     }
+
+    void testSortedAndUnique()
+    {
+        MTimeDB db(MTimeDB::create(m_txn), m_txn);
+
+        db.put(5, 1);
+        db.put(6, 4);
+        db.put(6, 2);
+        db.put(6, 3);
+        db.put(7, 3);
+
+        QCOMPARE(db.get(6), QVector<quint64>() << 2 << 3 << 4);
+
+        PostingIterator* it = db.iterRange(5, 7);
+        QVERIFY(it);
+
+        {
+            QVector<quint64> result = {1, 2, 3, 4};
+            for (quint64 val : result) {
+                QCOMPARE(it->next(), static_cast<quint64>(val));
+                QCOMPARE(it->docId(), static_cast<quint64>(val));
+            }
+        }
+
+        {
+            it = db.iter(6, MTimeDB::GreaterEqual);
+            QVERIFY(it);
+
+            QVector<quint64> result = {2, 3, 4};
+            for (quint64 val : result) {
+                QCOMPARE(it->next(), static_cast<quint64>(val));
+                QCOMPARE(it->docId(), static_cast<quint64>(val));
+            }
+        }
+    }
 };
 
 QTEST_MAIN(MTimeDBTest)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/docs/user/searching.md 
new/baloo-5.18.0/docs/user/searching.md
--- old/baloo-5.17.0/docs/user/searching.md     2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/docs/user/searching.md     2016-01-02 17:20:36.000000000 
+0100
@@ -4,7 +4,7 @@
 perform searches. Additionally Baloo is also integrated in popular
 applications such as KRunner and Dolphin.
 
-Example -
+Example:
 
     $ baloosearch coldplay
     /home/user/Music/Coldplay - Ghost Stories
@@ -22,7 +22,7 @@
 
 `type:Audio` or `type:Document`
 
-Currently the following types are supported -
+Currently the following types are supported:
 
 * Archive
 * Audio
@@ -70,7 +70,7 @@
 * PageCount
 * WordCount
 * LineCount
-* Langauge
+* Language
 * Copyright
 * Publisher
 * CreationDate
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ar/balooctl.po 
new/baloo-5.18.0/po/ar/balooctl.po
--- old/baloo-5.17.0/po/ar/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ar/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: ٢٠١٥-٠٤-٠٣ ١٤:٢٢+0300\n"
 "Last-Translator: Safa Alfulaij <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\n"
@@ -317,7 +317,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ast/balooctl.po 
new/baloo-5.18.0/po/ast/balooctl.po
--- old/baloo-5.17.0/po/ast/balooctl.po 2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ast/balooctl.po 2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-16 00:49+0100\n"
 "Last-Translator: enolp <[email protected]>\n"
 "Language-Team: Asturian <[email protected]>\n"
@@ -313,7 +313,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/bs/balooctl.po 
new/baloo-5.18.0/po/bs/balooctl.po
--- old/baloo-5.17.0/po/bs/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/bs/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: bosnianuniversetranslation\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-01-04 13:01+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: Bosnian <[email protected]>\n"
@@ -317,7 +317,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ca/balooctl.po 
new/baloo-5.18.0/po/ca/balooctl.po
--- old/baloo-5.17.0/po/ca/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ca/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 22:27+0200\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -319,7 +319,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "S'han indexat %1 / %2 fitxers"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Fitxer: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ca@valencia/balooctl.po 
new/baloo-5.18.0/po/ca@valencia/balooctl.po
--- old/baloo-5.17.0/po/ca@valencia/balooctl.po 2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/ca@valencia/balooctl.po 2016-01-02 17:20:36.000000000 
+0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 22:27+0200\n"
 "Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
@@ -319,7 +319,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "S'han indexat %1 / %2 fitxers"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Fitxer: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/cs/balooctl.po 
new/baloo-5.18.0/po/cs/balooctl.po
--- old/baloo-5.17.0/po/cs/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/cs/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-03-20 13:55+0100\n"
 "Last-Translator: Vít Pelčák <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/da/balooctl.po 
new/baloo-5.18.0/po/da/balooctl.po
--- old/baloo-5.17.0/po/da/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/da/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-23 21:24+0100\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -313,7 +313,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Har indekseret %1 / %2 filer"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Fil: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/de/balooctl.po 
new/baloo-5.18.0/po/de/balooctl.po
--- old/baloo-5.17.0/po/de/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/de/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 23:35+0100\n"
 "Last-Translator: Frederik Schwarzer <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -316,7 +316,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "%1/%2 Dateien indiziert"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Datei: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/el/balooctl.po 
new/baloo-5.18.0/po/el/balooctl.po
--- old/baloo-5.17.0/po/el/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/el/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-27 00:02+0200\n"
 "Last-Translator: Stelios <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -316,7 +316,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Δεικτοδοτήθηκαν %1 / %2 αρχεία"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Αρχείο: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/en_GB/balooctl.po 
new/baloo-5.18.0/po/en_GB/balooctl.po
--- old/baloo-5.17.0/po/en_GB/balooctl.po       2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/en_GB/balooctl.po       2016-01-02 17:20:36.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-26 19:08+0000\n"
 "Last-Translator: Steve Allewell <[email protected]>\n"
 "Language-Team: British English <[email protected]>\n"
@@ -312,7 +312,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indexed %1 / %2 files"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "File: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/es/balooctl.po 
new/baloo-5.18.0/po/es/balooctl.po
--- old/baloo-5.17.0/po/es/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/es/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 19:59+0200\n"
 "Last-Translator: Eloy Cuadra <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -316,7 +316,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indexado %1 / %2 archivos"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Archivo: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/fi/balooctl.po 
new/baloo-5.18.0/po/fi/balooctl.po
--- old/baloo-5.17.0/po/fi/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/fi/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-05 15:27+0200\n"
 "Last-Translator: Lasse Liehu <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indeksoitu %1/%2 tiedostoa"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Tiedosto: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/fr/balooctl.po 
new/baloo-5.18.0/po/fr/balooctl.po
--- old/baloo-5.17.0/po/fr/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/fr/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2014-07-25 11:48+0200\n"
 "Last-Translator: Geoffray Levasseur <geoffray.levasseur-brandin@ac-toulouse."
 "fr>\n"
@@ -318,7 +318,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/gd/balooctl.po 
new/baloo-5.18.0/po/gd/balooctl.po
--- old/baloo-5.17.0/po/gd/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/gd/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-04 15:09+0000\n"
 "Last-Translator: Michael Bauer <[email protected]>\n"
 "Language-Team: Fòram na Gàidhlig\n"
@@ -346,7 +346,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Ag inneacsadh nam faidhlichean ùra"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/gl/balooctl.po 
new/baloo-5.18.0/po/gl/balooctl.po
--- old/baloo-5.17.0/po/gl/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/gl/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-07 11:30+0100\n"
 "Last-Translator: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail."
 "com>\n"
@@ -313,7 +313,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indexáronse %1 ficheiros de %2."
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Ficheiro: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/hu/balooctl.po 
new/baloo-5.18.0/po/hu/balooctl.po
--- old/baloo-5.17.0/po/hu/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/hu/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-09-07 11:35+0200\n"
 "Last-Translator: Kristóf Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -321,7 +321,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "A megadott fájlok indexelése"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ia/balooctl.po 
new/baloo-5.18.0/po/ia/balooctl.po
--- old/baloo-5.17.0/po/ia/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ia/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2014-07-23 16:02+0200\n"
 "Last-Translator: Giovanni Sora <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
@@ -312,7 +312,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/it/balooctl.po 
new/baloo-5.18.0/po/it/balooctl.po
--- old/baloo-5.17.0/po/it/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/it/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-09 22:29+0100\n"
 "Last-Translator: Luigi Toscano <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indicizzati %1 su %2 file"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "File: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ja/balooctl.po 
new/baloo-5.18.0/po/ja/balooctl.po
--- old/baloo-5.17.0/po/ja/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ja/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2014-07-22 17:43-0700\n"
 "Last-Translator: Japanese KDE translation team <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -309,7 +309,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ko/balooctl.po 
new/baloo-5.18.0/po/ko/balooctl.po
--- old/baloo-5.17.0/po/ko/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ko/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-06-27 13:39+0200\n"
 "Last-Translator: Shinjo Park <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -323,7 +323,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "지정한 파일 색인"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/lt/balooctl.po 
new/baloo-5.18.0/po/lt/balooctl.po
--- old/baloo-5.17.0/po/lt/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/lt/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: trunk-kf 5\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2014-11-02 18:38+0200\n"
 "Last-Translator: \n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -316,7 +316,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/nb/balooctl.po 
new/baloo-5.18.0/po/nb/balooctl.po
--- old/baloo-5.17.0/po/nb/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/nb/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-06-13 08:47+0200\n"
 "Last-Translator: Bjørn Steensrud <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/nds/balooctl.po 
new/baloo-5.18.0/po/nds/balooctl.po
--- old/baloo-5.17.0/po/nds/balooctl.po 2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/nds/balooctl.po 2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2014-08-11 11:55+0200\n"
 "Last-Translator: Sönke Dibbern <[email protected]>\n"
 "Language-Team: Low Saxon <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/nl/balooctl.po 
new/baloo-5.18.0/po/nl/balooctl.po
--- old/baloo-5.17.0/po/nl/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/nl/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 22:51+0200\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -318,7 +318,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Geïndexeerd %1 / %2 bestanden"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Bestand: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/nn/balooctl.po 
new/baloo-5.18.0/po/nn/balooctl.po
--- old/baloo-5.17.0/po/nn/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/nn/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-09-12 19:01+0100\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
 "Language-Team: Norwegian Nynorsk <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/pa/balooctl.po 
new/baloo-5.18.0/po/pa/balooctl.po
--- old/baloo-5.17.0/po/pa/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/pa/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2014-12-23 17:50-0600\n"
 "Last-Translator: A S Alam <[email protected]>\n"
 "Language-Team: Punjabi/Panjabi <[email protected]>\n"
@@ -312,7 +312,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/pl/balooctl.po 
new/baloo-5.18.0/po/pl/balooctl.po
--- old/baloo-5.17.0/po/pl/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/pl/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 06:12+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Zaindeksowano %1 / %2 plików"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Plik: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/pt/balooctl.po 
new/baloo-5.18.0/po/pt/balooctl.po
--- old/baloo-5.17.0/po/pt/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/pt/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 12:01+0100\n"
 "Last-Translator: José Nuno Coelho Pires <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -312,7 +312,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "%1 / %2 ficheiros indexados"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Ficheiro: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/pt_BR/balooctl.po 
new/baloo-5.18.0/po/pt_BR/balooctl.po
--- old/baloo-5.17.0/po/pt_BR/balooctl.po       2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/pt_BR/balooctl.po       2016-01-02 17:20:36.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 08:55-0200\n"
 "Last-Translator: André Marcelo Alvarenga <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -315,7 +315,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indexados %1 / %2 arquivos"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Arquivo: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ro/balooctl.po 
new/baloo-5.18.0/po/ro/balooctl.po
--- old/baloo-5.17.0/po/ro/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ro/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-04-20 14:41+0300\n"
 "Last-Translator: Sergiu Bivol <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -317,7 +317,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr ""
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/ru/balooctl.po 
new/baloo-5.18.0/po/ru/balooctl.po
--- old/baloo-5.17.0/po/ru/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/ru/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-11-14 17:22+0000\n"
 "Last-Translator: Nick Shaforostoff <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -348,7 +348,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Идёт индексирование новых файлов"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Файл: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sk/balooctl.po 
new/baloo-5.18.0/po/sk/balooctl.po
--- old/baloo-5.17.0/po/sk/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/sk/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 18:26+0100\n"
 "Last-Translator: Roman Paholik <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -311,7 +311,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indexovaných %1 / %2 súborov"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Súbor: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sl/balooctl.po 
new/baloo-5.18.0/po/sl/balooctl.po
--- old/baloo-5.17.0/po/sl/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/sl/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-25 18:54+0100\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "%1 od %2 datotek dodanih v kazalo"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Datoteka: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sr/balooctl.po 
new/baloo-5.18.0/po/sr/balooctl.po
--- old/baloo-5.17.0/po/sr/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/sr/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 18:14+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -327,7 +327,7 @@
 msgstr ""
 "Индексирано %1/%2 фајлова|/|Индексирано %1/%2 $[множ ^2 фајла фајла фајлова]"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Фајл: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sr@ijekavian/balooctl.po 
new/baloo-5.18.0/po/sr@ijekavian/balooctl.po
--- old/baloo-5.17.0/po/sr@ijekavian/balooctl.po        2015-12-06 
22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/sr@ijekavian/balooctl.po        2016-01-02 
17:20:36.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 18:14+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -327,7 +327,7 @@
 msgstr ""
 "Индексирано %1/%2 фајлова|/|Индексирано %1/%2 $[множ ^2 фајла фајла фајлова]"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Фајл: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sr@ijekavianlatin/balooctl.po 
new/baloo-5.18.0/po/sr@ijekavianlatin/balooctl.po
--- old/baloo-5.17.0/po/sr@ijekavianlatin/balooctl.po   2015-12-06 
22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/sr@ijekavianlatin/balooctl.po   2016-01-02 
17:20:36.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 18:14+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -327,7 +327,7 @@
 msgstr ""
 "Indeksirano %1/%2 fajlova|/|Indeksirano %1/%2 $[množ ^2 fajla fajla fajlova]"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Fajl: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sr@latin/balooctl.po 
new/baloo-5.18.0/po/sr@latin/balooctl.po
--- old/baloo-5.17.0/po/sr@latin/balooctl.po    2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/sr@latin/balooctl.po    2016-01-02 17:20:36.000000000 
+0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 18:14+0200\n"
 "Last-Translator: Chusslove Illich <[email protected]>\n"
 "Language-Team: Serbian <[email protected]>\n"
@@ -327,7 +327,7 @@
 msgstr ""
 "Indeksirano %1/%2 fajlova|/|Indeksirano %1/%2 $[množ ^2 fajla fajla fajlova]"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Fajl: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/sv/balooctl.po 
new/baloo-5.18.0/po/sv/balooctl.po
--- old/baloo-5.17.0/po/sv/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/sv/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-24 19:01+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -314,7 +314,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Indexerar %1/%2 filer"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Fil: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/uk/balooctl.po 
new/baloo-5.18.0/po/uk/balooctl.po
--- old/baloo-5.17.0/po/uk/balooctl.po  2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/po/uk/balooctl.po  2016-01-02 17:20:36.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: balooctl\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-10-19 17:26+0300\n"
 "Last-Translator: Yuri Chornoivan <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -319,7 +319,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "Проіндексовано %1 / %2 файлів"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr "Файл: %1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/zh_CN/balooctl.po 
new/baloo-5.18.0/po/zh_CN/balooctl.po
--- old/baloo-5.17.0/po/zh_CN/balooctl.po       2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/zh_CN/balooctl.po       2016-01-02 17:20:36.000000000 
+0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-09-08 15:35UTC-0800\n"
 "Last-Translator: Xuetian Weng <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
@@ -322,7 +322,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "索引指定文件"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/zh_CN/baloosearch.po 
new/baloo-5.18.0/po/zh_CN/baloosearch.po
--- old/baloo-5.17.0/po/zh_CN/baloosearch.po    2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/zh_CN/baloosearch.po    2016-01-02 17:20:36.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2015-09-19 08:51+0000\n"
-"PO-Revision-Date: 2015-11-04 09:40-0800\n"
+"PO-Revision-Date: 2015-12-16 11:38-0800\n"
 "Last-Translator: Weng Xuetian <[email protected]>\n"
 "Language-Team: Chinese <[email protected]>\n"
 "Language: zh_CN\n"
@@ -51,8 +51,6 @@
 msgstr "限制"
 
 #: main.cpp:53
-#, fuzzy
-#| msgid "Offset from which start the search"
 msgid "Offset from which to start the search"
 msgstr "开始搜索的偏移量"
 
@@ -81,7 +79,5 @@
 msgstr "查询"
 
 #: main.cpp:61
-#, fuzzy
-#| msgid "The words to search for"
 msgid "List of words to query for"
-msgstr "要搜索的单词"
+msgstr "要搜索的单词列表"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/po/zh_TW/balooctl.po 
new/baloo-5.18.0/po/zh_TW/balooctl.po
--- old/baloo-5.17.0/po/zh_TW/balooctl.po       2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/po/zh_TW/balooctl.po       2016-01-02 17:20:36.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2015-10-19 08:03+0000\n"
+"POT-Creation-Date: 2015-12-15 08:19+0000\n"
 "PO-Revision-Date: 2015-06-09 16:46+0800\n"
 "Last-Translator: Franklin\n"
 "Language-Team: Chinese Traditional <[email protected]>\n"
@@ -323,7 +323,7 @@
 msgid "Indexed %1 / %2 files"
 msgstr "建立指定檔案索引"
 
-#: statuscommand.cpp:110
+#: statuscommand.cpp:108
 #, kde-format
 msgid "File: %1"
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/engine/documenturldb.cpp 
new/baloo-5.18.0/src/engine/documenturldb.cpp
--- old/baloo-5.17.0/src/engine/documenturldb.cpp       2015-12-06 
22:14:09.000000000 +0100
+++ new/baloo-5.18.0/src/engine/documenturldb.cpp       2016-01-02 
17:20:36.000000000 +0100
@@ -146,17 +146,17 @@
         return QByteArray();
     }
 
-    QList<QByteArray> list = {path.name};
+    QByteArray ret = path.name;
     quint64 id = path.parentId;
     while (id) {
         auto p = idFilenameDb.get(id);
         Q_ASSERT(!p.name.isEmpty());
 
-        list.prepend(p.name);
+        ret = p.name + '/' + ret;
         id = p.parentId;
     }
 
-    return '/' + list.join('/');
+    return '/' + ret;
 }
 
 QVector<quint64> DocumentUrlDB::getChildren(quint64 docId) const
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/engine/documenturldb.h 
new/baloo-5.18.0/src/engine/documenturldb.h
--- old/baloo-5.17.0/src/engine/documenturldb.h 2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/src/engine/documenturldb.h 2016-01-02 17:20:36.000000000 
+0100
@@ -96,7 +96,14 @@
     idFilenameDb.del(docId);
 
     QVector<quint64> subDocs = idTreeDb.get(path.parentId);
+#if QT_VERSION < QT_VERSION_CHECK(5, 4, 0)
+    const int docIdIndex = subDocs.indexOf(docId);
+    if (docIdIndex >= 0) {
+        subDocs.remove(docIdIndex);
+    }
+#else
     subDocs.removeOne(docId);
+#endif
 
     if (!subDocs.isEmpty()) {
         idTreeDb.put(path.parentId, subDocs);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/engine/mtimedb.cpp 
new/baloo-5.18.0/src/engine/mtimedb.cpp
--- old/baloo-5.17.0/src/engine/mtimedb.cpp     2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/src/engine/mtimedb.cpp     2016-01-02 17:20:36.000000000 
+0100
@@ -20,6 +20,7 @@
 
 #include "mtimedb.h"
 #include "vectorpostingiterator.h"
+#include <algorithm>
 
 using namespace Baloo;
 
@@ -73,7 +74,7 @@
     Q_ASSERT_X(rc == 0, "MTimeDB::put", mdb_strerror(rc));
 }
 
-QVector<quint64> MTimeDB::get(quint64 mtime)
+QVector<quint64> MTimeDB::get(quint32 mtime)
 {
     Q_ASSERT(mtime > 0);
 
@@ -87,7 +88,7 @@
     mdb_cursor_open(m_txn, m_dbi, &cursor);
 
     MDB_val val;
-    int rc = mdb_cursor_get(cursor, &key, &val, MDB_NEXT);
+    int rc = mdb_cursor_get(cursor, &key, &val, MDB_SET_RANGE);
     if (rc == MDB_NOTFOUND) {
         mdb_cursor_close(cursor);
         return values;
@@ -107,6 +108,8 @@
     }
 
     mdb_cursor_close(cursor);
+    std::sort(values.begin(), values.end());
+    values.erase(std::unique(values.begin(), values.end()), values.end());
     return values;
 }
 
@@ -183,6 +186,8 @@
     }
 
     mdb_cursor_close(cursor);
+    std::sort(results.begin(), results.end());
+    results.erase(std::unique(results.begin(), results.end()), results.end());
     return new VectorPostingIterator(results);
 }
 
@@ -224,6 +229,8 @@
     }
 
     mdb_cursor_close(cursor);
+    std::sort(results.begin(), results.end());
+    results.erase(std::unique(results.begin(), results.end()), results.end());
     return new VectorPostingIterator(results);
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/engine/mtimedb.h 
new/baloo-5.18.0/src/engine/mtimedb.h
--- old/baloo-5.17.0/src/engine/mtimedb.h       2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/src/engine/mtimedb.h       2016-01-02 17:20:36.000000000 
+0100
@@ -44,7 +44,7 @@
     static MDB_dbi open(MDB_txn* txn);
 
     void put(quint32 mtime, quint64 docId);
-    QVector<quint64> get(quint64 mtime);
+    QVector<quint64> get(quint32 mtime);
 
     void del(quint32 mtime, quint64 docId);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/engine/postingdb.cpp 
new/baloo-5.18.0/src/engine/postingdb.cpp
--- old/baloo-5.17.0/src/engine/postingdb.cpp   2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/src/engine/postingdb.cpp   2016-01-02 17:20:36.000000000 
+0100
@@ -226,7 +226,9 @@
         }
         rc = mdb_cursor_get(cursor, &key, &val, MDB_NEXT);
     }
-    Q_ASSERT_X(rc == 0, "PostingDB::regexpIter", mdb_strerror(rc));
+    if (rc != MDB_NOTFOUND) {
+        Q_ASSERT_X(rc == 0, "PostingDB::regexpIter", mdb_strerror(rc));
+    }
 
     mdb_cursor_close(cursor);
     if (termIterators.isEmpty()) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/baloo-5.17.0/src/kioslaves/kded/baloosearchmodule.desktop 
new/baloo-5.18.0/src/kioslaves/kded/baloosearchmodule.desktop
--- old/baloo-5.17.0/src/kioslaves/kded/baloosearchmodule.desktop       
2015-12-06 22:14:09.000000000 +0100
+++ new/baloo-5.18.0/src/kioslaves/kded/baloosearchmodule.desktop       
2016-01-02 17:20:36.000000000 +0100
@@ -10,6 +10,7 @@
 
 Name=Search Folder Updater
 Name[ar]=محدّث مجلّدات البحث
+Name[ast]=Anovador de carpetes de gueta
 Name[ca]=Actualitzador de les carpetes de cerca
 Name[ca@valencia]=Actualitzador de les carpetes de cerca
 Name[cs]=Nástroj pro aktualizaci složek pro vyhledávání
@@ -47,6 +48,7 @@
 Name[zh_TW]=搜尋資料夾更新器
 Comment=Allows automatic updates of Search Folders
 Comment[ar]=يسمح بالتّحديثات الآليّة لمجلّدات البحث
+Comment[ast]=Permite anovamientos automáticos de les carpetes de gueta
 Comment[ca]=Permet l'actualització automàtica de les carpetes de cerca
 Comment[ca@valencia]=Permet l'actualització automàtica de les carpetes de cerca
 Comment[cs]=Umožňuje automatickou aktualizaci prohledávaných složek
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/lib/searchstore.cpp 
new/baloo-5.18.0/src/lib/searchstore.cpp
--- old/baloo-5.17.0/src/lib/searchstore.cpp    2015-12-06 22:14:09.000000000 
+0100
+++ new/baloo-5.18.0/src/lib/searchstore.cpp    2016-01-02 17:20:36.000000000 
+0100
@@ -174,6 +174,9 @@
         }
     }
 
+    if (term.value().isNull()) {
+        return 0;
+    }
     Q_ASSERT(term.value().isValid());
     Q_ASSERT(term.comparator() != Term::Auto);
     Q_ASSERT(term.comparator() == Term::Contains ? term.value().type() == 
QVariant::String : true);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/baloo-5.17.0/src/tools/balooctl/statuscommand.cpp 
new/baloo-5.18.0/src/tools/balooctl/statuscommand.cpp
--- old/baloo-5.17.0/src/tools/balooctl/statuscommand.cpp       2015-12-06 
22:14:09.000000000 +0100
+++ new/baloo-5.18.0/src/tools/balooctl/statuscommand.cpp       2016-01-02 
17:20:36.000000000 +0100
@@ -101,8 +101,6 @@
             out << "Index does not exist yet\n";
         }
     } else {
-        IndexerConfig config;
-
         for (const QString& arg : args) {
             QString filePath = QFileInfo(arg).absoluteFilePath();
             quint64 id = filePathToId(QFile::encodeName(filePath));
@@ -112,7 +110,7 @@
             out << "Basic Indexing: ";
             if (tr.hasDocument(id)) {
                 out << "Done\n";
-            } else if (config.shouldBeIndexed(filePath)) {
+            } else if (cfg.shouldBeIndexed(filePath)) {
                 out << "Scheduled\n";
                 return 0;
             } else {
@@ -121,15 +119,17 @@
                 return 0;
             }
 
+            if (QFileInfo(arg).isDir()) {
+                continue;
+            }
+
             out << "Content Indexing: ";
             if (tr.inPhaseOne(id)) {
                 out << "Scheduled\n";
-            } else if (!tr.documentData(id).isEmpty()) {
-                out << "Done\n";
             } else if (tr.hasFailed(id)) {
                 out << "Failed\n";
             } else {
-                out << "Disabled\n";
+                out << "Done\n";
             }
         }
     }


Reply via email to