Hello community,

here is the log from the commit of package powerdevil5 for openSUSE:Factory 
checked in at 2020-07-29 17:19:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/powerdevil5 (Old)
 and      /work/SRC/openSUSE:Factory/.powerdevil5.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "powerdevil5"

Wed Jul 29 17:19:35 2020 rev:104 rq:823264 version:5.19.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/powerdevil5/powerdevil5.changes  2020-07-10 
14:12:33.959467295 +0200
+++ /work/SRC/openSUSE:Factory/.powerdevil5.new.3592/powerdevil5.changes        
2020-07-29 17:20:07.904543228 +0200
@@ -1,0 +2,18 @@
+Tue Jul 28 13:45:52 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.19.4
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/plasma-5.19.4
+- Changes since 5.19.3:
+  * Split args in RunScript again
+- Drop patches, now upstream:
+  * 0001-Split-args-in-RunScript-again.patch
+
+-------------------------------------------------------------------
+Thu Jul 23 18:38:20 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Add patch to restore behaviour of RunScript (boo#1173763):
+  * 0001-Split-args-in-RunScript-again.patch
+
+-------------------------------------------------------------------

Old:
----
  powerdevil-5.19.3.tar.xz
  powerdevil-5.19.3.tar.xz.sig

New:
----
  powerdevil-5.19.4.tar.xz
  powerdevil-5.19.4.tar.xz.sig

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

Other differences:
------------------
++++++ powerdevil5.spec ++++++
--- /var/tmp/diff_new_pack.TsN5vP/_old  2020-07-29 17:20:08.784543946 +0200
+++ /var/tmp/diff_new_pack.TsN5vP/_new  2020-07-29 17:20:08.788543950 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           powerdevil5
-Version:        5.19.3
+Version:        5.19.4
 Release:        0
 # Full Plasma 5 version (e.g. 5.8.95)
 %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}


++++++ powerdevil-5.19.3.tar.xz -> powerdevil-5.19.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/CMakeLists.txt 
new/powerdevil-5.19.4/CMakeLists.txt
--- old/powerdevil-5.19.3/CMakeLists.txt        2020-07-07 13:24:08.000000000 
+0200
+++ new/powerdevil-5.19.4/CMakeLists.txt        2020-07-28 13:08:46.000000000 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(PowerDevil)
-set(PROJECT_VERSION "5.19.3")
+set(PROJECT_VERSION "5.19.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 set(QT_MIN_VERSION "5.14.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/daemon/actions/bundled/runscript.cpp 
new/powerdevil-5.19.4/daemon/actions/bundled/runscript.cpp
--- old/powerdevil-5.19.3/daemon/actions/bundled/runscript.cpp  2020-07-07 
13:23:34.000000000 +0200
+++ new/powerdevil-5.19.4/daemon/actions/bundled/runscript.cpp  2020-07-28 
13:08:16.000000000 +0200
@@ -18,6 +18,7 @@
  ***************************************************************************/
 
 #include "runscript.h"
+#include "powerdevil_debug.h"
 
 #include <QProcess>
 
@@ -41,7 +42,7 @@
 void RunScript::onProfileUnload()
 {
     if (m_scriptPhase == 1) {
-        QProcess::startDetached(m_scriptCommand, QStringList());
+        runCommand();
     }
 }
 
@@ -53,13 +54,13 @@
 void RunScript::onIdleTimeout(int msec)
 {
     Q_UNUSED(msec);
-    QProcess::startDetached(m_scriptCommand, QStringList());
+    runCommand();
 }
 
 void RunScript::onProfileLoad()
 {
     if (m_scriptPhase == 0) {
-        QProcess::startDetached(m_scriptCommand, QStringList());
+        runCommand();
     }
 }
 
@@ -84,5 +85,29 @@
     return true;
 }
 
