Hello community, here is the log from the commit of package milou5 for openSUSE:Factory checked in at 2017-06-01 16:26:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/milou5 (Old) and /work/SRC/openSUSE:Factory/.milou5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "milou5" Thu Jun 1 16:26:19 2017 rev:45 rq:498808 version:5.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/milou5/milou5.changes 2017-04-30 21:14:02.640060049 +0200 +++ /work/SRC/openSUSE:Factory/.milou5.new/milou5.changes 2017-06-01 16:26:20.417219702 +0200 @@ -1,0 +2,21 @@ +Fri May 26 14:10:31 CEST 2017 - [email protected] + +- Update to 5.10.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.10.0.php +- Changes since 5.9.95: + * None + +------------------------------------------------------------------- +Thu May 11 20:26:26 CEST 2017 - [email protected] + +- Update to 5.9.95 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.9.95.php +- Changes since 5.9.5: + * Only follow mouse when moved (Fixes Bug #372635) (kde#372635) + * Add arcconfig file + +------------------------------------------------------------------- Old: ---- milou-5.9.5.tar.xz New: ---- milou-5.10.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ milou5.spec ++++++ --- /var/tmp/diff_new_pack.sTRi5d/_old 2017-06-01 16:26:21.017135110 +0200 +++ /var/tmp/diff_new_pack.sTRi5d/_new 2017-06-01 16:26:21.017135110 +0200 @@ -18,13 +18,13 @@ %bcond_without lang Name: milou5 -Version: 5.9.5 +Version: 5.10.0 Release: 0 Summary: Dedicated search application built on top of Baloo License: GPL-2.0+ and LGPL-2.1+ Group: System/GUI/KDE Url: https://projects.kde.org/milou -Source: http://download.kde.org/stable/plasma/%{version}/milou-%{version}.tar.xz +Source: milou-%{version}.tar.xz BuildRequires: extra-cmake-modules >= 1.2.0 BuildRequires: fdupes BuildRequires: kf5-filesystem ++++++ milou-5.9.5.tar.xz -> milou-5.10.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/.arcconfig new/milou-5.10.0/.arcconfig --- old/milou-5.9.5/.arcconfig 1970-01-01 01:00:00.000000000 +0100 +++ new/milou-5.10.0/.arcconfig 2017-05-26 10:57:47.000000000 +0200 @@ -0,0 +1,4 @@ +{ + "phabricator.uri" : "https://phabricator.kde.org/" +} + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/CMakeLists.txt new/milou-5.10.0/CMakeLists.txt --- old/milou-5.9.5/CMakeLists.txt 2017-04-25 15:09:46.000000000 +0200 +++ new/milou-5.10.0/CMakeLists.txt 2017-05-26 10:59:14.000000000 +0200 @@ -1,5 +1,5 @@ project(Milou) -set(PROJECT_VERSION "5.9.5") +set(PROJECT_VERSION "5.10.0") set(PROJECT_VERSION_MAJOR 5) cmake_minimum_required(VERSION 2.8.12) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/lib/CMakeLists.txt new/milou-5.10.0/lib/CMakeLists.txt --- old/milou-5.9.5/lib/CMakeLists.txt 2017-04-25 15:08:11.000000000 +0200 +++ new/milou-5.10.0/lib/CMakeLists.txt 2017-05-26 10:57:47.000000000 +0200 @@ -5,6 +5,7 @@ previewplugin.cpp sourcesmodel.cpp draghelper.cpp + mousehelper.cpp ) add_library(milou SHARED ${lib_SRCS}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/lib/mousehelper.cpp new/milou-5.10.0/lib/mousehelper.cpp --- old/milou-5.9.5/lib/mousehelper.cpp 1970-01-01 01:00:00.000000000 +0100 +++ new/milou-5.10.0/lib/mousehelper.cpp 2017-05-26 10:57:47.000000000 +0200 @@ -0,0 +1,40 @@ +/* + * Copyright 2017 Aetf <[email protected]> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License or (at your option) version 3 or any later version + * accepted by the membership of KDE e.V. (or its successor approved + * by the membership of KDE e.V.), which shall act as a proxy + * defined in Section 14 of version 3 of the license. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +#include "mousehelper.h" + +#include <QCursor> + +using namespace Milou; + +MouseHelper::MouseHelper(QObject* parent) + : QObject(parent) +{ +} + +MouseHelper::~MouseHelper() +{ +} + +QPointF MouseHelper::globalMousePosition() const +{ + return QCursor::pos(); +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/lib/mousehelper.h new/milou-5.10.0/lib/mousehelper.h --- old/milou-5.9.5/lib/mousehelper.h 1970-01-01 01:00:00.000000000 +0100 +++ new/milou-5.10.0/lib/mousehelper.h 2017-05-26 10:57:47.000000000 +0200 @@ -0,0 +1,44 @@ +/* + * Copyright 2017 Aetf <[email protected]> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License or (at your option) version 3 or any later version + * accepted by the membership of KDE e.V. (or its successor approved + * by the membership of KDE e.V.), which shall act as a proxy + * defined in Section 14 of version 3 of the license. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +#ifndef MOUSEHELPER_H +#define MOUSEHELPER_H + +#include <QObject> +#include <QPoint> + +#include "milou_export.h" + +namespace Milou { + +class MILOU_EXPORT MouseHelper : public QObject +{ + Q_OBJECT + +public: + explicit MouseHelper(QObject* parent = nullptr); + ~MouseHelper(); + + Q_INVOKABLE QPointF globalMousePosition() const; +}; + +} +#endif // MOUSEHELPER_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/lib/qml/ResultDelegate.qml new/milou-5.10.0/lib/qml/ResultDelegate.qml --- old/milou-5.9.5/lib/qml/ResultDelegate.qml 2017-04-25 15:08:11.000000000 +0200 +++ new/milou-5.10.0/lib/qml/ResultDelegate.qml 2017-05-26 10:57:47.000000000 +0200 @@ -81,10 +81,6 @@ acceptedButtons: Qt.LeftButton hoverEnabled: true - onEntered: { - listView.currentIndex = index - } - onPressed: { __pressed = true; __pressX = mouse.x; @@ -112,6 +108,11 @@ __pressY = -1; } } + + if (!listView.moved && listView.mouseMovedGlobally()) { + listView.moved = true + listView.currentIndex = index + } } onContainsMouseChanged: { @@ -119,6 +120,13 @@ __pressed = false; __pressX = -1; __pressY = -1; + } else { + if (listView.moved) { + listView.currentIndex = index + } else if (listView.mouseMovedGlobally()) { + listView.moved = true + listView.currentIndex = index + } } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/lib/qml/ResultsView.qml new/milou-5.10.0/lib/qml/ResultsView.qml --- old/milou-5.9.5/lib/qml/ResultsView.qml 2017-04-25 15:08:11.000000000 +0200 +++ new/milou-5.10.0/lib/qml/ResultsView.qml 2017-05-26 10:57:47.000000000 +0200 @@ -54,6 +54,13 @@ // be run when the model is populated property bool runAutomatically + // This is used to disable mouse selection if the user interacts only with keyboard + property bool moved: false + property point savedMousePosition: Milou.MouseHelper.globalMousePosition() + function mouseMovedGlobally() { + return savedMousePosition != Milou.MouseHelper.globalMousePosition(); + } + Milou.DragHelper { id: dragHelper dragIconSize: units.iconSizes.medium @@ -67,6 +74,8 @@ // and the results are presented onModelReset: { listView.currentIndex = 0 + listView.moved = false + listView.savedMousePosition = Milou.MouseHelper.globalMousePosition() if (runAutomatically) { runCurrentIndex(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/lib/qml/qmlplugins.cpp new/milou-5.10.0/lib/qml/qmlplugins.cpp --- old/milou-5.9.5/lib/qml/qmlplugins.cpp 2017-04-25 15:08:11.000000000 +0200 +++ new/milou-5.10.0/lib/qml/qmlplugins.cpp 2017-05-26 10:57:47.000000000 +0200 @@ -25,6 +25,7 @@ #include "sourcesmodel.h" #include "preview.h" #include "draghelper.h" +#include "mousehelper.h" #include <QtQml/qqml.h> @@ -37,5 +38,9 @@ qmlRegisterType<Milou::SourcesModel> (uri, 0, 1, "SourcesModel"); qmlRegisterType<Milou::Preview> (uri, 0, 1, "Preview"); qmlRegisterType<Milou::DragHelper> (uri, 0, 2, "DragHelper"); + qmlRegisterSingletonType<Milou::MouseHelper> (uri, 0, 1, "MouseHelper", + [](QQmlEngine*, QJSEngine*) -> QObject* { + return new Milou::MouseHelper(); + }); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ar/milou.po new/milou-5.10.0/po/ar/milou.po --- old/milou-5.9.5/po/ar/milou.po 2017-04-25 15:08:27.000000000 +0200 +++ new/milou-5.10.0/po/ar/milou.po 2017-05-26 10:58:05.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-07-04 09:02+0300\n" "Last-Translator: Safa Alfulaij <[email protected]>\n" "Language-Team: Arabic <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "الحجم:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ast/milou.po new/milou-5.10.0/po/ast/milou.po --- old/milou-5.9.5/po/ast/milou.po 2017-04-25 15:08:27.000000000 +0200 +++ new/milou-5.10.0/po/ast/milou.po 2017-05-26 10:58:04.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2016-12-19 03:51+0100\n" "Last-Translator: enolp <[email protected]>\n" "Language-Team: Asturian <[email protected]>\n" @@ -70,7 +70,7 @@ msgid "Size:" msgstr "" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/bs/milou.po new/milou-5.10.0/po/bs/milou.po --- old/milou-5.9.5/po/bs/milou.po 2017-04-25 15:08:32.000000000 +0200 +++ new/milou-5.10.0/po/bs/milou.po 2017-05-26 10:58:09.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: $2\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2015-02-15 12:59+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: none\n" @@ -77,7 +77,7 @@ msgid "Size:" msgstr "Veličina:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ca/milou.po new/milou-5.10.0/po/ca/milou.po --- old/milou-5.9.5/po/ca/milou.po 2017-04-25 15:08:34.000000000 +0200 +++ new/milou-5.10.0/po/ca/milou.po 2017-05-26 10:58:11.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-09 21:44+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -77,7 +77,7 @@ msgid "Size:" msgstr "Mida:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ca@valencia/milou.po new/milou-5.10.0/po/ca@valencia/milou.po --- old/milou-5.9.5/po/ca@valencia/milou.po 2017-04-25 15:08:35.000000000 +0200 +++ new/milou-5.10.0/po/ca@valencia/milou.po 2017-05-26 10:58:11.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-09 21:44+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" @@ -77,7 +77,7 @@ msgid "Size:" msgstr "Mida:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/cs/milou.po new/milou-5.10.0/po/cs/milou.po --- old/milou-5.9.5/po/cs/milou.po 2017-04-25 15:08:36.000000000 +0200 +++ new/milou-5.10.0/po/cs/milou.po 2017-05-26 10:58:12.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-06-23 14:28+0200\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Velikost:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/da/milou.po new/milou-5.10.0/po/da/milou.po --- old/milou-5.9.5/po/da/milou.po 2017-04-25 15:08:39.000000000 +0200 +++ new/milou-5.10.0/po/da/milou.po 2017-05-26 10:58:14.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-02-11 12:17+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Størrelse:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/de/milou.po new/milou-5.10.0/po/de/milou.po --- old/milou-5.9.5/po/de/milou.po 2017-04-25 15:08:40.000000000 +0200 +++ new/milou-5.10.0/po/de/milou.po 2017-05-26 10:58:16.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 15:03+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" @@ -71,7 +71,7 @@ msgid "Size:" msgstr "Größe:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/el/milou.po new/milou-5.10.0/po/el/milou.po --- old/milou-5.9.5/po/el/milou.po 2017-04-25 15:08:45.000000000 +0200 +++ new/milou-5.10.0/po/el/milou.po 2017-05-26 10:58:16.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-24 16:04+0200\n" "Last-Translator: Dimitris Kardarakos <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Μέγεθος:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/en_GB/milou.po new/milou-5.10.0/po/en_GB/milou.po --- old/milou-5.9.5/po/en_GB/milou.po 2017-04-25 15:08:45.000000000 +0200 +++ new/milou-5.10.0/po/en_GB/milou.po 2017-05-26 10:58:17.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-15 12:09+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: English <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Size:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/es/milou.po new/milou-5.10.0/po/es/milou.po --- old/milou-5.9.5/po/es/milou.po 2017-04-25 15:08:44.000000000 +0200 +++ new/milou-5.10.0/po/es/milou.po 2017-05-26 10:58:17.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-13 17:01+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" @@ -75,7 +75,7 @@ msgid "Size:" msgstr "Tamaño:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/et/milou.po new/milou-5.10.0/po/et/milou.po --- old/milou-5.9.5/po/et/milou.po 2017-04-25 15:08:50.000000000 +0200 +++ new/milou-5.10.0/po/et/milou.po 2017-05-26 10:58:21.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2016-01-10 23:30+0200\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Suurus:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/fi/milou.po new/milou-5.10.0/po/fi/milou.po --- old/milou-5.9.5/po/fi/milou.po 2017-04-25 15:08:51.000000000 +0200 +++ new/milou-5.10.0/po/fi/milou.po 2017-05-26 10:58:23.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-13 22:36+0200\n" "Last-Translator: Lasse Liehu <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Koko:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/fr/milou.po new/milou-5.10.0/po/fr/milou.po --- old/milou-5.9.5/po/fr/milou.po 2017-04-25 15:08:53.000000000 +0200 +++ new/milou-5.10.0/po/fr/milou.po 2017-05-26 10:58:22.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-07-30 15:53+0200\n" "Last-Translator: Geoffray Levasseur <geoffray.levasseur-brandin@ac-toulouse." "fr>\n" @@ -77,7 +77,7 @@ msgid "Size:" msgstr "Taille :" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/gl/milou.po new/milou-5.10.0/po/gl/milou.po --- old/milou-5.9.5/po/gl/milou.po 2017-04-25 15:08:58.000000000 +0200 +++ new/milou-5.10.0/po/gl/milou.po 2017-05-26 10:58:26.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-04-28 19:43+0200\n" "Last-Translator: Xosé <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Tamaño:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/he/milou.po new/milou-5.10.0/po/he/milou.po --- old/milou-5.9.5/po/he/milou.po 2017-04-25 15:08:59.000000000 +0200 +++ new/milou-5.10.0/po/he/milou.po 2017-05-26 10:58:27.000000000 +0200 @@ -2,12 +2,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Elkana Bardugo <[email protected]>, 2016. +# Elkana Bardugo <[email protected]>, 2017. #zanata msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" -"PO-Revision-Date: 2016-09-18 22:25+0200\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" +"PO-Revision-Date: 2017-05-23 08:51-0400\n" "Last-Translator: Elkana Bardugo <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" "Language: he\n" @@ -15,7 +16,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 2.0\n" +"X-Generator: Zanata 3.9.6\n" #: previews/audioplugin.cpp:59 #, kde-format @@ -73,9 +74,9 @@ msgid "Size:" msgstr "גודל:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, 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.9.5/po/he/plasma_applet_org.kde.milou.po new/milou-5.10.0/po/he/plasma_applet_org.kde.milou.po --- old/milou-5.9.5/po/he/plasma_applet_org.kde.milou.po 2017-04-25 15:08:59.000000000 +0200 +++ new/milou-5.10.0/po/he/plasma_applet_org.kde.milou.po 2017-05-26 10:58:27.000000000 +0200 @@ -2,20 +2,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Elkana Bardugo <[email protected]>, 2016. +# Elkana Bardugo <[email protected]>, 2017. #zanata msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: plasma_applet_org.kde.milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:21+0100\n" -"PO-Revision-Date: 2016-09-18 22:46+0200\n" -"Last-Translator: Elkana Bardugo <[email protected]>\n" +"PO-Revision-Date: 2017-05-16 06:55-0400\n" +"Last-Translator: Copied by Zanata <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" "Language: he\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: Zanata 3.9.6\n" #: applet.cpp:69 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/hu/milou.po new/milou-5.10.0/po/hu/milou.po --- old/milou-5.9.5/po/hu/milou.po 2017-04-25 15:09:02.000000000 +0200 +++ new/milou-5.10.0/po/hu/milou.po 2017-05-26 10:58:31.000000000 +0200 @@ -2,20 +2,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Balázs Úr <[email protected]>, 2014. +# Kiszel Kristóf <[email protected]>, 2017. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" -"PO-Revision-Date: 2014-02-19 23:05+0100\n" -"Last-Translator: Balázs Úr <[email protected]>\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" +"PO-Revision-Date: 2017-02-12 13:25+0100\n" +"Last-Translator: Kiszel Kristóf <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\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 2.0\n" #: previews/audioplugin.cpp:59 #, kde-format @@ -73,9 +74,9 @@ msgid "Size:" msgstr "Méret:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, 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+Enter)" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ia/milou.po new/milou-5.10.0/po/ia/milou.po --- old/milou-5.9.5/po/ia/milou.po 2017-04-25 15:09:02.000000000 +0200 +++ new/milou-5.10.0/po/ia/milou.po 2017-05-26 10:58:31.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-07-25 14:46+0200\n" "Last-Translator: Giovanni Sora <[email protected]>\n" "Language-Team: Interlingua <[email protected]>\n" @@ -70,7 +70,7 @@ msgid "Size:" msgstr "Dimension:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/it/milou.po new/milou-5.10.0/po/it/milou.po --- old/milou-5.9.5/po/it/milou.po 2017-04-25 15:09:07.000000000 +0200 +++ new/milou-5.10.0/po/it/milou.po 2017-05-26 10:58:34.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 14:17+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Dimensione:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ja/milou.po new/milou-5.10.0/po/ja/milou.po --- old/milou-5.9.5/po/ja/milou.po 2017-04-25 15:09:05.000000000 +0200 +++ new/milou-5.10.0/po/ja/milou.po 2017-05-26 10:58:34.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-02-22 22:22-0800\n" "Last-Translator: Japanese KDE translation team <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" @@ -67,7 +67,7 @@ msgid "Size:" msgstr "" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ko/milou.po new/milou-5.10.0/po/ko/milou.po --- old/milou-5.9.5/po/ko/milou.po 2017-04-25 15:09:10.000000000 +0200 +++ new/milou-5.10.0/po/ko/milou.po 2017-05-26 10:58:40.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-22 20:04+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "크기:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/lt/milou.po new/milou-5.10.0/po/lt/milou.po --- old/milou-5.9.5/po/lt/milou.po 2017-04-25 15:09:12.000000000 +0200 +++ new/milou-5.10.0/po/lt/milou.po 2017-05-26 10:58:39.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-11-11 07:16+0200\n" "Last-Translator: Liudas Ališauskas <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" @@ -76,7 +76,7 @@ msgid "Size:" msgstr "Dydis:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/nb/milou.po new/milou-5.10.0/po/nb/milou.po --- old/milou-5.9.5/po/nb/milou.po 2017-04-25 15:09:19.000000000 +0200 +++ new/milou-5.10.0/po/nb/milou.po 2017-05-26 10:58:45.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-08-12 21:40+0200\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" @@ -75,7 +75,7 @@ msgid "Size:" msgstr "Størrelse:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/nds/milou.po new/milou-5.10.0/po/nds/milou.po --- old/milou-5.9.5/po/nds/milou.po 2017-04-25 15:09:20.000000000 +0200 +++ new/milou-5.10.0/po/nds/milou.po 2017-05-26 10:58:46.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-06-23 21:32+0200\n" "Last-Translator: Sönke Dibbern <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Grött:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/nl/milou.po new/milou-5.10.0/po/nl/milou.po --- old/milou-5.9.5/po/nl/milou.po 2017-04-25 15:09:21.000000000 +0200 +++ new/milou-5.10.0/po/nl/milou.po 2017-05-26 10:58:48.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-09 13:59+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Grootte:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/nn/milou.po new/milou-5.10.0/po/nn/milou.po --- old/milou-5.9.5/po/nn/milou.po 2017-04-25 15:09:21.000000000 +0200 +++ new/milou-5.10.0/po/nn/milou.po 2017-05-26 10:58:49.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 16:38+0100\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" @@ -75,7 +75,7 @@ msgid "Size:" msgstr "Storleik:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/pa/milou.po new/milou-5.10.0/po/pa/milou.po --- old/milou-5.9.5/po/pa/milou.po 2017-04-25 15:09:24.000000000 +0200 +++ new/milou-5.10.0/po/pa/milou.po 2017-05-26 10:58:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-06-28 22:23-0500\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: Punjabi/Panjabi <[email protected]>\n" @@ -70,7 +70,7 @@ msgid "Size:" msgstr "ਸਾਈਜ਼:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/pl/milou.po new/milou-5.10.0/po/pl/milou.po --- old/milou-5.9.5/po/pl/milou.po 2017-04-25 15:09:24.000000000 +0200 +++ new/milou-5.10.0/po/pl/milou.po 2017-05-26 10:58:53.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-29 08:01+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Rozmiar:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/pt/milou.po new/milou-5.10.0/po/pt/milou.po --- old/milou-5.9.5/po/pt/milou.po 2017-04-25 15:09:26.000000000 +0200 +++ new/milou-5.10.0/po/pt/milou.po 2017-05-26 10:58:54.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-09 09:50+0000\n" "Last-Translator: José Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" @@ -69,7 +69,7 @@ msgid "Size:" msgstr "Tamanho:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/pt_BR/milou.po new/milou-5.10.0/po/pt_BR/milou.po --- old/milou-5.9.5/po/pt_BR/milou.po 2017-04-25 15:09:27.000000000 +0200 +++ new/milou-5.10.0/po/pt_BR/milou.po 2017-05-26 10:58:53.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-03-02 18:47-0300\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" @@ -75,7 +75,7 @@ msgid "Size:" msgstr "Tamanho:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ro/milou.po new/milou-5.10.0/po/ro/milou.po --- old/milou-5.9.5/po/ro/milou.po 2017-04-25 15:09:26.000000000 +0200 +++ new/milou-5.10.0/po/ro/milou.po 2017-05-26 10:58:56.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2014-05-02 11:54+0300\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Romanian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Dimensiune:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/ru/milou.po new/milou-5.10.0/po/ru/milou.po --- old/milou-5.9.5/po/ru/milou.po 2017-04-25 15:09:29.000000000 +0200 +++ new/milou-5.10.0/po/ru/milou.po 2017-05-26 10:58:56.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-15 02:10+0300\n" "Last-Translator: Alexander Potashev <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Размер:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sk/milou.po new/milou-5.10.0/po/sk/milou.po --- old/milou-5.9.5/po/sk/milou.po 2017-04-25 15:09:30.000000000 +0200 +++ new/milou-5.10.0/po/sk/milou.po 2017-05-26 10:58:59.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-11 22:00+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" @@ -71,7 +71,7 @@ msgid "Size:" msgstr "Veľkosť:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sl/milou.po new/milou-5.10.0/po/sl/milou.po --- old/milou-5.9.5/po/sl/milou.po 2017-04-25 15:09:30.000000000 +0200 +++ new/milou-5.10.0/po/sl/milou.po 2017-05-26 10:59:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-03-31 21:26+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Velikost:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sr/milou.po new/milou-5.10.0/po/sr/milou.po --- old/milou-5.9.5/po/sr/milou.po 2017-04-25 15:09:33.000000000 +0200 +++ new/milou-5.10.0/po/sr/milou.po 2017-05-26 10:59:01.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 19:23+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Велична:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sr@ijekavian/milou.po new/milou-5.10.0/po/sr@ijekavian/milou.po --- old/milou-5.9.5/po/sr@ijekavian/milou.po 2017-04-25 15:09:33.000000000 +0200 +++ new/milou-5.10.0/po/sr@ijekavian/milou.po 2017-05-26 10:59:02.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 19:23+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Велична:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sr@ijekavianlatin/milou.po new/milou-5.10.0/po/sr@ijekavianlatin/milou.po --- old/milou-5.9.5/po/sr@ijekavianlatin/milou.po 2017-04-25 15:09:33.000000000 +0200 +++ new/milou-5.10.0/po/sr@ijekavianlatin/milou.po 2017-05-26 10:59:03.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 19:23+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Velična:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sr@latin/milou.po new/milou-5.10.0/po/sr@latin/milou.po --- old/milou-5.9.5/po/sr@latin/milou.po 2017-04-25 15:09:34.000000000 +0200 +++ new/milou-5.10.0/po/sr@latin/milou.po 2017-05-26 10:59:03.000000000 +0200 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-14 19:23+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "Velična:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/sv/milou.po new/milou-5.10.0/po/sv/milou.po --- old/milou-5.9.5/po/sv/milou.po 2017-04-25 15:09:36.000000000 +0200 +++ new/milou-5.10.0/po/sv/milou.po 2017-05-26 10:59:05.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-09 18:30+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Storlek:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/tr/milou.po new/milou-5.10.0/po/tr/milou.po --- old/milou-5.9.5/po/tr/milou.po 2017-04-25 15:09:40.000000000 +0200 +++ new/milou-5.10.0/po/tr/milou.po 2017-05-26 10:59:08.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-04-24 16:42+0100\n" "Last-Translator: Volkan Gezer <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" @@ -73,7 +73,7 @@ msgid "Size:" msgstr "Boyut:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/tr/plasma_applet_org.kde.milou.po new/milou-5.10.0/po/tr/plasma_applet_org.kde.milou.po --- old/milou-5.9.5/po/tr/plasma_applet_org.kde.milou.po 1970-01-01 01:00:00.000000000 +0100 +++ new/milou-5.10.0/po/tr/plasma_applet_org.kde.milou.po 2017-05-26 10:59:08.000000000 +0200 @@ -0,0 +1,38 @@ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. +# +# Volkan Gezer <[email protected]>, 2017. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2016-11-19 20:21+0100\n" +"PO-Revision-Date: 2017-04-24 16:44+0100\n" +"Last-Translator: Volkan Gezer <[email protected]>\n" +"Language-Team: Turkish <[email protected]>\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Lokalize 2.0\n" + +#: applet.cpp:69 +#, kde-format +msgid "Search Results" +msgstr "Arama Sonuçları" + +#: configwidget.cpp:61 +#, kde-format +msgid "Only the selected components are shown in the search results" +msgstr "Arama sonuçlarında sadece seçili bileşenler gösterilir" + +#: configwidget.cpp:65 +#, kde-format +msgid "Drag categories to change the order in which results appear" +msgstr "Sonuçların görülme sırasını değiştirmek için kategorileri sürükleyin" + +#: package/contents/ui/SearchField.qml:54 +#, kde-format +msgid "Search" +msgstr "Ara" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/uk/milou.po new/milou-5.10.0/po/uk/milou.po --- old/milou-5.9.5/po/uk/milou.po 2017-04-25 15:09:40.000000000 +0200 +++ new/milou-5.10.0/po/uk/milou.po 2017-05-26 10:59:09.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-09 13:18+0200\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" @@ -76,7 +76,7 @@ msgid "Size:" msgstr "Розмір:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/zh_CN/milou.po new/milou-5.10.0/po/zh_CN/milou.po --- old/milou-5.9.5/po/zh_CN/milou.po 2017-04-25 15:09:44.000000000 +0200 +++ new/milou-5.10.0/po/zh_CN/milou.po 2017-05-26 10:59:13.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" -"PO-Revision-Date: 2017-02-05 14:40+0200\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" +"PO-Revision-Date: 2017-02-03 12:01+0200\n" "Last-Translator: Guo Yunhe <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" "Language: zh_CN\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "大小:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.9.5/po/zh_TW/milou.po new/milou-5.10.0/po/zh_TW/milou.po --- old/milou-5.9.5/po/zh_TW/milou.po 2017-04-25 15:09:46.000000000 +0200 +++ new/milou-5.10.0/po/zh_TW/milou.po 2017-05-26 10:59:14.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-01-09 04:01+0100\n" +"POT-Creation-Date: 2017-05-01 02:51+0200\n" "PO-Revision-Date: 2017-01-24 15:41+0800\n" "Last-Translator: Jeff Huang <[email protected]>\n" "Language-Team: Chinese <[email protected]>\n" @@ -74,7 +74,7 @@ msgid "Size:" msgstr "大小:" -#: qml/ResultDelegate.qml:226 +#: qml/ResultDelegate.qml:234 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut"
