Hello community,

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

Package is "libksysguard5"

Wed Jul 29 17:19:05 2020 rev:109 rq:823250 version:5.19.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes      
2020-07-10 14:11:56.939345703 +0200
+++ /work/SRC/openSUSE:Factory/.libksysguard5.new.3592/libksysguard5.changes    
2020-07-29 17:19:26.848509688 +0200
@@ -1,0 +2,12 @@
+Tue Jul 28 13:45:50 UTC 2020 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- 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:
+  * correctly replace spaces with nothing
+  * fix presets loading
+  * delete the face config ui when face gets switched (kde#423071)
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ libksysguard5.spec ++++++
--- /var/tmp/diff_new_pack.pmUhH0/_old  2020-07-29 17:19:27.604510305 +0200
+++ /var/tmp/diff_new_pack.pmUhH0/_new  2020-07-29 17:19:27.608510309 +0200
@@ -18,7 +18,7 @@
 
 %bcond_without lang
 Name:           libksysguard5
-Version:        5.19.3
+Version:        5.19.4
 Release:        0
 Summary:        Task management and system monitoring library
 License:        GPL-2.0-or-later

++++++ libksysguard-5.19.3.tar.xz -> libksysguard-5.19.4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/CMakeLists.txt 
new/libksysguard-5.19.4/CMakeLists.txt
--- old/libksysguard-5.19.3/CMakeLists.txt      2020-07-07 13:14:09.000000000 
+0200
+++ new/libksysguard-5.19.4/CMakeLists.txt      2020-07-28 12:59:08.000000000 
+0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.0)
 
 project(libksysguard)
-set(PROJECT_VERSION "5.19.3")
+set(PROJECT_VERSION "5.19.4")
 set(PROJECT_VERSION_MAJOR 5)
 
 # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/faces/SensorFaceController.cpp 
new/libksysguard-5.19.4/faces/SensorFaceController.cpp
--- old/libksysguard-5.19.3/faces/SensorFaceController.cpp      2020-07-07 
13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/SensorFaceController.cpp      2020-07-28 
12:58:42.000000000 +0200
@@ -105,7 +105,7 @@
         // TODO config
         QVariantMap config;
 
-        KConfigGroup configGroup(df.group("Config"));
+        KConfigGroup 
configGroup(KSharedConfig::openConfig(p.filePath("config", 
QStringLiteral("faceproperties"))), QStringLiteral("Config"));
 
         const QStringList keys = configGroup.keyList();
         for (const QString &key : keys) {
@@ -395,6 +395,10 @@
         d->compactRepresentation->deleteLater();
         d->fullRepresentation.clear();
     }
+    if (d->faceConfigUi) {
+        d->faceConfigUi->deleteLater();
+        d->faceConfigUi.clear();
+    }
 
     d->faceId = face;
 
@@ -418,7 +422,6 @@
     d->contextObj = new KLocalizedContext(d->engine);
     d->contextObj->setTranslationDomain(QLatin1String("ksysguard_face_") + 
face);
 
-    //TODO: should be in a different config file rather than metadata
     d->faceProperties = 
KConfigGroup(KSharedConfig::openConfig(d->facePackage.filePath("FaceProperties")),
 QStringLiteral("Config"));
 
     const QString xmlPath = d->facePackage.filePath("mainconfigxml");
@@ -480,10 +483,20 @@
         return d->faceConfigUi;
     }
 
+    const QString filePath = d->facePackage.filePath("ui", 
QStringLiteral("Config.qml"));
+
+    if (filePath.isEmpty()) {
+        return nullptr;
+    }
+
     d->faceConfigUi = 
d->createConfigUi(QStringLiteral(":/FaceDetailsConfig.qml"),
     {{QStringLiteral("controller"), QVariant::fromValue(this)},
-         {QStringLiteral("source"), d->facePackage.filePath("ui", 
QStringLiteral("Config.qml"))}});
+         {QStringLiteral("source"), filePath}});
 
+    if (d->faceConfigUi && !d->faceConfigUi->property("item").value<QQuickItem 
*>()) {
+        d->faceConfigUi->deleteLater();
+        d->faceConfigUi.clear();
+    }
     return d->faceConfigUi;
 }
 