+void RunScript::runCommand()
+{
+    bool success;
+
+#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
+    QStringList args = QProcess::splitCommand(m_scriptCommand);
+    if (args.isEmpty()) {
+        qCWarning(POWERDEVIL) << "Empty command?";
+        return;
+    }
+
+    QProcess process;
+    process.setProgram(args.takeFirst());
+    process.setArguments(args);
+    success = process.startDetached();
+#else
+    success = QProcess::startDetached(m_scriptCommand);
+#endif
+
+    if (!success) {
+        qCWarning(POWERDEVIL) << "Failed to run" << m_scriptCommand;
+    }
+}
+
 }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/daemon/actions/bundled/runscript.h 
new/powerdevil-5.19.4/daemon/actions/bundled/runscript.h
--- old/powerdevil-5.19.3/daemon/actions/bundled/runscript.h    2020-07-07 
13:23:34.000000000 +0200
+++ new/powerdevil-5.19.4/daemon/actions/bundled/runscript.h    2020-07-28 
13:08:16.000000000 +0200
@@ -47,6 +47,7 @@
     bool loadAction(const KConfigGroup& config) override;
 
 private:
+    void runCommand();
     int m_scriptPhase;
     QString m_scriptCommand;
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/da/powerdevil.po 
new/powerdevil-5.19.4/po/da/powerdevil.po
--- old/powerdevil-5.19.3/po/da/powerdevil.po   2020-07-07 13:23:44.000000000 
+0200
+++ new/powerdevil-5.19.4/po/da/powerdevil.po   2020-07-28 13:08:20.000000000 
+0200
@@ -7,14 +7,14 @@
 "Project-Id-Version: powerdevil\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-05-12 04:02+0200\n"
-"PO-Revision-Date: 2020-01-19 16:08+0100\n"
+"PO-Revision-Date: 2020-07-21 17:25+0200\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
 "Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 20.04.2\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #, kde-format
@@ -88,13 +88,11 @@
 msgstr "Strøm fra"
 
 #: actions/bundled/handlebuttonevents.cpp:77
-#, fuzzy, kde-format
-#| msgctxt "@action:inmenu Global shortcut"
-#| msgid "Power Off"
+#, kde-format
 msgctxt ""
 "@action:inmenu Global shortcut, used for long presses of the power button"
 msgid "Power Down"
-msgstr "Strøm fra"
+msgstr "Luk ned"
 
 #: actions/bundled/handlebuttoneventsconfig.cpp:87
 #, kde-format
@@ -320,7 +318,7 @@
 #: powerdevilapp.cpp:213
 #, kde-format
 msgid "Replace an existing instance"
-msgstr ""
+msgstr "Erstat en eksisterende instans"
 
 #: powerdevilcore.cpp:398 powerdevilcore.cpp:410
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/po/fi/powerdevilactivitiesconfig.po 
new/powerdevil-5.19.4/po/fi/powerdevilactivitiesconfig.po
--- old/powerdevil-5.19.3/po/fi/powerdevilactivitiesconfig.po   2020-07-07 
13:23:46.000000000 +0200
+++ new/powerdevil-5.19.4/po/fi/powerdevilactivitiesconfig.po   2020-07-28 
13:08:23.000000000 +0200
@@ -1,7 +1,7 @@
 # Copyright © 2011 This_file_is_part_of_KDE
 # This file is distributed under the same license as the kde-workspace package.
 # Lasse Liehu <[email protected]>, 2011, 2015, 2016.
-# Tommi Nieminen <[email protected]>, 2012, 2019.
+# Tommi Nieminen <[email protected]>, 2012, 2019, 2020.
 #
 # KDE Finnish translation sprint participants:
 # Author: Artnay
@@ -19,7 +19,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-POT-Import-Date: 2012-12-01 22:22:38+0000\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/fi/powerdevilglobalconfig.po 
new/powerdevil-5.19.4/po/fi/powerdevilglobalconfig.po
--- old/powerdevil-5.19.3/po/fi/powerdevilglobalconfig.po       2020-07-07 
13:23:46.000000000 +0200
+++ new/powerdevil-5.19.4/po/fi/powerdevilglobalconfig.po       2020-07-28 
13:08:23.000000000 +0200
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the kde-workspace package.
 # Jorma Karvonen <[email protected]>, 2010-2011.
 # Lasse Liehu <[email protected]>, 2011, 2012, 2013, 2014, 2015, 2016.
