Hello community,

here is the log from the commit of package milou5 for openSUSE:Factory checked 
in at 2020-02-10 21:51:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/milou5 (Old)
 and      /work/SRC/openSUSE:Factory/.milou5.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "milou5"

Mon Feb 10 21:51:38 2020 rev:93 rq:772249 version:5.18.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/milou5/milou5.changes    2020-01-11 
14:39:56.097182289 +0100
+++ /work/SRC/openSUSE:Factory/.milou5.new.26092/milou5.changes 2020-02-10 
21:51:49.966138235 +0100
@@ -1,0 +2,32 @@
+Thu Feb  6 15:10:05 UTC 2020 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.18.0
+  * New bugfix release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.18.0.php
+- No code changes since 5.17.90
+
+-------------------------------------------------------------------
+Thu Jan 23 11:20:31 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Replace %make_jobs with %cmake_build
+
+-------------------------------------------------------------------
+Thu Jan 16 14:04:19 UTC 2020 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 5.17.90
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/plasma-5.17.90.php
+- Changes since 5.17.5:
+  * KF5_MIN_VERSION for plasma 5.18 is KF5 5.66.0
+  * Use qmlRegisterAnonymousType
+  * [ResultDelegate] Fix bad text legiblity with certain 3rd party themes
+  * Fix build with Qt 5.14
+  * Add KDEClangFormat cmake support
+  * [ResultDelegate] Use theme.disabledColor
+  * [ResultsView] Expose limit
+  * Remove pointless textColor assignment
+  * Make it compile without deprecated method
+
+-------------------------------------------------------------------

Old:
----
  milou-5.17.5.tar.xz
  milou-5.17.5.tar.xz.sig

New:
----
  milou-5.18.0.tar.xz
  milou-5.18.0.tar.xz.sig

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

Other differences:
------------------
++++++ milou5.spec ++++++
--- /var/tmp/diff_new_pack.rkxdsE/_old  2020-02-10 21:51:50.694138638 +0100
+++ /var/tmp/diff_new_pack.rkxdsE/_new  2020-02-10 21:51:50.698138641 +0100
@@ -18,15 +18,15 @@
 
 %bcond_without lang
 Name:           milou5
-Version:        5.17.5
+Version:        5.18.0
 Release:        0
 Summary:        Dedicated search application built on top of Baloo
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
 Group:          System/GUI/KDE
 Url:            https://projects.kde.org/milou
-Source:         
https://download.kde.org/stable/plasma/%{version}/milou-%{version}.tar.xz
+Source:         milou-%{version}.tar.xz
 %if %{with lang}
-Source1:        
https://download.kde.org/stable/plasma/%{version}/milou-%{version}.tar.xz.sig
+Source1:        milou-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 BuildRequires:  extra-cmake-modules >= 1.2.0
@@ -56,7 +56,7 @@
 
 %build
   %cmake_kf5 -d build -- -DCMAKE_INSTALL_LOCALEDIR=%{_kf5_localedir}
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build

++++++ milou-5.17.5.tar.xz -> milou-5.18.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/CMakeLists.txt 
new/milou-5.18.0/CMakeLists.txt
--- old/milou-5.17.5/CMakeLists.txt     2020-01-07 16:36:58.000000000 +0100
+++ new/milou-5.18.0/CMakeLists.txt     2020-02-06 14:18:26.000000000 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(Milou)
-set(PROJECT_VERSION "5.17.5")
+set(PROJECT_VERSION "5.18.0")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.12.0")
-set(KF5_MIN_VERSION "5.62.0")
+set(KF5_MIN_VERSION "5.66.0")
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -19,7 +19,10 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(ECMAddTests)
 include(GenerateExportHeader)
-
+include(KDEClangFormat)
+if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
+   add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+endif()
 # find_package(KdepimLibs)
 # set_package_properties(KdepimLibs PROPERTIES DESCRIPTION "KDE PIM Libraries"
 #                        URL "http://www.kde.org";
@@ -28,6 +31,10 @@
 add_subdirectory(lib)
 add_subdirectory(plasmoid)
 