@@ -628,7 +641,7 @@
 
 void SensorFaceController::savePreset()
 {
-    QString pluginName = QStringLiteral("org.kde.plasma.systemmonitor.") + 
title().simplified().replace(QLatin1Char(' '), QChar()).toLower();
+    QString pluginName = QStringLiteral("org.kde.plasma.systemmonitor.") + 
title().simplified().replace(QLatin1Char(' '), QStringLiteral("")).toLower();
     int suffix = 0;
 
     auto presetPackage = 
KPackage::PackageLoader::self()->loadPackage(QStringLiteral("Plasma/Applet"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/faces/facepackages/barchart/metadata.desktop 
new/libksysguard-5.19.4/faces/facepackages/barchart/metadata.desktop
--- old/libksysguard-5.19.3/faces/facepackages/barchart/metadata.desktop        
2020-07-07 13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/facepackages/barchart/metadata.desktop        
2020-07-28 12:58:42.000000000 +0200
@@ -7,6 +7,7 @@
 Name[es]=Gráfico de barras
 Name[et]=Tulpdiagramm
 Name[eu]=Barra-diagrama
+Name[fi]=Pylväskaavio
 Name[fr]=Histogramme
 Name[ia]=Diagramma a barra
 Name[it]=Grafico a barre
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/faces/facepackages/linechart/metadata.desktop 
new/libksysguard-5.19.4/faces/facepackages/linechart/metadata.desktop
--- old/libksysguard-5.19.3/faces/facepackages/linechart/metadata.desktop       
2020-07-07 13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/facepackages/linechart/metadata.desktop       
2020-07-28 12:58:42.000000000 +0200
@@ -7,6 +7,7 @@
 Name[es]=Gráfico de líneas
 Name[et]=Joondiagramm
 Name[eu]=Lerro-diagrama
+Name[fi]=Viivakaavio
 Name[fr]=Diagramme en ligne
 Name[ia]=Diagramma a linea
 Name[it]=Grafico lineare
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/faces/facepackages/piechart/metadata.desktop 
new/libksysguard-5.19.4/faces/facepackages/piechart/metadata.desktop
--- old/libksysguard-5.19.3/faces/facepackages/piechart/metadata.desktop        
2020-07-07 13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/facepackages/piechart/metadata.desktop        
2020-07-28 12:58:42.000000000 +0200
@@ -7,6 +7,7 @@
 Name[es]=Gráfico de tarta
 Name[et]=Sektordiagramm
 Name[eu]=Diagrama zirkularra
+Name[fi]=Piirakkakaavio
 Name[fr]=Diagramme en secteur
 Name[ia]=Diagramma a torta
 Name[it]=Grafico a torta
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/faces/facepackages/textonly/metadata.desktop 
new/libksysguard-5.19.4/faces/facepackages/textonly/metadata.desktop
--- old/libksysguard-5.19.3/faces/facepackages/textonly/metadata.desktop        
2020-07-07 13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/facepackages/textonly/metadata.desktop        
2020-07-28 12:58:42.000000000 +0200
@@ -7,6 +7,7 @@
 Name[es]=Solo texto
 Name[et]=Ainult tekst
 Name[eu]=Testua soilik
+Name[fi]=Vain teksti
 Name[fr]=Texte seul
 Name[ia]=Solmente texto
 Name[it]=Solo testo
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/faces/packagestructure/sensorface-packagestructure.json 
new/libksysguard-5.19.4/faces/packagestructure/sensorface-packagestructure.json
--- 
old/libksysguard-5.19.3/faces/packagestructure/sensorface-packagestructure.json 
    2020-07-07 13:13:40.000000000 +0200
+++ 
new/libksysguard-5.19.4/faces/packagestructure/sensorface-packagestructure.json 
    2020-07-28 12:58:42.000000000 +0200
@@ -10,6 +10,7 @@
                 "Name[es]": "Marco Martin",
                 "Name[et]": "Marco Martin",
                 "Name[eu]": "Marco Martin",
+                "Name[fi]": "Marco Martin",
                 "Name[fr]": "Marco Martin",
                 "Name[ia]": "Marco Martin",
                 "Name[it]": "Marco Martin",
@@ -28,10 +29,12 @@
                 "Name": "Aaron Seigo",
                 "Name[ca]": "Aaron Seigo",
                 "Name[cs]": "Aaron Seigo",
+                "Name[da]": "Aaron Seigo",
                 "Name[en_GB]": "Aaron Seigo",
                 "Name[es]": "Aaron Seigo",
                 "Name[et]": "Aaron Seigo",
                 "Name[eu]": "Aaron Seigo",
+                "Name[fi]": "Aaron Seigo",
                 "Name[fr]": "Aaron Seigo",
                 "Name[ia]": "Aaron Seigo",
                 "Name[it]": "Aaron Seigo",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/faces/systemmonitor-faces.knsrc 
new/libksysguard-5.19.4/faces/systemmonitor-faces.knsrc
--- old/libksysguard-5.19.3/faces/systemmonitor-faces.knsrc     2020-07-07 
13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/systemmonitor-faces.knsrc     2020-07-28 
12:58:42.000000000 +0200
@@ -6,6 +6,7 @@
 Name[es]=Estilos de visor del sensor del monitor del sistema
 Name[et]=Süsteemi jälgija sensori esitusstiilid
 Name[eu]=Sistema gainbegiratzeko sentsorea azaltzeko estiloa
+Name[fi]=Järjestelmänvalvonnan anturien näyttötyylit
 Name[fr]=Styles d'affichage pour le senseur de surveillance du système
 Name[it]=Stili di visualizzazione dei sensori di monitoraggio del sistema
 Name[ko]=시스템 모니터 센서 표시 스타일
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/faces/systemmonitor-presets.knsrc 
new/libksysguard-5.19.4/faces/systemmonitor-presets.knsrc
--- old/libksysguard-5.19.3/faces/systemmonitor-presets.knsrc   2020-07-07 
13:13:40.000000000 +0200
+++ new/libksysguard-5.19.4/faces/systemmonitor-presets.knsrc   2020-07-28 
12:58:42.000000000 +0200
@@ -6,6 +6,7 @@
 Name[es]=Ajustes automáticos del sensor del monitor del sistema
 Name[et]=Süsteemi jälgija sensori valmisvalikud
 Name[eu]=Sistema gainbegiratzeko sentsorearen aurre-zarpenak
+Name[fi]=Järjestelmänvalvonnan anturien esiasetukset
 Name[fr]=Préréglages du senseur de surveillance du système
 Name[it]=Preimpostazioni dei sensori di monitoraggio del sistema
 Name[ko]=시스템 모니터 센서 사전 설정
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/cs/processcore.po 
new/libksysguard-5.19.4/po/cs/processcore.po
--- old/libksysguard-5.19.3/po/cs/processcore.po        2020-07-07 
13:13:50.000000000 +0200
+++ new/libksysguard-5.19.4/po/cs/processcore.po        2020-07-28 
12:58:47.000000000 +0200
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Lokalize 20.04.0\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #: extended_process_list.cpp:94
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/da/KSysGuardSensorFaces.po 
new/libksysguard-5.19.4/po/da/KSysGuardSensorFaces.po
--- old/libksysguard-5.19.3/po/da/KSysGuardSensorFaces.po       1970-01-01 
01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/da/KSysGuardSensorFaces.po       2020-07-28 
12:58:47.000000000 +0200
@@ -0,0 +1,244 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+#
+# Martin Schlander <mschlan...@opensuse.org>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-06-19 06:47+0200\n"
+"PO-Revision-Date: 2020-07-22 12:29+0200\n"
+"Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
+"Language-Team: Danish <kde-i18n-...@kde.org>\n"
+"Language: da\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 20.04.2\n"
+
+#: ConfigAppearance.qml:103
+#, kde-format
+msgid "Presets:"
+msgstr "Forudindstillinger:"
+
+#: ConfigAppearance.qml:107
+#, kde-format
+msgid "Load Preset..."
+msgstr ""
+
+#: ConfigAppearance.qml:112
+#, kde-format
+msgid "Get new presets..."
+msgstr ""
+
+#: ConfigAppearance.qml:124
+#, kde-format
+msgid "Save Settings As Preset"
+msgstr ""
+
+#: ConfigAppearance.qml:136
+#, kde-format
+msgid "Title:"
+msgstr ""
+
+#: ConfigAppearance.qml:140
+#, kde-format
+msgid "Display Style:"
+msgstr ""
+
+#: ConfigAppearance.qml:160
+#, kde-format
+msgid "Get New Display Styles..."
+msgstr ""
+
+#: ConfigSensors.qml:106 UsedSensorsView.qml:72
+#, kde-format
+msgid "Remove"
+msgstr ""
+
+#: ConfigSensors.qml:145
+#, kde-format
+msgid "Total Sensor:"
+msgstr ""
+
+#: ConfigSensors.qml:149
+#, kde-format
+msgid "Drop Sensor Here"
+msgstr ""
+
+#: ConfigSensors.qml:186
+#, kde-format
+msgid "Chart Sensors"
+msgstr ""
+
+#: ConfigSensors.qml:195
+#, kde-format
+msgid "Text Only Sensors"
+msgstr ""
+
+#: ConfigSensors.qml:219
+#, kde-format
+msgid "All Sensors"
+msgstr ""
+
+#: facepackages/barchart/contents/ui/Config.qml:41
+#: facepackages/linechart/contents/ui/Config.qml:50
+#: facepackages/piechart/contents/ui/Config.qml:42
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr ""
+
+#: facepackages/barchart/contents/ui/Config.qml:45
+#, kde-format
+msgid "Stacked Bars"
+msgstr ""
+
+#: facepackages/barchart/contents/ui/Config.qml:49
+#: facepackages/piechart/contents/ui/Config.qml:77
+#, kde-format
+msgid "Automatic Data Range"
+msgstr ""
+
+#: facepackages/barchart/contents/ui/Config.qml:56
+#: facepackages/piechart/contents/ui/Config.qml:82
+#, kde-format
+msgid "From:"
+msgstr ""
+
+#: facepackages/barchart/contents/ui/Config.qml:64
+#: facepackages/piechart/contents/ui/Config.qml:90
+#, kde-format
+msgid "To:"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:45
+#, kde-format
+msgid "Appearance"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:54
+#, kde-format
+msgid "Stacked Charts"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:58
+#, kde-format
+msgid "Smooth Lines"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:62
+#, kde-format
+msgid "Fill Opacity:"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:68
+#, kde-format
+msgid "Data Ranges"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:73
+#, kde-format
+msgid "Automatic Y Data Range"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:77
+#, kde-format
+msgid "From (Y):"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:88
+#, kde-format
+msgid "To (Y):"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:93
+#, kde-format
+msgid "Automatic X Data Range"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:100
+#, kde-format
+msgid "From (X):"
+msgstr ""
+
+#: facepackages/linechart/contents/ui/Config.qml:108
+#, kde-format
+msgid "To (X):"
+msgstr ""
+
+#: facepackages/piechart/contents/ui/Config.qml:46
+#, kde-format
+msgid "Start from Angle"
+msgstr ""
+
+#: facepackages/piechart/contents/ui/Config.qml:51
+#, kde-format
+msgctxt "angle degrees"
+msgid "%1°"
+msgstr ""
+
+#: facepackages/piechart/contents/ui/Config.qml:54
+#: facepackages/piechart/contents/ui/Config.qml:67
+#, kde-format
+msgctxt "angle degrees"
+msgid "°"
+msgstr ""
+
+#: facepackages/piechart/contents/ui/Config.qml:59
+#, kde-format
+msgid "Total Pie Angle"
+msgstr ""
+
+#: facepackages/piechart/contents/ui/Config.qml:64
+#, kde-format
+msgctxt "angle"
+msgid "%1°"
+msgstr ""
+
+#: facepackages/piechart/contents/ui/Config.qml:72
+#, kde-format
+msgid "Rounded Lines"
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:35
+#, kde-format
+msgid "User Interface"
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:37
+#, kde-format
+msgid ""
+"The compact representation of the sensors plasmoid when collapsed, for "
+"instance in a panel."
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:40
+#, kde-format
+msgid "The representation of the plasmoid when it's fully expanded."
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:43
+#, kde-format
+msgid "The optional configuration page for this face."
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:45
+#, kde-format
+msgid "Configuration support"
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:46
+#, kde-format
+msgid "KConfigXT xml file for face-specific configuration options."
+msgstr ""
+
+#: packagestructure/sensorfacepackage.cpp:48
+#, kde-format
+msgid "The configuration file that describes face properties and capabilities."
+msgstr ""
+
+#: UsedSensorsView.qml:135
+#, kde-format
+msgid "Drop Sensors Here"
+msgstr ""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/da/ksysguard_face_org.kde.ksysguard.barchart.po 
new/libksysguard-5.19.4/po/da/ksysguard_face_org.kde.ksysguard.barchart.po
--- old/libksysguard-5.19.3/po/da/ksysguard_face_org.kde.ksysguard.barchart.po  
1970-01-01 01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/da/ksysguard_face_org.kde.ksysguard.barchart.po  
2020-07-28 12:58:47.000000000 +0200
@@ -0,0 +1,43 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+#
+# Martin Schlander <mschlan...@opensuse.org>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-05-14 03:59+0200\n"
+"PO-Revision-Date: 2020-07-22 12:31+0200\n"
+"Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
+"Language-Team: Danish <kde-i18n-...@kde.org>\n"
+"Language: da\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 20.04.2\n"
+
+#: contents/ui/Config.qml:41
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr ""
+
+#: contents/ui/Config.qml:45
+#, kde-format
+msgid "Stacked Bars"
+msgstr ""
+
+#: contents/ui/Config.qml:49
+#, kde-format
+msgid "Automatic Data Range"
+msgstr ""
+
+#: contents/ui/Config.qml:56
+#, kde-format
+msgid "From:"
+msgstr ""
+
+#: contents/ui/Config.qml:64
+#, kde-format
+msgid "To:"
+msgstr "Til:"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/da/ksysguard_face_org.kde.ksysguard.linechart.po 
new/libksysguard-5.19.4/po/da/ksysguard_face_org.kde.ksysguard.linechart.po
--- old/libksysguard-5.19.3/po/da/ksysguard_face_org.kde.ksysguard.linechart.po 
1970-01-01 01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/da/ksysguard_face_org.kde.ksysguard.linechart.po 
2020-07-28 12:58:47.000000000 +0200
@@ -0,0 +1,78 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+#
+# Martin Schlander <mschlan...@opensuse.org>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-05-14 03:59+0200\n"
+"PO-Revision-Date: 2020-07-22 12:30+0200\n"
+"Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
+"Language-Team: Danish <kde-i18n-...@kde.org>\n"
+"Language: da\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 20.04.2\n"
+
+#: contents/ui/Config.qml:45
+#, kde-format
+msgid "Appearance"
+msgstr "Udseende"
+
+#: contents/ui/Config.qml:50
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr ""
+
+#: contents/ui/Config.qml:54
+#, kde-format
+msgid "Stacked Charts"
+msgstr ""
+
+#: contents/ui/Config.qml:58
+#, kde-format
+msgid "Smooth Lines"
+msgstr ""
+
+#: contents/ui/Config.qml:62
+#, kde-format
+msgid "Fill Opacity:"
+msgstr ""
+
+#: contents/ui/Config.qml:68
+#, kde-format
+msgid "Data Ranges"
+msgstr ""
+
+#: contents/ui/Config.qml:73
+#, kde-format
+msgid "Automatic Y Data Range"
+msgstr ""
+
+#: contents/ui/Config.qml:77
+#, kde-format
+msgid "From (Y):"
+msgstr ""
+
+#: contents/ui/Config.qml:88
+#, kde-format
+msgid "To (Y):"
+msgstr ""
+
+#: contents/ui/Config.qml:93
+#, kde-format
+msgid "Automatic X Data Range"
+msgstr ""
+
+#: contents/ui/Config.qml:100
+#, kde-format
+msgid "From (X):"
+msgstr ""
+
+#: contents/ui/Config.qml:108
+#, kde-format
+msgid "To (X):"
+msgstr ""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/da/ksysguard_face_org.kde.ksysguard.piechart.po 
new/libksysguard-5.19.4/po/da/ksysguard_face_org.kde.ksysguard.piechart.po
--- old/libksysguard-5.19.3/po/da/ksysguard_face_org.kde.ksysguard.piechart.po  
1970-01-01 01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/da/ksysguard_face_org.kde.ksysguard.piechart.po  
2020-07-28 12:58:47.000000000 +0200
@@ -0,0 +1,71 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+#
+# Martin Schlander <mschlan...@opensuse.org>, 2020.
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-05-14 03:59+0200\n"
+"PO-Revision-Date: 2020-07-22 12:31+0200\n"
+"Last-Translator: Martin Schlander <mschlan...@opensuse.org>\n"
+"Language-Team: Danish <kde-i18n-...@kde.org>\n"
+"Language: da\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 20.04.2\n"
+
+#: contents/ui/Config.qml:42
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr "Vis sensorforklaring"
+
+#: contents/ui/Config.qml:46
+#, kde-format
+msgid "Start from Angle"
+msgstr ""
+
+#: contents/ui/Config.qml:51
+#, kde-format
+msgctxt "angle degrees"
+msgid "%1°"
+msgstr ""
+
+#: contents/ui/Config.qml:54 contents/ui/Config.qml:67
+#, kde-format
+msgctxt "angle degrees"
+msgid "°"
+msgstr ""
+
+#: contents/ui/Config.qml:59
+#, kde-format
+msgid "Total Pie Angle"
+msgstr ""
+
+#: contents/ui/Config.qml:64
+#, kde-format
+msgctxt "angle"
+msgid "%1°"
+msgstr ""
+
+#: contents/ui/Config.qml:72
+#, kde-format
+msgid "Rounded Lines"
+msgstr ""
+
+#: contents/ui/Config.qml:77
+#, kde-format
+msgid "Automatic Data Range"
+msgstr ""
+
+#: contents/ui/Config.qml:82
+#, kde-format
+msgid "From:"
+msgstr ""
+
+#: contents/ui/Config.qml:90
+#, kde-format
+msgid "To:"
+msgstr ""
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/fi/KSysGuardSensorFaces.po 
new/libksysguard-5.19.4/po/fi/KSysGuardSensorFaces.po
--- old/libksysguard-5.19.3/po/fi/KSysGuardSensorFaces.po       1970-01-01 
01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/fi/KSysGuardSensorFaces.po       2020-07-28 
12:58:50.000000000 +0200
@@ -0,0 +1,244 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+# Tommi Nieminen <transla...@legisign.org>, 2020.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-06-19 06:47+0200\n"
+"PO-Revision-Date: 2020-07-21 20:02+0300\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\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-Generator: Lokalize 20.04.3\n"
+
+#: ConfigAppearance.qml:103
+#, kde-format
+msgid "Presets:"
+msgstr "Esiasetukset:"
+
+#: ConfigAppearance.qml:107
+#, kde-format
+msgid "Load Preset..."
+msgstr "Lataa esiasetus…"
+
+#: ConfigAppearance.qml:112
+#, kde-format
+msgid "Get new presets..."
+msgstr "Hae uusia esiasetuksia…"
+
+#: ConfigAppearance.qml:124
+#, kde-format
+msgid "Save Settings As Preset"
+msgstr "Tallenna asetukset esiasetukseksi"
+
+#: ConfigAppearance.qml:136
+#, kde-format
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: ConfigAppearance.qml:140
+#, kde-format
+msgid "Display Style:"
+msgstr "Näyttötyyli:"
+
+#: ConfigAppearance.qml:160
+#, kde-format
+msgid "Get New Display Styles..."
+msgstr "Hae uusia näyttötyylejä…"
+
+#: ConfigSensors.qml:106 UsedSensorsView.qml:72
+#, kde-format
+msgid "Remove"
+msgstr "Poista"
+
+#: ConfigSensors.qml:145
+#, kde-format
+msgid "Total Sensor:"
+msgstr ""
+
+#: ConfigSensors.qml:149
+#, kde-format
+msgid "Drop Sensor Here"
+msgstr "Pudota anturi tähän"
+
+#: ConfigSensors.qml:186
+#, kde-format
+msgid "Chart Sensors"
+msgstr "Kaavion anturit"
+
+#: ConfigSensors.qml:195
+#, kde-format
+msgid "Text Only Sensors"
+msgstr "Vain tekstianturit"
+
+#: ConfigSensors.qml:219
+#, kde-format
+msgid "All Sensors"
+msgstr "Kaikki anturit"
+
+#: facepackages/barchart/contents/ui/Config.qml:41
+#: facepackages/linechart/contents/ui/Config.qml:50
+#: facepackages/piechart/contents/ui/Config.qml:42
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr "Näytä anturien selitteet"
+
+#: facepackages/barchart/contents/ui/Config.qml:45
+#, kde-format
+msgid "Stacked Bars"
+msgstr "Pinotut pylväät"
+
+#: facepackages/barchart/contents/ui/Config.qml:49
+#: facepackages/piechart/contents/ui/Config.qml:77
+#, kde-format
+msgid "Automatic Data Range"
+msgstr "Automaattinen tietoalue"
+
+#: facepackages/barchart/contents/ui/Config.qml:56
+#: facepackages/piechart/contents/ui/Config.qml:82
+#, kde-format
+msgid "From:"
+msgstr "Alkaa:"
+
+#: facepackages/barchart/contents/ui/Config.qml:64
+#: facepackages/piechart/contents/ui/Config.qml:90
+#, kde-format
+msgid "To:"
+msgstr "Päättyy:"
+
+#: facepackages/linechart/contents/ui/Config.qml:45
+#, kde-format
+msgid "Appearance"
+msgstr "Ulkoasu"
+
+#: facepackages/linechart/contents/ui/Config.qml:54
+#, kde-format
+msgid "Stacked Charts"
+msgstr "Pinotut kaaviot"
+
+#: facepackages/linechart/contents/ui/Config.qml:58
+#, kde-format
+msgid "Smooth Lines"
+msgstr "Pehmeät viivat"
+
+#: facepackages/linechart/contents/ui/Config.qml:62
+#, kde-format
+msgid "Fill Opacity:"
+msgstr "Täytön peittävyys:"
+
+#: facepackages/linechart/contents/ui/Config.qml:68
+#, kde-format
+msgid "Data Ranges"
+msgstr "Tietoalueet"
+
+#: facepackages/linechart/contents/ui/Config.qml:73
+#, kde-format
+msgid "Automatic Y Data Range"
+msgstr "Automaattinen Y-tietoalue"
+
+#: facepackages/linechart/contents/ui/Config.qml:77
+#, kde-format
+msgid "From (Y):"
+msgstr "Y alkaa:"
+
+#: facepackages/linechart/contents/ui/Config.qml:88
+#, kde-format
+msgid "To (Y):"
+msgstr "Y päättyy:"
+
+#: facepackages/linechart/contents/ui/Config.qml:93
+#, kde-format
+msgid "Automatic X Data Range"
+msgstr "Automaattinen X-tietoalue"
+
+#: facepackages/linechart/contents/ui/Config.qml:100
+#, kde-format
+msgid "From (X):"
+msgstr "X alkaa:"
+
+#: facepackages/linechart/contents/ui/Config.qml:108
+#, kde-format
+msgid "To (X):"
+msgstr "X päättyy:"
+
+#: facepackages/piechart/contents/ui/Config.qml:46
+#, kde-format
+msgid "Start from Angle"
+msgstr "Aloituskulma"
+
+#: facepackages/piechart/contents/ui/Config.qml:51
+#, kde-format
+msgctxt "angle degrees"
+msgid "%1°"
+msgstr "%1°"
+
+#: facepackages/piechart/contents/ui/Config.qml:54
+#: facepackages/piechart/contents/ui/Config.qml:67
+#, kde-format
+msgctxt "angle degrees"
+msgid "°"
+msgstr "°"
+
+#: facepackages/piechart/contents/ui/Config.qml:59
+#, kde-format
+msgid "Total Pie Angle"
+msgstr "Piirakan kokonaiskulma"
+
+#: facepackages/piechart/contents/ui/Config.qml:64
+#, kde-format
+msgctxt "angle"
+msgid "%1°"
+msgstr "%1°"
+
+#: facepackages/piechart/contents/ui/Config.qml:72
+#, kde-format
+msgid "Rounded Lines"
+msgstr "Pyöristetyt viivat"
+
+#: packagestructure/sensorfacepackage.cpp:35
+#, kde-format
+msgid "User Interface"
+msgstr "Käyttöliittymä"
+
+#: packagestructure/sensorfacepackage.cpp:37
+#, kde-format
+msgid ""
+"The compact representation of the sensors plasmoid when collapsed, for "
+"instance in a panel."
+msgstr "Anturisovelman tiivis esitysasu supistettuna, esimerkiksi paneelissa."
+
+#: packagestructure/sensorfacepackage.cpp:40
+#, kde-format
+msgid "The representation of the plasmoid when it's fully expanded."
+msgstr "Sovelman esitysasu täydeksi laajennettuna."
+
+#: packagestructure/sensorfacepackage.cpp:43
+#, kde-format
+msgid "The optional configuration page for this face."
+msgstr "Tämän ulkoasun valinnainen asetussivu."
+
+#: packagestructure/sensorfacepackage.cpp:45
+#, kde-format
+msgid "Configuration support"
+msgstr "Asetustuki"
+
+#: packagestructure/sensorfacepackage.cpp:46
+#, kde-format
+msgid "KConfigXT xml file for face-specific configuration options."
+msgstr "KConfigXT-XML-tiedosto ulkoasukohtaisille asetusvalinnoille."
+
+#: packagestructure/sensorfacepackage.cpp:48
+#, kde-format
+msgid "The configuration file that describes face properties and capabilities."
+msgstr "Ulkoasun ominaisuudet ja kyvyt kuvaava asetustiedosto."
+
+#: UsedSensorsView.qml:135
+#, kde-format
+msgid "Drop Sensors Here"
+msgstr "Pudota anturit tähän"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/fi/ksysguard_face_org.kde.ksysguard.barchart.po 
new/libksysguard-5.19.4/po/fi/ksysguard_face_org.kde.ksysguard.barchart.po
--- old/libksysguard-5.19.3/po/fi/ksysguard_face_org.kde.ksysguard.barchart.po  
1970-01-01 01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/fi/ksysguard_face_org.kde.ksysguard.barchart.po  
2020-07-28 12:58:50.000000000 +0200
@@ -0,0 +1,43 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+# Tommi Nieminen <transla...@legisign.org>, 2020.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-05-14 03:59+0200\n"
+"PO-Revision-Date: 2020-07-21 19:58+0300\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\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-Generator: Lokalize 20.04.3\n"
+
+#: contents/ui/Config.qml:41
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr "Näytä anturien selitteet"
+
+#: contents/ui/Config.qml:45
+#, kde-format
+msgid "Stacked Bars"
+msgstr "Pinotut pylväät"
+
+#: contents/ui/Config.qml:49
+#, kde-format
+msgid "Automatic Data Range"
+msgstr "Automaattinen tietoalue"
+
+#: contents/ui/Config.qml:56
+#, kde-format
+msgid "From:"
+msgstr "Alkaa:"
+
+#: contents/ui/Config.qml:64
+#, kde-format
+msgid "To:"
+msgstr "Päättyy:"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/fi/ksysguard_face_org.kde.ksysguard.linechart.po 
new/libksysguard-5.19.4/po/fi/ksysguard_face_org.kde.ksysguard.linechart.po
--- old/libksysguard-5.19.3/po/fi/ksysguard_face_org.kde.ksysguard.linechart.po 
1970-01-01 01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/fi/ksysguard_face_org.kde.ksysguard.linechart.po 
2020-07-28 12:58:50.000000000 +0200
@@ -0,0 +1,78 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+# Tommi Nieminen <transla...@legisign.org>, 2020.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-05-14 03:59+0200\n"
+"PO-Revision-Date: 2020-07-21 19:59+0300\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\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-Generator: Lokalize 20.04.3\n"
+
+#: contents/ui/Config.qml:45
+#, kde-format
+msgid "Appearance"
+msgstr "Ulkoasu"
+
+#: contents/ui/Config.qml:50
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr "Näytä anturien selitteet"
+
+#: contents/ui/Config.qml:54
+#, kde-format
+msgid "Stacked Charts"
+msgstr "Pinotut kaaviot"
+
+#: contents/ui/Config.qml:58
+#, kde-format
+msgid "Smooth Lines"
+msgstr "Pehmeät viivat"
+
+#: contents/ui/Config.qml:62
+#, kde-format
+msgid "Fill Opacity:"
+msgstr "Täytön peittävyys:"
+
+#: contents/ui/Config.qml:68
+#, kde-format
+msgid "Data Ranges"
+msgstr "Tietoalueet"
+
+#: contents/ui/Config.qml:73
+#, kde-format
+msgid "Automatic Y Data Range"
+msgstr "Automaattinen Y-tietoalue"
+
+#: contents/ui/Config.qml:77
+#, kde-format
+msgid "From (Y):"
+msgstr "Y alkaa:"
+
+#: contents/ui/Config.qml:88
+#, kde-format
+msgid "To (Y):"
+msgstr "Y päättyy:"
+
+#: contents/ui/Config.qml:93
+#, kde-format
+msgid "Automatic X Data Range"
+msgstr "Automaattinen X-tietoalue"
+
+#: contents/ui/Config.qml:100
+#, kde-format
+msgid "From (X):"
+msgstr "X alkaa:"
+
+#: contents/ui/Config.qml:108
+#, kde-format
+msgid "To (X):"
+msgstr "X päättyy:"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po 
new/libksysguard-5.19.4/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po
--- old/libksysguard-5.19.3/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po  
1970-01-01 01:00:00.000000000 +0100
+++ new/libksysguard-5.19.4/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po  
2020-07-28 12:58:50.000000000 +0200
@@ -0,0 +1,71 @@
+# Copyright (C) YEAR This file is copyright:
+# This file is distributed under the same license as the libksysguard package.
+# Tommi Nieminen <transla...@legisign.org>, 2020.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: libksysguard\n"
+"Report-Msgid-Bugs-To: https://bugs.kde.org\n";
+"POT-Creation-Date: 2020-05-14 03:59+0200\n"
+"PO-Revision-Date: 2020-07-21 20:00+0300\n"
+"Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
+"Language-Team: Finnish <kde-i18n-...@kde.org>\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-Generator: Lokalize 20.04.3\n"
+
+#: contents/ui/Config.qml:42
+#, kde-format
+msgid "Show Sensors Legend"
+msgstr "Näytä anturien selitteet"
+
+#: contents/ui/Config.qml:46
+#, kde-format
+msgid "Start from Angle"
+msgstr "Aloituskulma"
+
+#: contents/ui/Config.qml:51
+#, kde-format
+msgctxt "angle degrees"
+msgid "%1°"
+msgstr "%1°"
+
+#: contents/ui/Config.qml:54 contents/ui/Config.qml:67
+#, kde-format
+msgctxt "angle degrees"
+msgid "°"
+msgstr "°"
+
+#: contents/ui/Config.qml:59
+#, kde-format
+msgid "Total Pie Angle"
+msgstr "Piirakan kokonaiskulma"
+
+#: contents/ui/Config.qml:64
+#, kde-format
+msgctxt "angle"
+msgid "%1°"
+msgstr "%1°"
+
+#: contents/ui/Config.qml:72
+#, kde-format
+msgid "Rounded Lines"
+msgstr "Pyöristetyt viivat"
+
+#: contents/ui/Config.qml:77
+#, kde-format
+msgid "Automatic Data Range"
+msgstr "Automaattinen tietoalue"
+
+#: contents/ui/Config.qml:82
+#, kde-format
+msgid "From:"
+msgstr "Alkaa:"
+
+#: contents/ui/Config.qml:90
+#, kde-format
+msgid "To:"
+msgstr "Päättyy:"
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/fr/KSysGuardSensorFaces.po 
new/libksysguard-5.19.4/po/fr/KSysGuardSensorFaces.po
--- old/libksysguard-5.19.3/po/fr/KSysGuardSensorFaces.po       2020-07-07 
13:13:52.000000000 +0200
+++ new/libksysguard-5.19.4/po/fr/KSysGuardSensorFaces.po       2020-07-28 
12:58:50.000000000 +0200
@@ -6,13 +6,13 @@
 "POT-Creation-Date: 2020-06-19 06:47+0200\n"
 "PO-Revision-Date: 2020-05-17 18:21+0200\n"
 "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n"
-"Language-Team: French <kde-francoph...@kde.org>\n"
+"Language-Team: French <kde-i18n-...@kde.org>\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 20.04.1\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #: ConfigAppearance.qml:103
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/fr/ksysguard_face_org.kde.ksysguard.barchart.po 
new/libksysguard-5.19.4/po/fr/ksysguard_face_org.kde.ksysguard.barchart.po
--- old/libksysguard-5.19.3/po/fr/ksysguard_face_org.kde.ksysguard.barchart.po  
2020-07-07 13:13:52.000000000 +0200
+++ new/libksysguard-5.19.4/po/fr/ksysguard_face_org.kde.ksysguard.barchart.po  
2020-07-28 12:58:50.000000000 +0200
@@ -6,13 +6,13 @@
 "POT-Creation-Date: 2020-05-14 03:59+0200\n"
 "PO-Revision-Date: 2020-05-17 17:55+0200\n"
 "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n"
-"Language-Team: French <kde-francoph...@kde.org>\n"
+"Language-Team: French <kde-i18n-...@kde.org>\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 20.04.1\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #: contents/ui/Config.qml:41
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libksysguard-5.19.3/po/fr/ksysguard_face_org.kde.ksysguard.linechart.po 
new/libksysguard-5.19.4/po/fr/ksysguard_face_org.kde.ksysguard.linechart.po
--- old/libksysguard-5.19.3/po/fr/ksysguard_face_org.kde.ksysguard.linechart.po 
2020-07-07 13:13:52.000000000 +0200
+++ new/libksysguard-5.19.4/po/fr/ksysguard_face_org.kde.ksysguard.linechart.po 
2020-07-28 12:58:50.000000000 +0200
@@ -6,13 +6,13 @@
 "POT-Creation-Date: 2020-05-14 03:59+0200\n"
 "PO-Revision-Date: 2020-05-17 17:59+0200\n"
 "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n"
-"Language-Team: French <kde-francoph...@kde.org>\n"
+"Language-Team: French <kde-i18n-...@kde.org>\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 20.04.1\n"
+"X-Generator: Lokalize 20.04.3\n"
 
 #: contents/ui/Config.qml:45
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/it/ksgrd.po 
new/libksysguard-5.19.4/po/it/ksgrd.po
--- old/libksysguard-5.19.3/po/it/ksgrd.po      2020-07-07 13:13:56.000000000 
+0200
+++ new/libksysguard-5.19.4/po/it/ksgrd.po      2020-07-28 12:58:53.000000000 
+0200
@@ -6,7 +6,7 @@
 # Pino Toscano <toscano.p...@tiscali.it>, 2006, 2007, 2009, 2013.
 # Dario Panico <dareus_persarum...@fastwebnet.it>, 2008.
 # Luciano Montanaro <mikel...@cirulla.net>, 2008.
-# Paolo Zamponi <zapa...@email.it>, 2017, 2019.
+# Paolo Zamponi <zapa...@email.it>, 2017, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksysguard\n"
@@ -20,7 +20,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 19.08.3\n"
+"X-Generator: Lokalize 20.04.2\n"
 
 #: SensorAgent.cpp:111
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/uk/ksgrd.po 
new/libksysguard-5.19.4/po/uk/ksgrd.po
--- old/libksysguard-5.19.3/po/uk/ksgrd.po      2020-07-07 13:14:05.000000000 
+0200
+++ new/libksysguard-5.19.4/po/uk/ksgrd.po      2020-07-28 12:59:05.000000000 
+0200
@@ -1,15 +1,15 @@
 # Translation of ksgrd.po to Ukrainian
-# Copyright (C) 2013-2019 This_file_is_part_of_KDE
+# Copyright (C) 2013-2020 This_file_is_part_of_KDE
 # 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.
 #
-# Yuri Chornoivan <yurc...@ukr.net>, 2013, 2015, 2019.
+# Yuri Chornoivan <yurc...@ukr.net>, 2013, 2015, 2019, 2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: ksgrd\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-01-25 03:45+0100\n"
-"PO-Revision-Date: 2019-11-28 08:27+0200\n"
+"PO-Revision-Date: 2020-07-11 10:15+0300\n"
 "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n"
 "Language-Team: Ukrainian <kde-i18n...@kde.org>\n"
 "Language: uk\n"
@@ -18,7 +18,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
 "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Lokalize 20.03.70\n"
+"X-Generator: Lokalize 20.07.70\n"
 
 #: SensorAgent.cpp:111
 #, kde-format
@@ -512,7 +512,7 @@
 #: SensorManager.cpp:168
 #, kde-format
 msgid "Interrupts"
-msgstr "Перепини"
+msgstr "Переривання"
 
 #: SensorManager.cpp:169
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksysguard-5.19.3/po/zh_CN/KSysGuardSensorFaces.po 
new/libksysguard-5.19.4/po/zh_CN/KSysGuardSensorFaces.po
--- old/libksysguard-5.19.3/po/zh_CN/KSysGuardSensorFaces.po    2020-07-07 
13:14:07.000000000 +0200
+++ new/libksysguard-5.19.4/po/zh_CN/KSysGuardSensorFaces.po    2020-07-28 
12:59:06.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-06-19 06:47+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/ksgrd.po 
new/libksysguard-5.19.4/po/zh_CN/ksgrd.po
--- old/libksysguard-5.19.3/po/zh_CN/ksgrd.po   2020-07-07 13:14:07.000000000 
+0200
+++ new/libksysguard-5.19.4/po/zh_CN/ksgrd.po   2020-07-28 12:59:06.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-01-25 03:45+0100\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/ksysguard_face_org.kde.ksysguard.barchart.po 
new/libksysguard-5.19.4/po/zh_CN/ksysguard_face_org.kde.ksysguard.barchart.po
--- 
old/libksysguard-5.19.3/po/zh_CN/ksysguard_face_org.kde.ksysguard.barchart.po   
    2020-07-07 13:14:07.000000000 +0200
+++ 
new/libksysguard-5.19.4/po/zh_CN/ksysguard_face_org.kde.ksysguard.barchart.po   
    2020-07-28 12:59:06.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-05-14 03:59+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/ksysguard_face_org.kde.ksysguard.linechart.po 
new/libksysguard-5.19.4/po/zh_CN/ksysguard_face_org.kde.ksysguard.linechart.po
--- 
old/libksysguard-5.19.3/po/zh_CN/ksysguard_face_org.kde.ksysguard.linechart.po  
    2020-07-07 13:14:07.000000000 +0200
+++ 
new/libksysguard-5.19.4/po/zh_CN/ksysguard_face_org.kde.ksysguard.linechart.po  
    2020-07-28 12:59:06.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-05-14 03:59+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po 
new/libksysguard-5.19.4/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po
--- 
old/libksysguard-5.19.3/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po   
    2020-07-07 13:14:07.000000000 +0200
+++ 
new/libksysguard-5.19.4/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po   
    2020-07-28 12:59:06.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-05-14 03:59+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/ksysguardlsofwidgets.po 
new/libksysguard-5.19.4/po/zh_CN/ksysguardlsofwidgets.po
--- old/libksysguard-5.19.3/po/zh_CN/ksysguardlsofwidgets.po    2020-07-07 
13:14:07.000000000 +0200
+++ new/libksysguard-5.19.4/po/zh_CN/ksysguardlsofwidgets.po    2020-07-28 
12:59:06.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2019-05-20 03:25+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/processcore.po 
new/libksysguard-5.19.4/po/zh_CN/processcore.po
--- old/libksysguard-5.19.3/po/zh_CN/processcore.po     2020-07-07 
13:14:07.000000000 +0200
+++ new/libksysguard-5.19.4/po/zh_CN/processcore.po     2020-07-28 
12:59:06.000000000 +0200
@@ -5,7 +5,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-05-08 03:56+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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/libksysguard-5.19.3/po/zh_CN/processui.po 
new/libksysguard-5.19.4/po/zh_CN/processui.po
--- old/libksysguard-5.19.3/po/zh_CN/processui.po       2020-07-07 
13:14:07.000000000 +0200
+++ new/libksysguard-5.19.4/po/zh_CN/processui.po       2020-07-28 
12:59:06.000000000 +0200
@@ -10,7 +10,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-04-16 03:53+0200\n"
-"PO-Revision-Date: 2020-06-24 08:02\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