-# Tommi Nieminen <[email protected]>, 2012, 2017, 2019.
+# Tommi Nieminen <[email protected]>, 2012, 2017, 2019, 2020.
 #
 # KDE Finnish translation sprint participants:
 msgid ""
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-POT-Import-Date: 2012-12-01 22:22:38+0000\n"
-"X-Generator: Lokalize 18.12.3\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/fi/powerdevilprofilesconfig.po 
new/powerdevil-5.19.4/po/fi/powerdevilprofilesconfig.po
--- old/powerdevil-5.19.3/po/fi/powerdevilprofilesconfig.po     2020-07-07 
13:23:46.000000000 +0200
+++ new/powerdevil-5.19.4/po/fi/powerdevilprofilesconfig.po     2020-07-28 
13:08:23.000000000 +0200
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the kde-workspace package.
 # Jorma Karvonen <[email protected]>, 2010-2011.
 # Lasse Liehu <[email protected]>, 2011.
-# Tommi Nieminen <[email protected]>, 2012.
+# Tommi Nieminen <[email protected]>, 2012, 2020.
 #
 # KDE Finnish translation sprint participants:
 msgid ""
@@ -11,26 +11,27 @@
 "Project-Id-Version: powerdevilprofilesconfig\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-11-25 03:33+0100\n"
-"PO-Revision-Date: 2013-01-20 20:02:44+0000\n"
+"PO-Revision-Date: 2020-07-21 15:49+0300\n"
 "Last-Translator: Tommi Nieminen <[email protected]>\n"
-"Language-Team: Finnish <[email protected]>\n"
+"Language-Team: Finnish <[email protected]>\n"
 "Language: fi\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-POT-Import-Date: 2012-12-01 22:22:38+0000\n"
-"X-Generator: MediaWiki 1.21alpha (963ddae); Translate 2012-11-08\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "Jorma Karvonen, Lasse Liehu"
+msgstr "Jorma Karvonen, Lasse Liehu, Tommi Nieminen"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
-msgstr "[email protected], [email protected]"
+msgstr ""
+"[email protected], [email protected], [email protected]"
 
 #: EditPage.cpp:192
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/po/fr/powerdevilactivitiesconfig.po 
new/powerdevil-5.19.4/po/fr/powerdevilactivitiesconfig.po
--- old/powerdevil-5.19.3/po/fr/powerdevilactivitiesconfig.po   2020-07-07 
13:23:46.000000000 +0200
+++ new/powerdevil-5.19.4/po/fr/powerdevilactivitiesconfig.po   2020-07-28 
13:08:23.000000000 +0200
@@ -1,7 +1,7 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Ludovic Grossard <[email protected]>, 2012, 2015.
-# xavier <[email protected]>, 2012, 2013.
+# xavier <[email protected]>, 2012, 2013, 2020.
 # Vincent Pinon <[email protected]>, 2016.
 # Simon Depiets <[email protected]>, 2019.
 #
@@ -10,15 +10,15 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-11-10 03:33+0100\n"
-"PO-Revision-Date: 2019-03-08 16:00+0800\n"
-"Last-Translator: Simon Depiets <[email protected]>\n"
-"Language-Team: French <[email protected]>\n"
+"PO-Revision-Date: 2020-07-07 20:14+0200\n"
+"Last-Translator: Xavier Besnard <[email protected]>\n"
+"Language-Team: French <[email protected]>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 20.04.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -26,12 +26,13 @@
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "Ludovic Grossard, Vincent Pinon, Simon Depiets"
+msgstr "Ludovic Grossard, Vincent Pinon, Simon Depiets, Xavier Besnard"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
-msgstr "[email protected], [email protected], [email protected]"
+msgstr ""
+"[email protected], [email protected], [email protected], [email protected]"
 
 #: activitypage.cpp:74
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/fr/powerdevilglobalconfig.po 
new/powerdevil-5.19.4/po/fr/powerdevilglobalconfig.po
--- old/powerdevil-5.19.3/po/fr/powerdevilglobalconfig.po       2020-07-07 
13:23:46.000000000 +0200
+++ new/powerdevil-5.19.4/po/fr/powerdevilglobalconfig.po       2020-07-28 
13:08:23.000000000 +0200
@@ -7,21 +7,22 @@
 # xavier <[email protected]>, 2013.
 # Vincent Pinon <[email protected]>, 2016, 2017.
 # Simon Depiets <[email protected]>, 2019.
