Hello community, here is the log from the commit of package milou5 for openSUSE:Factory checked in at 2018-01-22 16:06:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/milou5 (Old) and /work/SRC/openSUSE:Factory/.milou5.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "milou5" Mon Jan 22 16:06:09 2018 rev:57 rq:566833 version:5.11.95 Changes: -------- --- /work/SRC/openSUSE:Factory/milou5/milou5.changes 2018-01-03 13:37:05.768047211 +0100 +++ /work/SRC/openSUSE:Factory/.milou5.new/milou5.changes 2018-01-22 16:06:11.876517536 +0100 @@ -1,0 +2,13 @@ +Mon Jan 15 15:54:06 CET 2018 - [email protected] + +- Update to 5.11.95 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/plasma-5.11.95.php +- Changes since 5.11.5: + * [ResultDelegate] Silence i18n when ListView.section is empty + * [ResultDelegate] Workaround subtextLabel leaking outside its container + * [ResultDelegate] Get rid of Globals.js + * adjust license to be readable by KAboutData + +------------------------------------------------------------------- Old: ---- milou-5.11.5.tar.xz New: ---- milou-5.11.95.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ milou5.spec ++++++ --- /var/tmp/diff_new_pack.jEvbWV/_old 2018-01-22 16:06:12.816473555 +0100 +++ /var/tmp/diff_new_pack.jEvbWV/_new 2018-01-22 16:06:12.820473368 +0100 @@ -18,13 +18,13 @@ %bcond_without lang Name: milou5 -Version: 5.11.5 +Version: 5.11.95 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: http://download.kde.org/unstable/plasma/%{version}/milou-%{version}.tar.xz BuildRequires: extra-cmake-modules >= 1.2.0 BuildRequires: fdupes BuildRequires: kf5-filesystem ++++++ milou-5.11.5.tar.xz -> milou-5.11.95.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.11.5/CMakeLists.txt new/milou-5.11.95/CMakeLists.txt --- old/milou-5.11.5/CMakeLists.txt 2018-01-02 13:42:56.800827860 +0100 +++ new/milou-5.11.95/CMakeLists.txt 2018-01-15 14:35:51.000000000 +0100 @@ -1,5 +1,5 @@ project(Milou) -set(PROJECT_VERSION "5.11.5") +set(PROJECT_VERSION "5.11.95") 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.11.5/lib/qml/ResultDelegate.qml new/milou-5.11.95/lib/qml/ResultDelegate.qml --- old/milou-5.11.5/lib/qml/ResultDelegate.qml 2018-01-02 13:40:52.536003984 +0100 +++ new/milou-5.11.95/lib/qml/ResultDelegate.qml 2018-01-15 14:35:06.000000000 +0100 @@ -27,8 +27,6 @@ import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents -import "globals.js" as Globals - MouseArea { id: resultDelegate @@ -44,10 +42,23 @@ property string typeText: sectionHasChanged ? ListView.section : "" property var additionalActions: typeof actions !== "undefined" ? actions : [] + property int categoryWidth: units.gridUnit * 10 Accessible.role: Accessible.ListItem Accessible.name: displayLabel.text - Accessible.description: subtextLabel.text.length > 0 ? i18nd("milou", "%1, in category %2", subtextLabel.text, ListView.section) : i18nd("milou", "in category %1", ListView.section) + Accessible.description: { + var section = ListView.section; + if (!section) { + return ""; + } + var subtext = subtextLabel.text; + if (subtext.length > 0) { + return i18nd("milou", "%1, in category %2", subtext, section); + } else { + return i18nd("milou", "in category %1", section); + } + } + property bool __pressed: false property int __pressX: -1 property int __pressY: -1 @@ -143,7 +154,7 @@ elide: Text.ElideRight textFormat: Text.PlainText - width: Globals.CategoryWidth - Globals.CategoryRightMargin + width: resultDelegate.categoryWidth - units.largeSpacing anchors { left: parent.left verticalCenter: listItem.verticalCenter @@ -164,7 +175,7 @@ anchors { left: parent.left right: parent.right - leftMargin: Globals.CategoryWidth + leftMargin: resultDelegate.categoryWidth } height: Math.max(typePixmap.height, displayLabel.height, subtextLabel.height) @@ -177,8 +188,8 @@ PlasmaCore.IconItem { id: typePixmap - Layout.preferredWidth: Globals.IconSize - Layout.preferredHeight: Globals.IconSize + Layout.preferredWidth: units.iconSizes.small + Layout.preferredHeight: units.iconSizes.small Layout.fillHeight: true source: model.decoration usesPlasmaTheme: false @@ -205,7 +216,9 @@ text: model.isDuplicate > 1 || resultDelegate.isCurrent ? String(model.subtext || "") : "" color: theme.textColor - opacity: 0.3 + // 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 height: undefined @@ -249,8 +262,8 @@ PlasmaCore.IconItem { anchors.centerIn: parent - width: Globals.IconSize - height: Globals.IconSize + width: units.iconSizes.small + height: units.iconSizes.small // ToolButton cannot cope with QIcon source: modelData.icon || "" active: parent.hovered || parent.checked diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.11.5/plasmoid/package/metadata.desktop new/milou-5.11.95/plasmoid/package/metadata.desktop --- old/milou-5.11.5/plasmoid/package/metadata.desktop 2018-01-02 13:40:52.540004010 +0100 +++ new/milou-5.11.95/plasmoid/package/metadata.desktop 2018-01-15 14:35:06.000000000 +0100 @@ -100,7 +100,7 @@ [email protected] X-KDE-PluginInfo-Version=0.1 X-KDE-PluginInfo-Website=http://kde.org -X-KDE-PluginInfo-License=LGPL-2.1+ +X-KDE-PluginInfo-License=LGPL 2.1+ X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-EnabledByDefault=true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.11.5/po/ar/milou.po new/milou-5.11.95/po/ar/milou.po --- old/milou-5.11.5/po/ar/milou.po 2018-01-02 13:41:14.088147241 +0100 +++ new/milou-5.11.95/po/ar/milou.po 2018-01-15 14:35:19.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +74,17 @@ msgid "Size:" msgstr "الحجم:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ast/milou.po new/milou-5.11.95/po/ast/milou.po --- old/milou-5.11.5/po/ast/milou.po 2018-01-02 13:41:13.420142801 +0100 +++ new/milou-5.11.95/po/ast/milou.po 2018-01-15 14:35:17.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2016-12-19 03:51+0100\n" "Last-Translator: enolp <[email protected]>\n" "Language-Team: Asturian <[email protected]>\n" @@ -70,17 +70,17 @@ msgid "Size:" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/bs/milou.po new/milou-5.11.95/po/bs/milou.po --- old/milou-5.11.5/po/bs/milou.po 2018-01-02 13:41:21.128194034 +0100 +++ new/milou-5.11.95/po/bs/milou.po 2018-01-15 14:35:21.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: $2\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2015-02-15 12:59+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: none\n" @@ -77,17 +77,17 @@ msgid "Size:" msgstr "Veličina:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ca/milou.po new/milou-5.11.95/po/ca/milou.po --- old/milou-5.11.5/po/ca/milou.po 2018-01-02 13:41:22.608203871 +0100 +++ new/milou-5.11.95/po/ca/milou.po 2018-01-15 14:35:22.000000000 +0100 @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-09-15 17:37+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2017-09-14 22:29+0100\n" "Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca\n" @@ -77,17 +77,17 @@ msgid "Size:" msgstr "Mida:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, a la categoria %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "a la categoria %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ca@valencia/milou.po new/milou-5.11.95/po/ca@valencia/milou.po --- old/milou-5.11.5/po/ca@valencia/milou.po 2018-01-02 13:41:23.408209189 +0100 +++ new/milou-5.11.95/po/ca@valencia/milou.po 2018-01-15 14:35:22.000000000 +0100 @@ -3,15 +3,15 @@ # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Antoni Bella Pérez <[email protected]>, 2014, 2017. +# Antoni Bella Pérez <[email protected]>, 2014. # Josep Ma. Ferrer <[email protected]>, 2017. msgid "" msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-11-20 12:58+0100\n" -"Last-Translator: Antoni Bella Pérez <[email protected]>\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2017-09-14 22:29+0100\n" +"Last-Translator: Josep Ma. Ferrer <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" @@ -77,17 +77,17 @@ msgid "Size:" msgstr "Mida:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, a la categoria %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "a la categoria %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/cs/milou.po new/milou-5.11.95/po/cs/milou.po --- old/milou-5.11.5/po/cs/milou.po 2018-01-02 13:41:24.048213443 +0100 +++ new/milou-5.11.95/po/cs/milou.po 2018-01-15 14:35:23.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-10-06 13:41+0100\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Velikost:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, v kategorii %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "v kategorii %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/da/milou.po new/milou-5.11.95/po/da/milou.po --- old/milou-5.11.5/po/da/milou.po 2018-01-02 13:41:29.072246835 +0100 +++ new/milou-5.11.95/po/da/milou.po 2018-01-15 14:35:24.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-11-27 19:33+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Størrelse:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, i kategorien %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "i kategorien %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/de/milou.po new/milou-5.11.95/po/de/milou.po --- old/milou-5.11.5/po/de/milou.po 2018-01-02 13:41:30.024253163 +0100 +++ new/milou-5.11.95/po/de/milou.po 2018-01-15 14:35:25.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-11-27 15:25+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" @@ -71,17 +71,17 @@ msgid "Size:" msgstr "Größe:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, in Kategorie %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "in Kategorie %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/el/milou.po new/milou-5.11.95/po/el/milou.po --- old/milou-5.11.5/po/el/milou.po 2018-01-02 13:41:31.580263505 +0100 +++ new/milou-5.11.95/po/el/milou.po 2018-01-15 14:35:25.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +74,17 @@ msgid "Size:" msgstr "Μέγεθος:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/en_GB/milou.po new/milou-5.11.95/po/en_GB/milou.po --- old/milou-5.11.5/po/en_GB/milou.po 2018-01-02 13:41:31.740264569 +0100 +++ new/milou-5.11.95/po/en_GB/milou.po 2018-01-15 14:35:25.000000000 +0100 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-11-26 20:58+0000\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2017-11-26 15:40+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" "Language: en_GB\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Size:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, in category %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "in category %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/es/milou.po new/milou-5.11.95/po/es/milou.po --- old/milou-5.11.5/po/es/milou.po 2018-01-02 13:41:36.032293096 +0100 +++ new/milou-5.11.95/po/es/milou.po 2018-01-15 14:35:26.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-09-15 23:50+0100\n" "Last-Translator: Eloy Cuadra <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" @@ -75,17 +75,17 @@ msgid "Size:" msgstr "Tamaño:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, en la categoría %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "en la categoría %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/et/milou.po new/milou-5.11.95/po/et/milou.po --- old/milou-5.11.5/po/et/milou.po 2018-01-02 13:41:37.444302481 +0100 +++ new/milou-5.11.95/po/et/milou.po 2018-01-15 14:35:27.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +73,17 @@ msgid "Size:" msgstr "Suurus:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/fi/milou.po new/milou-5.11.95/po/fi/milou.po --- old/milou-5.11.5/po/fi/milou.po 2018-01-02 13:41:39.860318539 +0100 +++ new/milou-5.11.95/po/fi/milou.po 2018-01-15 14:35:27.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-12-08 16:21+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Koko:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, luokassa %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "luokassa %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/fr/milou.po new/milou-5.11.95/po/fr/milou.po --- old/milou-5.11.5/po/fr/milou.po 2018-01-02 13:41:43.000339409 +0100 +++ new/milou-5.11.95/po/fr/milou.po 2018-01-15 14:35:28.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-09-21 09:23+0100\n" "Last-Translator: Vincent Pinon <[email protected]>\n" "Language-Team: French <[email protected]>\n" @@ -77,17 +77,17 @@ msgid "Size:" msgstr "Taille :" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, dans la catégorie %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "dans la catégorie %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/gl/milou.po new/milou-5.11.95/po/gl/milou.po --- old/milou-5.11.5/po/gl/milou.po 2018-01-02 13:41:45.688357274 +0100 +++ new/milou-5.11.95/po/gl/milou.po 2018-01-15 14:35:29.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-07-29 10:46+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Tamaño:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/he/milou.po new/milou-5.11.95/po/he/milou.po --- old/milou-5.11.5/po/he/milou.po 2018-01-02 13:41:48.136373545 +0100 +++ new/milou-5.11.95/po/he/milou.po 2018-01-15 14:35:30.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-05-23 08:51-0400\n" "Last-Translator: Elkana Bardugo <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "גודל:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/hu/milou.po new/milou-5.11.95/po/hu/milou.po --- old/milou-5.11.5/po/hu/milou.po 2018-01-02 13:41:53.736410764 +0100 +++ new/milou-5.11.95/po/hu/milou.po 2018-01-15 14:35:32.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Méret:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ia/milou.po new/milou-5.11.95/po/ia/milou.po --- old/milou-5.11.5/po/ia/milou.po 2018-01-02 13:41:54.536416082 +0100 +++ new/milou-5.11.95/po/ia/milou.po 2018-01-15 14:35:32.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +70,17 @@ msgid "Size:" msgstr "Dimension:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/it/milou.po new/milou-5.11.95/po/it/milou.po --- old/milou-5.11.5/po/it/milou.po 2018-01-02 13:41:57.896438413 +0100 +++ new/milou-5.11.95/po/it/milou.po 2018-01-15 14:35:33.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-09-21 22:27+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Dimensione:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, nella categoria %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "nella categoria %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ja/milou.po new/milou-5.11.95/po/ja/milou.po --- old/milou-5.11.5/po/ja/milou.po 2018-01-02 13:41:59.556449446 +0100 +++ new/milou-5.11.95/po/ja/milou.po 2018-01-15 14:35:33.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +67,17 @@ msgid "Size:" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ko/milou.po new/milou-5.11.95/po/ko/milou.po --- old/milou-5.11.5/po/ko/milou.po 2018-01-02 13:42:05.524489111 +0100 +++ new/milou-5.11.95/po/ko/milou.po 2018-01-15 14:35:35.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-12-02 23:32+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "크기:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, 분류 %2에 있음" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "분류 %1에 있음" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/lt/milou.po new/milou-5.11.95/po/lt/milou.po --- old/milou-5.11.5/po/lt/milou.po 2018-01-02 13:42:08.056505939 +0100 +++ new/milou-5.11.95/po/lt/milou.po 2018-01-15 14:35:36.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: l 10n\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +76,17 @@ msgid "Size:" msgstr "Dydis:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/nds/milou.po new/milou-5.11.95/po/nds/milou.po --- old/milou-5.11.5/po/nds/milou.po 2018-01-02 13:42:16.924564876 +0100 +++ new/milou-5.11.95/po/nds/milou.po 2018-01-15 14:35:39.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +73,17 @@ msgid "Size:" msgstr "Grött:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/nl/milou.po new/milou-5.11.95/po/nl/milou.po --- old/milou-5.11.5/po/nl/milou.po 2018-01-02 13:42:19.504582023 +0100 +++ new/milou-5.11.95/po/nl/milou.po 2018-01-15 14:35:39.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-09-13 11:12+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Grootte:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, in categorie %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "in categorie %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/pa/milou.po new/milou-5.11.95/po/pa/milou.po --- old/milou-5.11.5/po/pa/milou.po 2018-01-02 13:42:23.028605444 +0100 +++ new/milou-5.11.95/po/pa/milou.po 2018-01-15 14:35:41.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +70,17 @@ msgid "Size:" msgstr "ਸਾਈਜ਼:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/pl/milou.po new/milou-5.11.95/po/pl/milou.po --- old/milou-5.11.5/po/pl/milou.po 2018-01-02 13:42:24.456614934 +0100 +++ new/milou-5.11.95/po/pl/milou.po 2018-01-15 14:35:41.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-10-01 10:13+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Rozmiar:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, w kategorii %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "w kategorii %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/pt/milou.po new/milou-5.11.95/po/pt/milou.po --- old/milou-5.11.5/po/pt/milou.po 2018-01-02 13:42:27.708636547 +0100 +++ new/milou-5.11.95/po/pt/milou.po 2018-01-15 14:35:42.000000000 +0100 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-11-01 11:58+0000\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2017-11-01 11:50+0000\n" "Last-Translator: José Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" "Language: pt\n" @@ -69,17 +69,17 @@ msgid "Size:" msgstr "Tamanho:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, na categoria %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "na categoria %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/pt_BR/milou.po new/milou-5.11.95/po/pt_BR/milou.po --- old/milou-5.11.5/po/pt_BR/milou.po 2018-01-02 13:42:27.820637291 +0100 +++ new/milou-5.11.95/po/pt_BR/milou.po 2018-01-15 14:35:42.000000000 +0100 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-11-03 18:47-0300\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2017-09-14 16:29-0300\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" "Language: pt_BR\n" @@ -75,17 +75,17 @@ msgid "Size:" msgstr "Tamanho:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, na categoria %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "na categoria %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ro/milou.po new/milou-5.11.95/po/ro/milou.po --- old/milou-5.11.5/po/ro/milou.po 2018-01-02 13:42:28.216639922 +0100 +++ new/milou-5.11.95/po/ro/milou.po 2018-01-15 14:35:42.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +74,17 @@ msgid "Size:" msgstr "Dimensiune:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/ru/milou.po new/milou-5.11.95/po/ru/milou.po --- old/milou-5.11.5/po/ru/milou.po 2018-01-02 13:42:30.120652577 +0100 +++ new/milou-5.11.95/po/ru/milou.po 2018-01-15 14:35:42.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-10-24 11:59+0300\n" "Last-Translator: Alexander Potashev <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Размер:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, в категории %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "в категории %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sk/milou.po new/milou-5.11.95/po/sk/milou.po --- old/milou-5.11.5/po/sk/milou.po 2018-01-02 13:42:34.404681047 +0100 +++ new/milou-5.11.95/po/sk/milou.po 2018-01-15 14:35:44.000000000 +0100 @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-10-13 22:47+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2017-10-27 21:02+0100\n" "Last-Translator: Roman Paholik <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" "Language: sk\n" @@ -71,17 +71,17 @@ msgid "Size:" msgstr "Veľkosť:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, v kategórii %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "v kategórii %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sl/milou.po new/milou-5.11.95/po/sl/milou.po --- old/milou-5.11.5/po/sl/milou.po 2018-01-02 13:42:34.272680170 +0100 +++ new/milou-5.11.95/po/sl/milou.po 2018-01-15 14:35:44.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. # -# Andrej Mernik <[email protected]>, 2014, 2017. +# Andrej Mernik <[email protected]>, 2014, 2017, 2018. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-03-31 21:26+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2018-01-11 21:09+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" "Language: sl\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Velikost:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" -msgstr "" +msgstr "%1, v kategoriji %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" -msgstr "" +msgstr "v kategoriji %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sr/milou.po new/milou-5.11.95/po/sr/milou.po --- old/milou-5.11.5/po/sr/milou.po 2018-01-02 13:42:37.188699549 +0100 +++ new/milou-5.11.95/po/sr/milou.po 2018-01-15 14:35:45.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-11-04 20:03+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Велична:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, у категорији %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "у категорији %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sr@ijekavian/milou.po new/milou-5.11.95/po/sr@ijekavian/milou.po --- old/milou-5.11.5/po/sr@ijekavian/milou.po 2018-01-02 13:42:38.676709438 +0100 +++ new/milou-5.11.95/po/sr@ijekavian/milou.po 2018-01-15 14:35:45.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-11-04 20:03+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Велична:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, у категорији %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "у категорији %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sr@ijekavianlatin/milou.po new/milou-5.11.95/po/sr@ijekavianlatin/milou.po --- old/milou-5.11.5/po/sr@ijekavianlatin/milou.po 2018-01-02 13:42:40.096718751 +0100 +++ new/milou-5.11.95/po/sr@ijekavianlatin/milou.po 2018-01-15 14:35:45.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-11-04 20:03+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Velična:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, u kategoriji %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "u kategoriji %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sr@latin/milou.po new/milou-5.11.95/po/sr@latin/milou.po --- old/milou-5.11.5/po/sr@latin/milou.po 2018-01-02 13:42:40.512721467 +0100 +++ new/milou-5.11.95/po/sr@latin/milou.po 2018-01-15 14:35:46.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-11-04 20:03+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" @@ -74,17 +74,17 @@ msgid "Size:" msgstr "Velična:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, u kategoriji %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "u kategoriji %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/sv/milou.po new/milou-5.11.95/po/sv/milou.po --- old/milou-5.11.5/po/sv/milou.po 2018-01-02 13:42:41.620728705 +0100 +++ new/milou-5.11.95/po/sv/milou.po 2018-01-15 14:35:46.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-09-13 19:00+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Storlek:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, i kategori %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "i kategori %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/tr/milou.po new/milou-5.11.95/po/tr/milou.po --- old/milou-5.11.5/po/tr/milou.po 2018-01-02 13:42:46.968763638 +0100 +++ new/milou-5.11.95/po/tr/milou.po 2018-01-15 14:35:48.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-10-04 12:07+0000\n" "Last-Translator: Kaan <[email protected]>\n" "Language-Team: Turkish <[email protected]>\n" @@ -73,17 +73,17 @@ msgid "Size:" msgstr "Boyut:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%2 kategorisi içinde, %1" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "%1 kategorisi içinde" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/uk/milou.po new/milou-5.11.95/po/uk/milou.po --- old/milou-5.11.5/po/uk/milou.po 2018-01-02 13:42:50.148784409 +0100 +++ new/milou-5.11.95/po/uk/milou.po 2018-01-15 14:35:49.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: milou\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" "PO-Revision-Date: 2017-09-13 17:53+0200\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" @@ -76,17 +76,17 @@ msgid "Size:" msgstr "Розмір:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1, у категорії %2" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "у категорії %1" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/zh_CN/milou.po new/milou-5.11.95/po/zh_CN/milou.po --- old/milou-5.11.5/po/zh_CN/milou.po 2018-01-02 13:42:54.780814665 +0100 +++ new/milou-5.11.95/po/zh_CN/milou.po 2018-01-15 14:35:51.000000000 +0100 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" -"PO-Revision-Date: 2017-12-31 12:59-0500\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\n" +"PO-Revision-Date: 2018-01-08 17:58-0500\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -19,7 +19,7 @@ "X-Generator: crowdin.com\n" "X-Crowdin-Project: kdeorg\n" "X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: /kf5-stable/messages/kde-workspace/milou.pot\n" +"X-Crowdin-File: /kf5-trunk/messages/kde-workspace/milou.pot\n" #: previews/audioplugin.cpp:59 #, kde-format @@ -77,17 +77,17 @@ msgid "Size:" msgstr "大小:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "%1,在类别 %2 中" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "在类别 %1 中" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, 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.11.5/po/zh_CN/plasma_applet_org.kde.milou.po new/milou-5.11.95/po/zh_CN/plasma_applet_org.kde.milou.po --- old/milou-5.11.5/po/zh_CN/plasma_applet_org.kde.milou.po 2018-01-02 13:42:54.776814639 +0100 +++ new/milou-5.11.95/po/zh_CN/plasma_applet_org.kde.milou.po 2018-01-15 14:35:51.000000000 +0100 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:21+0100\n" -"PO-Revision-Date: 2017-12-31 12:59-0500\n" +"PO-Revision-Date: 2018-01-08 17:59-0500\n" "Last-Translator: guoyunhebrave <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -18,7 +18,7 @@ "X-Generator: crowdin.com\n" "X-Crowdin-Project: kdeorg\n" "X-Crowdin-Language: zh-CN\n" -"X-Crowdin-File: /kf5-stable/messages/kde-workspace/plasma_applet_org.kde." +"X-Crowdin-File: /kf5-trunk/messages/kde-workspace/plasma_applet_org.kde." "milou.pot\n" #: applet.cpp:69 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/milou-5.11.5/po/zh_TW/milou.po new/milou-5.11.95/po/zh_TW/milou.po --- old/milou-5.11.5/po/zh_TW/milou.po 2018-01-02 13:42:56.756827572 +0100 +++ new/milou-5.11.95/po/zh_TW/milou.po 2018-01-15 14:35:51.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-11-01 05:07+0100\n" +"POT-Creation-Date: 2017-12-04 03:13+0100\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,17 +74,17 @@ msgid "Size:" msgstr "大小:" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:56 #, kde-format msgid "%1, in category %2" msgstr "" -#: qml/ResultDelegate.qml:50 +#: qml/ResultDelegate.qml:58 #, kde-format msgid "in category %1" msgstr "" -#: qml/ResultDelegate.qml:240 +#: qml/ResultDelegate.qml:253 #, kde-format msgctxt "" "placeholder is action e.g. run in terminal, in parenthesis is shortcut"