+# add clang-format target for all our real source files
+file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
+kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
+
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 find_package(KF5I18n CONFIG REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/draghelper.cpp 
new/milou-5.18.0/lib/draghelper.cpp
--- old/milou-5.17.5/lib/draghelper.cpp 2020-01-07 16:36:07.000000000 +0100
+++ new/milou-5.18.0/lib/draghelper.cpp 2020-02-06 14:17:37.000000000 +0100
@@ -29,7 +29,6 @@
 DragHelper::DragHelper(QObject* parent) : QObject(parent)
 , m_dragIconSize(32)
 {
-    qmlRegisterType<QMimeData>();
 }
 
 DragHelper::~DragHelper()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/previewplugin.cpp 
new/milou-5.18.0/lib/previewplugin.cpp
--- old/milou-5.17.5/lib/previewplugin.cpp      2020-01-07 16:36:07.000000000 
+0100
+++ new/milou-5.18.0/lib/previewplugin.cpp      2020-02-06 14:17:37.000000000 
+0100
@@ -24,6 +24,7 @@
 
 #include <QTextDocument>
 #include <QTextCursor>
+#include <QMimeData>
 
 using namespace Milou;
 
@@ -31,6 +32,11 @@
     : QObject(parent)
     , m_context(nullptr)
 {
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
+    qmlRegisterAnonymousType<QMimeData>("org.kde.milou", 1);
+#else
+    qmlRegisterType<QMimeData>();
+#endif
 }
 
 PreviewPlugin::~PreviewPlugin()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/previews/milouimagepreview.desktop 
new/milou-5.18.0/lib/previews/milouimagepreview.desktop
--- old/milou-5.17.5/lib/previews/milouimagepreview.desktop     2020-01-07 
16:36:07.000000000 +0100
+++ new/milou-5.18.0/lib/previews/milouimagepreview.desktop     2020-02-06 
14:17:37.000000000 +0100
@@ -21,7 +21,7 @@
 Name[id]=Milou Citra Preview Plugin
 Name[it]=Estensione di Milou per le anteprime delle immagini
 Name[ko]=Milou 그림 미리 보기 플러그인
-Name[lt]=Milou paveiksliukų peržiūros priedas
+Name[lt]=Milou paveikslų peržiūros priedas
 Name[nb]=Milou-tillegg for bilde-forhåndsvisning
 Name[nds]=Milou-Bildvöransichtmoduul
 Name[nl]=Milou voorbeeld-plug-in voor afbeeldingen
@@ -61,7 +61,7 @@
 Comment[id]=Pratinjau yang dihasilkan terhadap file-file citra
 Comment[it]=Anteprima generata per immagini
 Comment[ko]=그림 파일에서 생성된 미리 보기
-Comment[lt]=Sugeneruota paveiksliukų failų peržiūra
+Comment[lt]=Sugeneruota paveikslų failų peržiūra
 Comment[nb]=Forhåndsvisning laget for bildefiler
 Comment[nds]=För Bilddateien opstellt Vöransicht
 Comment[nl]=Gegenereerd voorbeeld voor afbeeldingsbestanden
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/qml/ResultDelegate.qml 
new/milou-5.18.0/lib/qml/ResultDelegate.qml
--- old/milou-5.17.5/lib/qml/ResultDelegate.qml 2020-01-07 16:36:07.000000000 
+0100
+++ new/milou-5.18.0/lib/qml/ResultDelegate.qml 2020-02-06 14:17:37.000000000 
+0100
@@ -147,8 +147,7 @@
     PlasmaComponents.Label {
         id: typeText
         text: resultDelegate.typeText
-        color: theme.textColor
-        opacity: 0.5
+        color: isCurrent ? Qt.tint(theme.disabledTextColor, 
Qt.rgba(theme.textColor.r, theme.textColor.g, theme.textColor.b, 0.4)) : 
theme.disabledTextColor
 
         horizontalAlignment: Text.AlignRight
         verticalAlignment: Text.AlignVCenter
@@ -221,10 +220,11 @@
                     // ResultsModel just has it as a boolean as you would 
expect from the name of the property
                     text: model.isDuplicate === true || model.isDuplicate > 1 
|| resultDelegate.isCurrent ? String(model.subtext || "") : ""
 
-                    color: theme.textColor
                     // HACK If displayLabel is too long it will shift this 
label outside boundaries
                     // but still render the text leading to it overlapping the 
action buttons looking horrible
-                    opacity: width > 0 ? 0.3 : 0
+                    opacity: width > 0 ? 1 : 0
+
+                    color: isCurrent ? Qt.tint(theme.disabledTextColor, 
Qt.rgba(theme.textColor.r, theme.textColor.g, theme.textColor.b, 0.4)) : 
theme.disabledTextColor
 
                     height: undefined
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/qml/ResultsListViewDelegate.qml 
new/milou-5.18.0/lib/qml/ResultsListViewDelegate.qml
--- old/milou-5.17.5/lib/qml/ResultsListViewDelegate.qml        2020-01-07 
16:36:07.000000000 +0100
+++ new/milou-5.18.0/lib/qml/ResultsListViewDelegate.qml        2020-02-06 
14:17:37.000000000 +0100
@@ -79,7 +79,6 @@
                     id: subtextLabel
                     text: String(model.subtext)
 
-                    color: theme.textColor
                     opacity: 0.3
 
                     height: typePixmap.height
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/qml/ResultsView.qml 
new/milou-5.18.0/lib/qml/ResultsView.qml
--- old/milou-5.17.5/lib/qml/ResultsView.qml    2020-01-07 16:36:07.000000000 
+0100
+++ new/milou-5.18.0/lib/qml/ResultsView.qml    2020-02-06 14:17:37.000000000 
+0100
@@ -34,6 +34,7 @@
     property alias runnerName: resultModel.runnerName
     property alias runnerIcon: resultModel.runnerIcon
     property alias querying: resultModel.querying
+    property alias limit: resultModel.limit
     property bool reversed
     signal activated
     signal updateQueryString(string text, int cursorPosition)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/lib/sourcesmodel.cpp 
new/milou-5.18.0/lib/sourcesmodel.cpp
--- old/milou-5.17.5/lib/sourcesmodel.cpp       2020-01-07 16:36:07.000000000 
+0100
+++ new/milou-5.18.0/lib/sourcesmodel.cpp       2020-02-06 14:17:37.000000000 
+0100
@@ -261,7 +261,7 @@
     m_duplicates.clear();
 
     QList<Plasma::QueryMatch> list(l);
-    qSort(list);
+    std::sort(list.begin(), list.end());
 
     for (auto it = list.crbegin(), end = list.crend(); it != end; ++it) {
         slotMatchAdded(*it);
@@ -308,7 +308,7 @@
             return lHigher;
         }
     };
-    qStableSort(m_types.begin(), m_types.end(), sortFunc);
+    std::stable_sort(m_types.begin(), m_types.end(), sortFunc);
 
     m_modelPopulated = true;
     endResetModel();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ar/milou.po 
new/milou-5.18.0/po/ar/milou.po
--- old/milou-5.17.5/po/ar/milou.po     2020-01-07 16:36:20.000000000 +0100
+++ new/milou-5.18.0/po/ar/milou.po     2020-02-06 14:17:49.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2014-07-04 09:02+0300\n"
 "Last-Translator: Safa Alfulaij <safa1996alful...@gmail.com>\n"
 "Language-Team: Arabic <d...@arabeyes.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ast/milou.po 
new/milou-5.18.0/po/ast/milou.po
--- old/milou-5.17.5/po/ast/milou.po    1970-01-01 01:00:00.000000000 +0100
+++ new/milou-5.18.0/po/ast/milou.po    2020-02-06 14:17:49.000000000 +0100
@@ -0,0 +1,91 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the milou package.
+#
+# enolp <en...@softastur.org>, 2019.
+msgid ""
+msgstr ""
+"Project-Id-Version: milou\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
+"PO-Revision-Date: 2019-12-10 13:44+0100\n"
+"Last-Translator: enolp <en...@softastur.org>\n"
+"Language-Team: Asturian\n"
+"Language: ast\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 19.08.3\n"
+
+#: previews/audioplugin.cpp:59
+#, kde-format
+msgid "Artist:"
+msgstr "Artista:"
+
+#: previews/audioplugin.cpp:59
+#, kde-format
+msgid "Album:"
+msgstr "Álbum:"
+
+#: previews/audioplugin.cpp:59
+#, kde-format
+msgid "Duration:"
+msgstr "Duración:"
+
+#: previews/emailplugin.cpp:99
+#, kde-format
+msgid "From:"
+msgstr "De:"
+
+#: previews/emailplugin.cpp:104
+#, kde-format
+msgid "To:"
+msgstr "Pa:"
+
+#: previews/emailplugin.cpp:109
+#, kde-format
+msgid "Date:"
+msgstr "Data:"
+
+#: previews/emailplugin.cpp:114
+#, kde-format
+msgid "Subject:"
+msgstr "Asuntu:"
+
+#: previews/emailplugin.cpp:133
+#, kde-format
+msgid ""
+"\n"
+"Attachments:\n"
+"\n"
+msgstr ""
+"\n"
+"Axuntos:\n"
+"\n"
+
+#: previews/fileplugin.cpp:54
+#, kde-format
+msgid "Modified:"
+msgstr "Data de modificación:"
+
+#: previews/fileplugin.cpp:54
+#, kde-format
+msgid "Size:"
+msgstr "Tamañu:"
+
+#: qml/ResultDelegate.qml:56
+#, kde-format
+msgid "%1, in category %2"
+msgstr "%1, na estaya %2"
+
+#: qml/ResultDelegate.qml:58
+#, kde-format
+msgid "in category %1"
+msgstr "na estaya %1"
+
+#: qml/ResultDelegate.qml:259
+#, kde-format
+msgctxt ""
+"placeholder is action e.g. run in terminal, in parenthesis is shortcut"
+msgid "%1 (Shift+Return)"
+msgstr "%1 (Mayús+Intro)"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/bs/milou.po 
new/milou-5.18.0/po/bs/milou.po
--- old/milou-5.17.5/po/bs/milou.po     2020-01-07 16:36:24.000000000 +0100
+++ new/milou-5.18.0/po/bs/milou.po     2020-02-06 14:17:53.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: $2\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2015-02-15 12:59+0000\n"
 "Last-Translator: Samir Ribić <Unknown>\n"
 "Language-Team: none\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ca/milou.po 
new/milou-5.18.0/po/ca/milou.po
--- old/milou-5.17.5/po/ca/milou.po     2020-01-07 16:36:24.000000000 +0100
+++ new/milou-5.18.0/po/ca/milou.po     2020-02-06 14:17:53.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-14 22:29+0100\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ca@valencia/milou.po 
new/milou-5.18.0/po/ca@valencia/milou.po
--- old/milou-5.17.5/po/ca@valencia/milou.po    2020-01-07 16:36:24.000000000 
+0100
+++ new/milou-5.18.0/po/ca@valencia/milou.po    2020-02-06 14:17:53.000000000 
+0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2019-07-12 13:29+0200\n"
 "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n"
 "Language-Team: Catalan <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/cs/milou.po 
new/milou-5.18.0/po/cs/milou.po
--- old/milou-5.17.5/po/cs/milou.po     2020-01-07 16:36:24.000000000 +0100
+++ new/milou-5.18.0/po/cs/milou.po     2020-02-06 14:17:53.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-10-06 13:41+0100\n"
 "Last-Translator: Vít Pelčák <v...@pelcak.org>\n"
 "Language-Team: Czech <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/da/milou.po 
new/milou-5.18.0/po/da/milou.po
--- old/milou-5.17.5/po/da/milou.po     2020-01-07 16:36:26.000000000 +0100
+++ new/milou-5.18.0/po/da/milou.po     2020-02-06 14:17:55.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-11-27 19:33+0100\n"
 "Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
 "Language-Team: Danish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/de/milou.po 
new/milou-5.18.0/po/de/milou.po
--- old/milou-5.17.5/po/de/milou.po     2020-01-07 16:36:26.000000000 +0100
+++ new/milou-5.18.0/po/de/milou.po     2020-02-06 14:17:55.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-11-27 15:25+0100\n"
 "Last-Translator: Burkhard Lück <lu...@hube-lueck.de>\n"
 "Language-Team: German <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/el/milou.po 
new/milou-5.18.0/po/el/milou.po
--- old/milou-5.17.5/po/el/milou.po     2020-01-07 16:36:26.000000000 +0100
+++ new/milou-5.18.0/po/el/milou.po     2020-02-06 14:17:55.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-01-24 16:04+0200\n"
 "Last-Translator: Dimitris Kardarakos <dimk...@gmail.com>\n"
 "Language-Team: Greek <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/en_GB/milou.po 
new/milou-5.18.0/po/en_GB/milou.po
--- old/milou-5.17.5/po/en_GB/milou.po  2020-01-07 16:36:28.000000000 +0100
+++ new/milou-5.18.0/po/en_GB/milou.po  2020-02-06 14:17:56.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-11-26 15:40+0000\n"
 "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n"
 "Language-Team: British English <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/es/milou.po 
new/milou-5.18.0/po/es/milou.po
--- old/milou-5.17.5/po/es/milou.po     2020-01-07 16:36:28.000000000 +0100
+++ new/milou-5.18.0/po/es/milou.po     2020-02-06 14:17:57.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-15 23:50+0100\n"
 "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n"
 "Language-Team: Spanish <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/et/milou.po 
new/milou-5.18.0/po/et/milou.po
--- old/milou-5.17.5/po/et/milou.po     2020-01-07 16:36:28.000000000 +0100
+++ new/milou-5.18.0/po/et/milou.po     2020-02-06 14:17:57.000000000 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Marek Laane <qiila...@gmail.com>, 2016.
+# Marek Laane <qiila...@gmail.com>, 2016, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
-"PO-Revision-Date: 2016-01-10 23:30+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
+"PO-Revision-Date: 2019-10-30 23:26+0200\n"
 "Last-Translator: Marek Laane <qiila...@gmail.com>\n"
-"Language-Team: Estonian <kde-i18n-...@kde.org>\n"
+"Language-Team: Estonian <kde...@lists.linux.ee>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #: previews/audioplugin.cpp:59
 #, kde-format
@@ -76,16 +76,16 @@
 #: qml/ResultDelegate.qml:56
 #, kde-format
 msgid "%1, in category %2"
-msgstr ""
+msgstr "%1, kategoorias %2"
 
 #: qml/ResultDelegate.qml:58
 #, kde-format
 msgid "in category %1"
-msgstr ""
+msgstr "kategoorias %1"
 
 #: qml/ResultDelegate.qml:259
 #, kde-format
 msgctxt ""
 "placeholder is action e.g. run in terminal, in parenthesis is shortcut"
 msgid "%1 (Shift+Return)"
-msgstr ""
\ No newline at end of file
+msgstr "%1 (Shift+Return)"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/et/plasma_applet_org.kde.milou.po 
new/milou-5.18.0/po/et/plasma_applet_org.kde.milou.po
--- old/milou-5.17.5/po/et/plasma_applet_org.kde.milou.po       2020-01-07 
16:36:28.000000000 +0100
+++ new/milou-5.18.0/po/et/plasma_applet_org.kde.milou.po       2020-02-06 
14:17:57.000000000 +0100
@@ -1,21 +1,21 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Marek Laane <qiila...@gmail.com>, 2016.
+# Marek Laane <qiila...@gmail.com>, 2016, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2016-01-11 11:20+0200\n"
+"PO-Revision-Date: 2019-10-30 23:47+0200\n"
 "Last-Translator: Marek Laane <qiila...@gmail.com>\n"
-"Language-Team: Estonian <kde-i18n-...@kde.org>\n"
+"Language-Team: Estonian <kde...@lists.linux.ee>\n"
 "Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 19.08.1\n"
 
 #: applet.cpp:69
 #, kde-format
@@ -34,7 +34,6 @@
 "Otsingutulemuste näitamise järjekorda saab muuta kategooriaid lohistades"
 
 #: package/contents/ui/SearchField.qml:43
-#, fuzzy, kde-format
-#| msgid "Search"
+#, kde-format
 msgid "Search..."
-msgstr "Otsing"
\ No newline at end of file
+msgstr "Otsi ..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/eu/milou.po 
new/milou-5.18.0/po/eu/milou.po
--- old/milou-5.17.5/po/eu/milou.po     2020-01-07 16:36:28.000000000 +0100
+++ new/milou-5.18.0/po/eu/milou.po     2020-02-06 14:17:57.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2018-03-18 11:55+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <xa...@euskalnet.net>\n"
 "Language-Team: Basque <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/fi/milou.po 
new/milou-5.18.0/po/fi/milou.po
--- old/milou-5.17.5/po/fi/milou.po     2020-01-07 16:36:30.000000000 +0100
+++ new/milou-5.18.0/po/fi/milou.po     2020-02-06 14:17:59.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-12-08 16:21+0200\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/fr/milou.po 
new/milou-5.18.0/po/fr/milou.po
--- old/milou-5.17.5/po/fr/milou.po     2020-01-07 16:36:30.000000000 +0100
+++ new/milou-5.18.0/po/fr/milou.po     2020-02-06 14:17:59.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-21 09:23+0100\n"
 "Last-Translator: Vincent Pinon <vpi...@kde.org>\n"
 "Language-Team: French <kde-francoph...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/gl/milou.po 
new/milou-5.18.0/po/gl/milou.po
--- old/milou-5.17.5/po/gl/milou.po     2020-01-07 16:36:32.000000000 +0100
+++ new/milou-5.18.0/po/gl/milou.po     2020-02-06 14:18:01.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2018-01-18 22:08+0100\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Galician <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/he/milou.po 
new/milou-5.18.0/po/he/milou.po
--- old/milou-5.17.5/po/he/milou.po     2020-01-07 16:36:32.000000000 +0100
+++ new/milou-5.18.0/po/he/milou.po     2020-02-06 14:18:01.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-05-23 08:51-0400\n"
 "Last-Translator: Elkana Bardugo <ttv...@gmail.com>\n"
 "Language-Team: Hebrew <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/hu/milou.po 
new/milou-5.18.0/po/hu/milou.po
--- old/milou-5.17.5/po/hu/milou.po     2020-01-07 16:36:34.000000000 +0100
+++ new/milou-5.18.0/po/hu/milou.po     2020-02-06 14:18:03.000000000 +0100
@@ -3,20 +3,21 @@
 #
 # Balázs Úr <urbal...@gmail.com>, 2014.
 # Kiszel Kristóf <kiszel.kris...@gmail.com>, 2017.
+# Kristóf Kiszel <ulys...@kubuntu.org>, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
-"PO-Revision-Date: 2017-02-12 13:25+0100\n"
-"Last-Translator: Kiszel Kristóf <kiszel.kris...@gmail.com>\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
+"PO-Revision-Date: 2019-11-16 21:17+0100\n"
+"Last-Translator: Kristóf Kiszel <ulys...@kubuntu.org>\n"
 "Language-Team: Hungarian <kde-l10n...@kde.org>\n"
 "Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 2.0\n"
+"X-Generator: Lokalize 20.03.70\n"
 
 #: previews/audioplugin.cpp:59
 #, kde-format
@@ -77,12 +78,12 @@
 #: qml/ResultDelegate.qml:56
 #, kde-format
 msgid "%1, in category %2"
-msgstr ""
+msgstr "%1, a(z) %2 kategóriában"
 
 #: qml/ResultDelegate.qml:58
 #, kde-format
 msgid "in category %1"
-msgstr ""
+msgstr "a(z) %1 kategóriában"
 
 #: qml/ResultDelegate.qml:259
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/hu/plasma_applet_org.kde.milou.po 
new/milou-5.18.0/po/hu/plasma_applet_org.kde.milou.po
--- old/milou-5.17.5/po/hu/plasma_applet_org.kde.milou.po       2020-01-07 
16:36:34.000000000 +0100
+++ new/milou-5.18.0/po/hu/plasma_applet_org.kde.milou.po       2020-02-06 
14:18:03.000000000 +0100
@@ -2,20 +2,21 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Balázs Úr <urbal...@gmail.com>, 2014.
+# Kristóf Kiszel <ulys...@kubuntu.org>, 2019.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2014-02-19 23:05+0100\n"
-"Last-Translator: Balázs Úr <urbal...@gmail.com>\n"
+"PO-Revision-Date: 2019-11-12 19:25+0100\n"
+"Last-Translator: Kristóf Kiszel <ulys...@kubuntu.org>\n"
 "Language-Team: Hungarian <kde-l10n...@kde.org>\n"
 "Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 20.03.70\n"
 
 #: applet.cpp:69
 #, kde-format
@@ -34,7 +35,6 @@
 "A kategóriák húzásával megváltoztatható az eredmények megjelenési sorrendje"
 
 #: package/contents/ui/SearchField.qml:43
-#, fuzzy, kde-format
-#| msgid "Search"
+#, kde-format
 msgid "Search..."
-msgstr "Keresés"
\ No newline at end of file
+msgstr "Keresés…"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ia/milou.po 
new/milou-5.18.0/po/ia/milou.po
--- old/milou-5.17.5/po/ia/milou.po     2020-01-07 16:36:35.000000000 +0100
+++ new/milou-5.18.0/po/ia/milou.po     2020-02-06 14:18:03.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2014-07-25 14:46+0200\n"
 "Last-Translator: Giovanni Sora <g.s...@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ia/plasma_applet_org.kde.milou.po 
new/milou-5.18.0/po/ia/plasma_applet_org.kde.milou.po
--- old/milou-5.17.5/po/ia/plasma_applet_org.kde.milou.po       2020-01-07 
16:36:35.000000000 +0100
+++ new/milou-5.18.0/po/ia/plasma_applet_org.kde.milou.po       2020-02-06 
14:18:03.000000000 +0100
@@ -1,13 +1,13 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 #
-# Giovanni Sora <g.s...@tiscali.it>, 2014.
+# Giovanni Sora <g.s...@tiscali.it>, 2014, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2014-07-25 14:50+0200\n"
+"PO-Revision-Date: 2020-01-12 22:20+0100\n"
 "Last-Translator: Giovanni Sora <g.s...@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n-...@kde.org>\n"
 "Language: ia\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 
 #: applet.cpp:69
 #, kde-format
@@ -25,15 +25,14 @@
 #: configwidget.cpp:61
 #, kde-format
 msgid "Only the selected components are shown in the search results"
-msgstr ""
+msgstr "Solmente le componentes seligite es monstrate in le exitos de cerca"
 
 #: configwidget.cpp:65
 #, kde-format
 msgid "Drag categories to change the order in which results appear"
-msgstr ""
+msgstr "Trahe categorias pro cambiar le ordine de como appari le eitos"
 
 #: package/contents/ui/SearchField.qml:43
-#, fuzzy, kde-format
-#| msgid "Search"
+#, kde-format
 msgid "Search..."
-msgstr "Cerca"
\ No newline at end of file
+msgstr "Cerca..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/id/milou.po 
new/milou-5.18.0/po/id/milou.po
--- old/milou-5.17.5/po/id/milou.po     2020-01-07 16:36:35.000000000 +0100
+++ new/milou-5.18.0/po/id/milou.po     2020-02-06 14:18:04.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2018-10-04 19:32+0700\n"
 "Last-Translator: Wantoyo <wanto...@gmail.com>\n"
 "Language-Team: Indonesian <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/it/milou.po 
new/milou-5.18.0/po/it/milou.po
--- old/milou-5.17.5/po/it/milou.po     2020-01-07 16:36:36.000000000 +0100
+++ new/milou-5.18.0/po/it/milou.po     2020-02-06 14:18:04.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-21 22:27+0100\n"
 "Last-Translator: Luigi Toscano <luigi.tosc...@tiscali.it>\n"
 "Language-Team: Italian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ko/milou.po 
new/milou-5.18.0/po/ko/milou.po
--- old/milou-5.17.5/po/ko/milou.po     2020-01-07 16:36:38.000000000 +0100
+++ new/milou-5.18.0/po/ko/milou.po     2020-02-06 14:18:07.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-12-02 23:32+0100\n"
 "Last-Translator: Shinjo Park <k...@peremen.name>\n"
 "Language-Team: Korean <kde...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/lt/milou.po 
new/milou-5.18.0/po/lt/milou.po
--- old/milou-5.17.5/po/lt/milou.po     2020-01-07 16:36:40.000000000 +0100
+++ new/milou-5.18.0/po/lt/milou.po     2020-02-06 14:18:08.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: l 10n\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2019-06-05 21:14+0300\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ml/milou.po 
new/milou-5.18.0/po/ml/milou.po
--- old/milou-5.17.5/po/ml/milou.po     1970-01-01 01:00:00.000000000 +0100
+++ new/milou-5.18.0/po/ml/milou.po     2020-02-06 14:18:09.000000000 +0100
@@ -0,0 +1,89 @@
+# Malayalam translations for milou package.
+# Copyright (C) 2019 This file is copyright:
+# This file is distributed under the same license as the milou package.
+# Automatically generated, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: milou\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
+"PO-Revision-Date: 2018-11-12 04:04+0100\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം 
Computing|കമ്പ്യൂട്ടിങ്ങ് <smc."
+"org.in>\n"
+"Language: ml\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: previews/audioplugin.cpp:59
+#, kde-format
+msgid "Artist:"
+msgstr ""
+
+#: previews/audioplugin.cpp:59
+#, kde-format
+msgid "Album:"
+msgstr ""
+
+#: previews/audioplugin.cpp:59
+#, kde-format
+msgid "Duration:"
+msgstr ""
+
+#: previews/emailplugin.cpp:99
+#, kde-format
+msgid "From:"
+msgstr ""
+
+#: previews/emailplugin.cpp:104
+#, kde-format
+msgid "To:"
+msgstr ""
+
+#: previews/emailplugin.cpp:109
+#, kde-format
+msgid "Date:"
+msgstr ""
+
+#: previews/emailplugin.cpp:114
+#, kde-format
+msgid "Subject:"
+msgstr ""
+
+#: previews/emailplugin.cpp:133
+#, kde-format
+msgid ""
+"\n"
+"Attachments:\n"
+"\n"
+msgstr ""
+
+#: previews/fileplugin.cpp:54
+#, kde-format
+msgid "Modified:"
+msgstr ""
+
+#: previews/fileplugin.cpp:54
+#, kde-format
+msgid "Size:"
+msgstr ""
+
+#: qml/ResultDelegate.qml:56
+#, kde-format
+msgid "%1, in category %2"
+msgstr ""
+
+#: qml/ResultDelegate.qml:58
+#, kde-format
+msgid "in category %1"
+msgstr ""
+
+#: qml/ResultDelegate.qml:259
+#, kde-format
+msgctxt ""
+"placeholder is action e.g. run in terminal, in parenthesis is shortcut"
+msgid "%1 (Shift+Return)"
+msgstr ""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ml/plasma_applet_org.kde.milou.po 
new/milou-5.18.0/po/ml/plasma_applet_org.kde.milou.po
--- old/milou-5.17.5/po/ml/plasma_applet_org.kde.milou.po       1970-01-01 
01:00:00.000000000 +0100
+++ new/milou-5.18.0/po/ml/plasma_applet_org.kde.milou.po       2020-02-06 
14:18:09.000000000 +0100
@@ -0,0 +1,40 @@
+# Malayalam translations for milou package.
+# Copyright (C) 2019 This file is copyright:
+# This file is distributed under the same license as the milou package.
+# Automatically generated, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: milou\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
+"PO-Revision-Date: 2019-12-12 22:46+0000\n"
+"Last-Translator: Sabu Siyad <ssi...@tuta.io>\n"
+"Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം 
Computing|കമ്പ്യൂട്ടിങ്ങ് <smc."
+"org.in>\n"
+"Language: ml\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Weblate 3.9.1\n"
+
+#: applet.cpp:69
+#, kde-format
+msgid "Search Results"
+msgstr ""
+
+#: configwidget.cpp:61
+#, kde-format
+msgid "Only the selected components are shown in the search results"
+msgstr ""
+
+#: configwidget.cpp:65
+#, kde-format
+msgid "Drag categories to change the order in which results appear"
+msgstr ""
+
+#: package/contents/ui/SearchField.qml:43
+#, kde-format
+msgid "Search..."
+msgstr "തിരയുക..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/nb/milou.po 
new/milou-5.18.0/po/nb/milou.po
--- old/milou-5.17.5/po/nb/milou.po     2020-01-07 16:36:43.000000000 +0100
+++ new/milou-5.18.0/po/nb/milou.po     2020-02-06 14:18:10.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2014-08-12 21:40+0200\n"
 "Last-Translator: Bjørn Steensrud <bjor...@skogkatt.homelinux.org>\n"
 "Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/nds/milou.po 
new/milou-5.18.0/po/nds/milou.po
--- old/milou-5.17.5/po/nds/milou.po    2020-01-07 16:36:43.000000000 +0100
+++ new/milou-5.18.0/po/nds/milou.po    2020-02-06 14:18:11.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2014-06-23 21:32+0200\n"
 "Last-Translator: Sönke Dibbern <s_dibb...@web.de>\n"
 "Language-Team: Low Saxon <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/nl/milou.po 
new/milou-5.18.0/po/nl/milou.po
--- old/milou-5.17.5/po/nl/milou.po     2020-01-07 16:36:44.000000000 +0100
+++ new/milou-5.18.0/po/nl/milou.po     2020-02-06 14:18:12.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-13 11:12+0100\n"
 "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n"
 "Language-Team: Dutch <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/nn/milou.po 
new/milou-5.18.0/po/nn/milou.po
--- old/milou-5.17.5/po/nn/milou.po     2020-01-07 16:36:44.000000000 +0100
+++ new/milou-5.18.0/po/nn/milou.po     2020-02-06 14:18:12.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2018-01-27 12:11+0100\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <i18n...@lister.ping.uio.no>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/pa/milou.po 
new/milou-5.18.0/po/pa/milou.po
--- old/milou-5.17.5/po/pa/milou.po     2020-01-07 16:36:46.000000000 +0100
+++ new/milou-5.18.0/po/pa/milou.po     2020-02-06 14:18:13.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2014-06-28 22:23-0500\n"
 "Last-Translator: A S Alam <aa...@users.sf.net>\n"
 "Language-Team: Punjabi/Panjabi <punjabi-us...@lists.sf.net>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/pl/milou.po 
new/milou-5.18.0/po/pl/milou.po
--- old/milou-5.17.5/po/pl/milou.po     2020-01-07 16:36:46.000000000 +0100
+++ new/milou-5.18.0/po/pl/milou.po     2020-02-06 14:18:14.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-10-01 10:13+0100\n"
 "Last-Translator: Łukasz Wojniłowicz <lukasz.wojnilow...@gmail.com>\n"
 "Language-Team: Polish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/pt/milou.po 
new/milou-5.18.0/po/pt/milou.po
--- old/milou-5.17.5/po/pt/milou.po     2020-01-07 16:36:46.000000000 +0100
+++ new/milou-5.18.0/po/pt/milou.po     2020-02-06 14:18:15.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-11-01 11:50+0000\n"
 "Last-Translator: José Nuno Coelho Pires <zepi...@gmail.com>\n"
 "Language-Team: Portuguese <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/pt_BR/milou.po 
new/milou-5.18.0/po/pt_BR/milou.po
--- old/milou-5.17.5/po/pt_BR/milou.po  2020-01-07 16:36:47.000000000 +0100
+++ new/milou-5.18.0/po/pt_BR/milou.po  2020-02-06 14:18:15.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-14 16:29-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <elchev...@opensuse.org>\n"
 "Language-Team: Portuguese <kde-i18n-pt...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ro/milou.po 
new/milou-5.18.0/po/ro/milou.po
--- old/milou-5.17.5/po/ro/milou.po     2020-01-07 16:36:47.000000000 +0100
+++ new/milou-5.18.0/po/ro/milou.po     2020-02-06 14:18:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2014-05-02 11:54+0300\n"
 "Last-Translator: Sergiu Bivol <ser...@ase.md>\n"
 "Language-Team: Romanian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/ru/milou.po 
new/milou-5.18.0/po/ru/milou.po
--- old/milou-5.17.5/po/ru/milou.po     2020-01-07 16:36:48.000000000 +0100
+++ new/milou-5.18.0/po/ru/milou.po     2020-02-06 14:18:15.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-10-24 11:59+0300\n"
 "Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n"
 "Language-Team: Russian <kde-russ...@lists.kde.ru>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/sk/milou.po 
new/milou-5.18.0/po/sk/milou.po
--- old/milou-5.17.5/po/sk/milou.po     2020-01-07 16:36:49.000000000 +0100
+++ new/milou-5.18.0/po/sk/milou.po     2020-02-06 14:18:16.000000000 +0100
@@ -4,7 +4,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-10-27 21:02+0100\n"
 "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n"
 "Language-Team: Slovak <kde...@linux.sk>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/sl/milou.po 
new/milou-5.18.0/po/sl/milou.po
--- old/milou-5.17.5/po/sl/milou.po     2020-01-07 16:36:49.000000000 +0100
+++ new/milou-5.18.0/po/sl/milou.po     2020-02-06 14:18:16.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2018-01-11 21:09+0100\n"
 "Last-Translator: Andrej Mernik <andr...@ubuntu.si>\n"
 "Language-Team: Slovenian <lugos-...@lugos.si>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/sv/milou.po 
new/milou-5.18.0/po/sv/milou.po
--- old/milou-5.17.5/po/sv/milou.po     2020-01-07 16:36:52.000000000 +0100
+++ new/milou-5.18.0/po/sv/milou.po     2020-02-06 14:18:19.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-13 19:00+0100\n"
 "Last-Translator: Stefan Asserhäll <stefan.asserh...@bredband.net>\n"
 "Language-Team: Swedish <kde-i18n-...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/tg/plasma_applet_org.kde.milou.po 
new/milou-5.18.0/po/tg/plasma_applet_org.kde.milou.po
--- old/milou-5.17.5/po/tg/plasma_applet_org.kde.milou.po       1970-01-01 
01:00:00.000000000 +0100
+++ new/milou-5.18.0/po/tg/plasma_applet_org.kde.milou.po       2020-02-06 
14:18:20.000000000 +0100
@@ -0,0 +1,38 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the milou package.
+#
+# Victor Ibragimov <victor.ibragi...@gmail.com>, 2019.
+msgid ""
+msgstr ""
+"Project-Id-Version: milou\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2019-05-20 03:25+0200\n"
+"PO-Revision-Date: 2019-09-26 17:47+0500\n"
+"Last-Translator: Victor Ibragimov <victor.ibragi...@gmail.com>\n"
+"Language-Team: English <kde-i18n-...@kde.org>\n"
+"Language: en_US\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Lokalize 19.04.3\n"
+
+#: applet.cpp:69
+#, kde-format
+msgid "Search Results"
+msgstr "Натиҷаҳои ҷустуҷӯ"
+
+#: configwidget.cpp:61
+#, kde-format
+msgid "Only the selected components are shown in the search results"
+msgstr "Танҳо унсурҳои интихобшуда дар натиҷаҳои ҷустуҷӯ нишон дода мешаванд"
+
+#: configwidget.cpp:65
+#, kde-format
+msgid "Drag categories to change the order in which results appear"
+msgstr "Категорияҳоро барои ивази тартиби намоиши натиҷаҳо кашида гузоред"
+
+#: package/contents/ui/SearchField.qml:43
+#, kde-format
+msgid "Search..."
+msgstr "Ҷустуҷӯ..."
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/tr/milou.po 
new/milou-5.18.0/po/tr/milou.po
--- old/milou-5.17.5/po/tr/milou.po     2020-01-07 16:36:54.000000000 +0100
+++ new/milou-5.18.0/po/tr/milou.po     2020-02-06 14:18:21.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-10-04 12:07+0000\n"
 "Last-Translator: Kaan <kaanozdin...@gmail.com>\n"
 "Language-Team: Turkish <kde-l10n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/uk/milou.po 
new/milou-5.18.0/po/uk/milou.po
--- old/milou-5.17.5/po/uk/milou.po     2020-01-07 16:36:55.000000000 +0100
+++ new/milou-5.18.0/po/uk/milou.po     2020-02-06 14:18:22.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: milou\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2017-09-13 17:53+0200\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/zh_CN/milou.po 
new/milou-5.18.0/po/zh_CN/milou.po
--- old/milou-5.17.5/po/zh_CN/milou.po  2020-01-07 16:36:57.000000000 +0100
+++ new/milou-5.18.0/po/zh_CN/milou.po  2020-02-06 14:18:24.000000000 +0100
@@ -7,8 +7,8 @@
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
-"PO-Revision-Date: 2020-01-04 21:47\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
+"PO-Revision-Date: 2020-01-20 21:55\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/zh_CN/plasma_applet_org.kde.milou.po 
new/milou-5.18.0/po/zh_CN/plasma_applet_org.kde.milou.po
--- old/milou-5.17.5/po/zh_CN/plasma_applet_org.kde.milou.po    2020-01-07 
16:36:57.000000000 +0100
+++ new/milou-5.18.0/po/zh_CN/plasma_applet_org.kde.milou.po    2020-02-06 
14:18:24.000000000 +0100
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2020-01-04 21:47\n"
+"PO-Revision-Date: 2020-01-20 21:55\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/milou-5.17.5/po/zh_TW/milou.po 
new/milou-5.18.0/po/zh_TW/milou.po
--- old/milou-5.17.5/po/zh_TW/milou.po  2020-01-07 16:36:58.000000000 +0100
+++ new/milou-5.18.0/po/zh_TW/milou.po  2020-02-06 14:18:25.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
-"POT-Creation-Date: 2019-07-27 03:12+0200\n"
+"POT-Creation-Date: 2019-10-30 03:38+0100\n"
 "PO-Revision-Date: 2018-03-25 12:09+0800\n"
 "Last-Translator: pan93412 <pan93...@gmail.com>\n"
 "Language-Team: Chinese <zh-l...@lists.linux.org.tw>\n"



Reply via email to