+# Xavier Besnard <[email protected]>, 2020.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: powerdevil\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-10-02 03:35+0200\n"
-"PO-Revision-Date: 2019-03-06 13:16+0800\n"
-"Last-Translator: Simon Depiets <[email protected]>\n"
-"Language-Team: French <[email protected]>\n"
+"PO-Revision-Date: 2020-07-07 20:16+0200\n"
+"Last-Translator: Xavier Besnard <[email protected]>\n"
+"Language-Team: French <[email protected]>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 19.03.70\n"
+"X-Generator: Lokalize 20.04.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -29,12 +30,13 @@
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "Joëlle Cornavin, Vincent Pinon, Simon Depiets"
+msgstr "Joëlle Cornavin, Vincent Pinon, Simon Depiets, Xavier Besnard"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
-msgstr "[email protected], [email protected], [email protected]"
+msgstr ""
+"[email protected], [email protected], [email protected], [email protected]"
 
 #: GeneralPage.cpp:106
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/fr/powerdevilprofilesconfig.po 
new/powerdevil-5.19.4/po/fr/powerdevilprofilesconfig.po
--- old/powerdevil-5.19.3/po/fr/powerdevilprofilesconfig.po     2020-07-07 
13:23:46.000000000 +0200
+++ new/powerdevil-5.19.4/po/fr/powerdevilprofilesconfig.po     2020-07-28 
13:08:23.000000000 +0200
@@ -5,21 +5,22 @@
 # Sébastien Renard <[email protected]>, 2009.
 # Ludovic Grossard <[email protected]>, 2012.
 # xavier <[email protected]>, 2013.
+# Xavier Besnard <[email protected]>, 2020.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: powerdevil\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-11-25 03:33+0100\n"
-"PO-Revision-Date: 2013-04-25 17:50+0200\n"
-"Last-Translator: xavier <[email protected]>\n"
+"PO-Revision-Date: 2020-07-07 20:13+0200\n"
+"Last-Translator: Xavier Besnard <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 20.04.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -27,12 +28,12 @@
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
 msgid "Your names"
-msgstr "Joëlle Cornavin"
+msgstr "Joëlle Cornavin, Xavier Besnard"
 
 #, kde-format
 msgctxt "EMAIL OF TRANSLATORS"
 msgid "Your emails"
-msgstr "[email protected]"
+msgstr "[email protected], [email protected]"
 
 #: EditPage.cpp:192
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/po/it/powerdevilactivitiesconfig.po 
new/powerdevil-5.19.4/po/it/powerdevilactivitiesconfig.po
--- old/powerdevil-5.19.3/po/it/powerdevilactivitiesconfig.po   2020-07-07 
13:23:49.000000000 +0200
+++ new/powerdevil-5.19.4/po/it/powerdevilactivitiesconfig.po   2020-07-28 
13:08:26.000000000 +0200
@@ -1,7 +1,7 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Federico Zenith <[email protected]>, 2011.
-# Vincenzo Reale <[email protected]>, 2019.
+# Vincenzo Reale <[email protected]>, 2019, 2020.
 #
 msgid ""
 msgstr ""
@@ -16,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 18.12.2\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/it/powerdevilglobalconfig.po 
new/powerdevil-5.19.4/po/it/powerdevilglobalconfig.po
--- old/powerdevil-5.19.3/po/it/powerdevilglobalconfig.po       2020-07-07 
13:23:49.000000000 +0200
+++ new/powerdevil-5.19.4/po/it/powerdevilglobalconfig.po       2020-07-28 
13:08:26.000000000 +0200
@@ -1,7 +1,7 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
 # Marcello Anni <[email protected]>, 2011.
-# Vincenzo Reale <[email protected]>, 2015, 2019.
+# Vincenzo Reale <[email protected]>, 2015, 2019, 2020.
 #
 msgid ""
 msgstr ""
@@ -16,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 18.12.2\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/it/powerdevilprofilesconfig.po 
new/powerdevil-5.19.4/po/it/powerdevilprofilesconfig.po
--- old/powerdevil-5.19.3/po/it/powerdevilprofilesconfig.po     2020-07-07 
13:23:49.000000000 +0200
+++ new/powerdevil-5.19.4/po/it/powerdevilprofilesconfig.po     2020-07-28 
13:08:26.000000000 +0200
@@ -1,8 +1,9 @@
 # Copyright (C) YEAR This_file_is_part_of_KDE
 # This file is distributed under the same license as the PACKAGE package.
-#
 # Marcello Anni <[email protected]>, 2011.
 # Federico Zenith <[email protected]>, 2011.
+# Vincenzo Reale <[email protected]>, 2020.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: powerdevilprofilesconfig\n"
@@ -16,6 +17,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 20.04.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/po/zh_CN/libpowerdevilcommonconfig.po 
new/powerdevil-5.19.4/po/zh_CN/libpowerdevilcommonconfig.po
--- old/powerdevil-5.19.3/po/zh_CN/libpowerdevilcommonconfig.po 2020-07-07 
13:24:00.000000000 +0200
+++ new/powerdevil-5.19.4/po/zh_CN/libpowerdevilcommonconfig.po 2020-07-28 
13:08:38.000000000 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:26+0200\n"
-"PO-Revision-Date: 2020-06-24 08:01\n"
+"PO-Revision-Date: 2020-07-14 08:57\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/zh_CN/powerdevil.po 
new/powerdevil-5.19.4/po/zh_CN/powerdevil.po
--- old/powerdevil-5.19.3/po/zh_CN/powerdevil.po        2020-07-07 
13:24:00.000000000 +0200
+++ new/powerdevil-5.19.4/po/zh_CN/powerdevil.po        2020-07-28 
13:08:38.000000000 +0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-05-12 04:02+0200\n"
-"PO-Revision-Date: 2020-06-24 08:01\n"
+"PO-Revision-Date: 2020-07-14 08:57\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/po/zh_CN/powerdevilactivitiesconfig.po 
new/powerdevil-5.19.4/po/zh_CN/powerdevilactivitiesconfig.po
--- old/powerdevil-5.19.3/po/zh_CN/powerdevilactivitiesconfig.po        
2020-07-07 13:24:00.000000000 +0200
+++ new/powerdevil-5.19.4/po/zh_CN/powerdevilactivitiesconfig.po        
2020-07-28 13:08:38.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-11-10 03:33+0100\n"
-"PO-Revision-Date: 2020-06-24 08:01\n"
+"PO-Revision-Date: 2020-07-14 08:57\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerdevil-5.19.3/po/zh_CN/powerdevilglobalconfig.po 
new/powerdevil-5.19.4/po/zh_CN/powerdevilglobalconfig.po
--- old/powerdevil-5.19.3/po/zh_CN/powerdevilglobalconfig.po    2020-07-07 
13:24:00.000000000 +0200
+++ new/powerdevil-5.19.4/po/zh_CN/powerdevilglobalconfig.po    2020-07-28 
13:08:38.000000000 +0200
@@ -9,7 +9,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-10-02 03:35+0200\n"
-"PO-Revision-Date: 2020-06-24 08:01\n"
+"PO-Revision-Date: 2020-07-14 08:57\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/powerdevil-5.19.3/po/zh_CN/powerdevilprofilesconfig.po 
new/powerdevil-5.19.4/po/zh_CN/powerdevilprofilesconfig.po
--- old/powerdevil-5.19.3/po/zh_CN/powerdevilprofilesconfig.po  2020-07-07 
13:24:00.000000000 +0200
+++ new/powerdevil-5.19.4/po/zh_CN/powerdevilprofilesconfig.po  2020-07-28 
13:08:38.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-11-25 03:33+0100\n"
-"PO-Revision-Date: 2020-06-24 08:01\n"
+"PO-Revision-Date: 2020-07-14 08:57\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"


Reply via email to