Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libksysguard5 for openSUSE:Factory checked in at 2021-03-10 08:51:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libksysguard5 (Old) and /work/SRC/openSUSE:Factory/.libksysguard5.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libksysguard5" Wed Mar 10 08:51:30 2021 rev:120 rq:876480 version:5.21.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libksysguard5/libksysguard5.changes 2021-03-02 12:32:08.923652567 +0100 +++ /work/SRC/openSUSE:Factory/.libksysguard5.new.2378/libksysguard5.changes 2021-03-10 08:52:48.270613339 +0100 @@ -1,0 +2,14 @@ +Tue Mar 2 15:01:37 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.21.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.21.2 +- Changes since 5.21.1: + * Set line chart amount of history spinbox max to actual maximum value + * Only emit readyChanged when we are in fact ready + * Properly fix column count and inserting new columns on metadata load (kde#433064) + * Horizontal bars: Show full name if possible (kde#433169) + * Set min/max for Y axis range spinboxes to minimum/maximum possible value (kde#433007,kde#424527) + +------------------------------------------------------------------- Old: ---- libksysguard-5.21.1.tar.xz libksysguard-5.21.1.tar.xz.sig New: ---- libksysguard-5.21.2.tar.xz libksysguard-5.21.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libksysguard5.spec ++++++ --- /var/tmp/diff_new_pack.MacYP1/_old 2021-03-10 08:52:48.866613954 +0100 +++ /var/tmp/diff_new_pack.MacYP1/_new 2021-03-10 08:52:48.870613959 +0100 @@ -18,7 +18,7 @@ %bcond_without lang Name: libksysguard5 -Version: 5.21.1 +Version: 5.21.2 Release: 0 Summary: Task management and system monitoring library License: GPL-2.0-or-later ++++++ libksysguard-5.21.1.tar.xz -> libksysguard-5.21.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/CMakeLists.txt new/libksysguard-5.21.2/CMakeLists.txt --- old/libksysguard-5.21.1/CMakeLists.txt 2021-02-23 14:00:09.000000000 +0100 +++ new/libksysguard-5.21.2/CMakeLists.txt 2021-03-02 14:03:54.000000000 +0100 @@ -2,7 +2,7 @@ project(libksysguard) -set(PROJECT_VERSION "5.21.1") +set(PROJECT_VERSION "5.21.2") set(PROJECT_VERSION_MAJOR 5) # check with non-Plasma consumers (e.g. KDevelop) before bumping these versions to make sure the KDE CI does not break diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/faces/facepackages/barchart/contents/ui/Config.qml new/libksysguard-5.21.2/faces/facepackages/barchart/contents/ui/Config.qml --- old/libksysguard-5.21.1/faces/facepackages/barchart/contents/ui/Config.qml 2021-02-23 13:59:36.000000000 +0100 +++ new/libksysguard-5.21.2/faces/facepackages/barchart/contents/ui/Config.qml 2021-03-02 14:03:21.000000000 +0100 @@ -61,16 +61,16 @@ QQC2.SpinBox { id: rangeFromSpin editable: true - from: -99999 - to: 99999 + from: Math.pow(-2, 31) + 1 + to: Math.pow(2, 31) - 1 Kirigami.FormData.label: i18n("From:") enabled: !rangeAutoCheckbox.checked } QQC2.SpinBox { id: rangeToSpin editable: true - from: -99999 - to: 99999 + from: Math.pow(-2, 31) + 1 + to: Math.pow(2, 31) - 1 Kirigami.FormData.label: i18n("To:") enabled: !rangeAutoCheckbox.checked } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/faces/facepackages/horizontalbars/contents/ui/FullRepresentation.qml new/libksysguard-5.21.2/faces/facepackages/horizontalbars/contents/ui/FullRepresentation.qml --- old/libksysguard-5.21.1/faces/facepackages/horizontalbars/contents/ui/FullRepresentation.qml 2021-02-23 13:59:36.000000000 +0100 +++ new/libksysguard-5.21.2/faces/facepackages/horizontalbars/contents/ui/FullRepresentation.qml 2021-03-02 14:03:21.000000000 +0100 @@ -73,7 +73,8 @@ Layout.fillWidth: true Layout.minimumHeight: isTextOnly ? 0 : implicitHeight - name: sensor.shortName + name: sensor.name + shortName: sensor.shortName value: sensor.formattedValue colorVisible: false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/faces/facepackages/linechart/contents/ui/Config.qml new/libksysguard-5.21.2/faces/facepackages/linechart/contents/ui/Config.qml --- old/libksysguard-5.21.1/faces/facepackages/linechart/contents/ui/Config.qml 2021-02-23 13:59:36.000000000 +0100 +++ new/libksysguard-5.21.2/faces/facepackages/linechart/contents/ui/Config.qml 2021-03-02 14:03:21.000000000 +0100 @@ -90,14 +90,14 @@ Kirigami.FormData.label: i18n("From (Y):") enabled: !rangeAutoYCheckbox.checked editable: true - from: -99999 - to: 99999 + from: Math.pow(-2, 31) + 1 + to: Math.pow(2, 31) - 1 } QQC2.SpinBox { id: rangeToYSpin editable: true - from: -99999 - to: 99999 + from: Math.pow(-2, 31) + 1 + to: Math.pow(2, 31) - 1 Kirigami.FormData.label: i18n("To (Y):") enabled: !rangeAutoYCheckbox.checked } @@ -105,7 +105,7 @@ id: historySpin editable: true from: 0 - to: 999999999 + to: Math.pow(2, 31) - 1 Kirigami.FormData.label: i18n("Amount of History to Keep:") textFromValue: function(value, locale) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/faces/facepackages/piechart/contents/ui/Config.qml new/libksysguard-5.21.2/faces/facepackages/piechart/contents/ui/Config.qml --- old/libksysguard-5.21.1/faces/facepackages/piechart/contents/ui/Config.qml 2021-02-23 13:59:36.000000000 +0100 +++ new/libksysguard-5.21.2/faces/facepackages/piechart/contents/ui/Config.qml 2021-03-02 14:03:21.000000000 +0100 @@ -81,11 +81,13 @@ editable: true Kirigami.FormData.label: i18n("From:") enabled: !rangeAutoCheckbox.checked + from: Math.pow(-2, 31) + 1 + to: Math.pow(2, 31) - 1 } QQC2.SpinBox { id: rangeToSpin - from: -99999 - to: 99999 + from: Math.pow(-2, 31) + 1 + to: Math.pow(2, 31) - 1 editable: true Kirigami.FormData.label: i18n("To:") enabled: !rangeAutoCheckbox.checked diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ca/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/ca/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/ca/KSysGuardSensorFaces.po 2021-02-23 13:59:41.000000000 +0100 +++ new/libksysguard-5.21.2/po/ca/KSysGuardSensorFaces.po 2021-03-02 14:03:26.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-06 11:45+0100\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -126,7 +126,7 @@ msgstr "Des de:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Fins a:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ca/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/ca/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/ca/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:41.000000000 +0100 +++ new/libksysguard-5.21.2/po/ca/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:26.000000000 +0100 @@ -9,7 +9,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 14:00+0100\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -68,7 +68,7 @@ msgid "From:" msgstr "Des de:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Fins a:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ca@valencia/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/ca@valencia/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/ca@valencia/KSysGuardSensorFaces.po 2021-02-23 13:59:41.000000000 +0100 +++ new/libksysguard-5.21.2/po/ca@valencia/KSysGuardSensorFaces.po 2021-03-02 14:03:26.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-07-30 13:01+0100\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -127,7 +127,7 @@ msgstr "Des de:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Fins a:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ca@valencia/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/ca@valencia/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/ca@valencia/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:41.000000000 +0100 +++ new/libksysguard-5.21.2/po/ca@valencia/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:26.000000000 +0100 @@ -9,7 +9,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 14:00+0100\n" "Last-Translator: Josep Ma. Ferrer <txe...@gmail.com>\n" "Language-Team: Catalan <kde-i18n...@kde.org>\n" @@ -68,7 +68,7 @@ msgid "From:" msgstr "Des de:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Fins a:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/cs/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/cs/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/cs/KSysGuardSensorFaces.po 2021-02-23 13:59:42.000000000 +0100 +++ new/libksysguard-5.21.2/po/cs/KSysGuardSensorFaces.po 2021-03-02 14:03:27.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-09-02 13:41+0200\n" "Last-Translator: Vit Pelcak <v...@pelcak.org>\n" "Language-Team: Czech <kde-i18n-...@kde.org>\n" @@ -123,7 +123,7 @@ msgstr "Od:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/cs/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/cs/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/cs/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:42.000000000 +0100 +++ new/libksysguard-5.21.2/po/cs/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:27.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-24 19:16+0200\n" "Last-Translator: Vit Pelcak <v...@pelcak.org>\n" "Language-Team: Czech <kde-i18n-...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "Od:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/da/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/da/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/da/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:43.000000000 +0100 +++ new/libksysguard-5.21.2/po/da/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:27.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\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" @@ -65,7 +65,7 @@ msgid "From:" msgstr "" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/en_GB/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/en_GB/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/en_GB/KSysGuardSensorFaces.po 2021-02-23 13:59:44.000000000 +0100 +++ new/libksysguard-5.21.2/po/en_GB/KSysGuardSensorFaces.po 2021-03-02 14:03:28.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-10 12:29+0000\n" "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n" "Language-Team: British English <kde-l10n-en...@kde.org>\n" @@ -122,7 +122,7 @@ msgstr "From:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "To:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/en_GB/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/en_GB/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/en_GB/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:44.000000000 +0100 +++ new/libksysguard-5.21.2/po/en_GB/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:28.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-06-06 14:39+0100\n" "Last-Translator: Steve Allewell <steve.allew...@gmail.com>\n" "Language-Team: British English <kde-l10n-en...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "From:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "To:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/es/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/es/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/es/KSysGuardSensorFaces.po 2021-02-23 13:59:44.000000000 +0100 +++ new/libksysguard-5.21.2/po/es/KSysGuardSensorFaces.po 2021-03-02 14:03:29.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: KSysGuardSensorFaces\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-06 12:44+0100\n" "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n" "Language-Team: Spanish <kde-l10n...@kde.org>\n" @@ -124,7 +124,7 @@ msgstr "Desde:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Hasta:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/es/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/es/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/es/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:44.000000000 +0100 +++ new/libksysguard-5.21.2/po/es/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:29.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ksysguard_face_org\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-05-14 03:59+0200\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 20:20+0200\n" "Last-Translator: Eloy Cuadra <ecua...@eloihr.net>\n" "Language-Team: Spanish <kde-l10n...@kde.org>\n" @@ -67,7 +67,7 @@ msgid "From:" msgstr "Desde:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Hasta:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/et/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/et/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/et/KSysGuardSensorFaces.po 2021-02-23 13:59:45.000000000 +0100 +++ new/libksysguard-5.21.2/po/et/KSysGuardSensorFaces.po 2021-03-02 14:03:30.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-09-28 13:31+0200\n" "Last-Translator: Mihkel T??nnov <mihh...@gmail.com>\n" "Language-Team: Estonian <>\n" @@ -125,7 +125,7 @@ msgstr "Alates:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Kuni:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/et/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/et/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/et/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:45.000000000 +0100 +++ new/libksysguard-5.21.2/po/et/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:30.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 12:04+0300\n" "Last-Translator: Marek Laane <qiila...@gmail.com>\n" "Language-Team: Estonian <kde...@lists.linux.ee>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "Alates:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Kuni:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/eu/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/eu/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/eu/KSysGuardSensorFaces.po 2021-02-23 13:59:45.000000000 +0100 +++ new/libksysguard-5.21.2/po/eu/KSysGuardSensorFaces.po 2021-03-02 14:03:30.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-10-31 12:27+0100\n" "Last-Translator: I??igo Salvador Azurmendi <xa...@ni.eus>\n" "Language-Team: Basque\n" @@ -125,7 +125,7 @@ msgstr "Nondik:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Nori:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/eu/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/eu/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/eu/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:45.000000000 +0100 +++ new/libksysguard-5.21.2/po/eu/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:30.000000000 +0100 @@ -9,7 +9,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-06-28 10:15+0200\n" "Last-Translator: I??igo Salvador Azurmendi <xa...@ni.eus>\n" "Language-Team: Basque <kde-i18n...@kde.org>\n" @@ -68,7 +68,7 @@ msgid "From:" msgstr "Nondik:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Nori:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/fi/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/fi/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/fi/KSysGuardSensorFaces.po 2021-02-23 13:59:46.000000000 +0100 +++ new/libksysguard-5.21.2/po/fi/KSysGuardSensorFaces.po 2021-03-02 14:03:30.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-04 16:48+0200\n" "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n" "Language-Team: Finnish <kde-i18n-...@kde.org>\n" @@ -123,7 +123,7 @@ msgstr "Alkaa:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "P????ttyy:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:46.000000000 +0100 +++ new/libksysguard-5.21.2/po/fi/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:30.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\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" @@ -65,7 +65,7 @@ msgid "From:" msgstr "Alkaa:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, 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.21.1/po/fr/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/fr/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/fr/KSysGuardSensorFaces.po 2021-02-23 13:59:46.000000000 +0100 +++ new/libksysguard-5.21.2/po/fr/KSysGuardSensorFaces.po 2021-03-02 14:03:31.000000000 +0100 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-07 23:05+0100\n" "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n" "Language-Team: French <kde-francoph...@kde.org>\n" @@ -119,7 +119,7 @@ msgstr "De??:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "A??:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/fr/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/fr/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/fr/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:46.000000000 +0100 +++ new/libksysguard-5.21.2/po/fr/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:31.000000000 +0100 @@ -3,7 +3,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-17 17:49+0200\n" "Last-Translator: Xavier Besnard <xavier.besn...@neuf.fr>\n" "Language-Team: French <kde-francoph...@kde.org>\n" @@ -62,7 +62,7 @@ msgid "From:" msgstr "De??:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "A??:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/it/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/it/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/it/KSysGuardSensorFaces.po 2021-02-23 13:59:50.000000000 +0100 +++ new/libksysguard-5.21.2/po/it/KSysGuardSensorFaces.po 2021-03-02 14:03:37.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-07 01:16+0100\n" "Last-Translator: Vincenzo Reale <smart2...@baslug.org>\n" "Language-Team: Italian <kde-i18n...@kde.org>\n" @@ -122,7 +122,7 @@ msgstr "Da:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "A:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/it/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/it/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/it/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:50.000000000 +0100 +++ new/libksysguard-5.21.2/po/it/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:37.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 18:43+0200\n" "Last-Translator: Vincenzo Reale <smart2...@baslug.org>\n" "Language-Team: Italian <kde-i18n...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "Da:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "A:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ko/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/ko/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/ko/KSysGuardSensorFaces.po 2021-02-23 13:59:52.000000000 +0100 +++ new/libksysguard-5.21.2/po/ko/KSysGuardSensorFaces.po 2021-03-02 14:03:39.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-09-06 01:18+0200\n" "Last-Translator: Shinjo Park <k...@peremen.name>\n" "Language-Team: Korean <kde...@kde.org>\n" @@ -122,7 +122,7 @@ msgstr "??????:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "???:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ko/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/ko/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/ko/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:52.000000000 +0100 +++ new/libksysguard-5.21.2/po/ko/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:39.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-06-15 19:55+0200\n" "Last-Translator: Shinjo Park <k...@peremen.name>\n" "Language-Team: Korean <kde...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "??????:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "???:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/lt/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/lt/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/lt/KSysGuardSensorFaces.po 2021-02-23 13:59:53.000000000 +0100 +++ new/libksysguard-5.21.2/po/lt/KSysGuardSensorFaces.po 2021-03-02 14:03:40.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-10-14 02:29+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -124,7 +124,7 @@ msgstr "" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/lt/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/lt/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/lt/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:53.000000000 +0100 +++ new/libksysguard-5.21.2/po/lt/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:40.000000000 +0100 @@ -7,7 +7,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 03:59+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -66,7 +66,7 @@ msgid "From:" msgstr "" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/nb/processcore.po new/libksysguard-5.21.2/po/nb/processcore.po --- old/libksysguard-5.21.1/po/nb/processcore.po 2021-02-23 13:59:55.000000000 +0100 +++ new/libksysguard-5.21.2/po/nb/processcore.po 2021-03-02 14:03:41.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: processcore\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-28 10:04+0100\n" +"POT-Creation-Date: 2021-02-18 10:31+0100\n" "PO-Revision-Date: 2010-05-27 14:49+0200\n" "Last-Translator: Bj??rn Steensrud <bjor...@skogkatt.homelinux.org>\n" "Language-Team: Norwegian Bokm??l <l10n...@lister.huftis.org>\n" @@ -19,19 +19,19 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: cgroup_data_model.cpp:64 +#: cgroup_data_model.cpp:65 #, kde-format msgctxt "@title" msgid "Desktop ID" msgstr "" -#: cgroup_data_model.cpp:76 +#: cgroup_data_model.cpp:77 #, kde-format msgctxt "@title" msgid "Icon" msgstr "" -#: cgroup_data_model.cpp:88 +#: cgroup_data_model.cpp:89 #, kde-format msgctxt "@title" msgid "Name" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/nl/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/nl/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/nl/KSysGuardSensorFaces.po 2021-02-23 13:59:56.000000000 +0100 +++ new/libksysguard-5.21.2/po/nl/KSysGuardSensorFaces.po 2021-03-02 14:03:43.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-06 13:26+0100\n" "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n" "Language-Team: Dutch <kde-i18n...@kde.org>\n" @@ -122,7 +122,7 @@ msgstr "Van:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Tot:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/nl/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/nl/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/nl/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:56.000000000 +0100 +++ new/libksysguard-5.21.2/po/nl/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:43.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 14:32+0200\n" "Last-Translator: Freek de Kruijf <freekdekru...@kde.nl>\n" "Language-Team: Dutch <kde-i18n...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "Van:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Tot:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/nn/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/nn/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/nn/KSysGuardSensorFaces.po 2021-02-23 13:59:56.000000000 +0100 +++ new/libksysguard-5.21.2/po/nn/KSysGuardSensorFaces.po 2021-03-02 14:03:43.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-08 21:37+0100\n" "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n" "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n" @@ -124,7 +124,7 @@ msgstr "Fr??:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Til:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/nn/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/nn/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/nn/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:56.000000000 +0100 +++ new/libksysguard-5.21.2/po/nn/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:43.000000000 +0100 @@ -5,7 +5,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-12-11 19:21+0100\n" "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n" "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n" @@ -67,7 +67,7 @@ msgid "From:" msgstr "Fr??:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, 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.21.1/po/pl/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/pl/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/pl/KSysGuardSensorFaces.po 2021-02-23 13:59:57.000000000 +0100 +++ new/libksysguard-5.21.2/po/pl/KSysGuardSensorFaces.po 2021-03-02 14:03:44.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-16 11:39+0100\n" "Last-Translator: ??ukasz Wojni??owicz <lukasz.wojnilow...@gmail.com>\n" "Language-Team: Polish <kde-i18n-...@kde.org>\n" @@ -124,7 +124,7 @@ msgstr "Od:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/pl/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/pl/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/pl/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:57.000000000 +0100 +++ new/libksysguard-5.21.2/po/pl/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:44.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-16 11:39+0100\n" "Last-Translator: ??ukasz Wojni??owicz <lukasz.wojnilow...@gmail.com>\n" "Language-Team: Polish <kde-i18n-...@kde.org>\n" @@ -66,7 +66,7 @@ msgid "From:" msgstr "Od:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/pt/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/pt/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/pt/KSysGuardSensorFaces.po 2021-02-23 13:59:58.000000000 +0100 +++ new/libksysguard-5.21.2/po/pt/KSysGuardSensorFaces.po 2021-03-02 14:03:45.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-07 10:39+0000\n" "Last-Translator: Jos?? Nuno Coelho Pires <zepi...@gmail.com>\n" "Language-Team: Portuguese <kde-i18n...@kde.org>\n" @@ -118,7 +118,7 @@ msgstr "De:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "At??:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/pt/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/pt/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/pt/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:58.000000000 +0100 +++ new/libksysguard-5.21.2/po/pt/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:45.000000000 +0100 @@ -2,7 +2,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 22:09+0100\n" "Last-Translator: Jos?? Nuno Coelho Pires <zepi...@gmail.com>\n" "Language-Team: Portuguese <kde-i18n...@kde.org>\n" @@ -60,7 +60,7 @@ msgid "From:" msgstr "De:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "At??:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/pt_BR/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/pt_BR/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/pt_BR/KSysGuardSensorFaces.po 2021-02-23 13:59:58.000000000 +0100 +++ new/libksysguard-5.21.2/po/pt_BR/KSysGuardSensorFaces.po 2021-03-02 14:03:45.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-02-01 16:00-0300\n" "Last-Translator: Luiz Fernando Ranghetti <elchev...@opensuse.org>\n" "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n" @@ -122,7 +122,7 @@ msgstr "De:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "At??:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/pt_BR/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/pt_BR/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/pt_BR/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:58.000000000 +0100 +++ new/libksysguard-5.21.2/po/pt_BR/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:45.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-06-12 15:33-0300\n" "Last-Translator: Luiz Fernando Ranghetti <elchev...@opensuse.org>\n" "Language-Team: Brazilian Portuguese <kde-i18n-pt...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "De:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Para:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ro/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/ro/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/ro/KSysGuardSensorFaces.po 2021-02-23 13:59:58.000000000 +0100 +++ new/libksysguard-5.21.2/po/ro/KSysGuardSensorFaces.po 2021-03-02 14:03:45.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-11-12 23:35+0000\n" "Last-Translator: Sergiu Bivol <ser...@cip.md>\n" "Language-Team: Romanian\n" @@ -124,7 +124,7 @@ msgstr "De la:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "P??n?? la:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ru/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/ru/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/ru/KSysGuardSensorFaces.po 2021-02-23 13:59:59.000000000 +0100 +++ new/libksysguard-5.21.2/po/ru/KSysGuardSensorFaces.po 2021-03-02 14:03:45.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-02-08 09:38+0300\n" "Last-Translator: Alexander Yavorsky <kekc...@gmail.com>\n" "Language-Team: Russian <kde-russ...@lists.kde.ru>\n" @@ -126,7 +126,7 @@ msgstr "" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/ru/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/ru/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/ru/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 13:59:59.000000000 +0100 +++ new/libksysguard-5.21.2/po/ru/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:45.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-10-10 15:25+0200\n" "Last-Translator: Alexander Potashev <aspotas...@gmail.com>\n" "Language-Team: Russian <kde-russ...@lists.kde.ru>\n" @@ -66,7 +66,7 @@ msgid "From:" msgstr "????:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "????:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/se/processcore.po new/libksysguard-5.21.2/po/se/processcore.po --- old/libksysguard-5.21.1/po/se/processcore.po 2021-02-23 13:59:59.000000000 +0100 +++ new/libksysguard-5.21.2/po/se/processcore.po 2021-03-02 14:03:46.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: processcore\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-28 10:04+0100\n" +"POT-Creation-Date: 2021-02-18 10:31+0100\n" "PO-Revision-Date: 2007-12-24 02:29+0100\n" "Last-Translator: B??rre Gaup <boe...@skolelinux.no>\n" "Language-Team: Northern Sami <l10n...@lister.huftis.org>\n" @@ -19,19 +19,19 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: cgroup_data_model.cpp:64 +#: cgroup_data_model.cpp:65 #, kde-format msgctxt "@title" msgid "Desktop ID" msgstr "" -#: cgroup_data_model.cpp:76 +#: cgroup_data_model.cpp:77 #, kde-format msgctxt "@title" msgid "Icon" msgstr "" -#: cgroup_data_model.cpp:88 +#: cgroup_data_model.cpp:89 #, kde-format msgctxt "@title" msgid "Name" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/sk/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/sk/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/sk/KSysGuardSensorFaces.po 2021-02-23 14:00:00.000000000 +0100 +++ new/libksysguard-5.21.2/po/sk/KSysGuardSensorFaces.po 2021-03-02 14:03:46.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: KSysGuardSensorFaces\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-08-11 08:38+0200\n" "Last-Translator: Matej Mrenica <matejm98m...@gmail.com>\n" "Language-Team: Slovak <kde-i18n-...@kde.org>\n" @@ -124,7 +124,7 @@ msgstr "Od:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/sk/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/sk/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/sk/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 14:00:00.000000000 +0100 +++ new/libksysguard-5.21.2/po/sk/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:46.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: ksysguard_face_org.kde.ksysguard.piechart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-05-14 03:59+0200\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-19 21:17+0200\n" "Last-Translator: Roman Paholik <wizzar...@gmail.com>\n" "Language-Team: Slovak <kde...@linux.sk>\n" @@ -63,7 +63,7 @@ msgid "From:" msgstr "Od:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/sl/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/sl/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/sl/KSysGuardSensorFaces.po 2021-02-23 14:00:00.000000000 +0100 +++ new/libksysguard-5.21.2/po/sl/KSysGuardSensorFaces.po 2021-03-02 14:03:46.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-08 15:11+0100\n" "Last-Translator: Matja?? Jeran <matjaz.je...@amis.net>\n" "Language-Team: Slovenian <lugos-...@lugos.si>\n" @@ -125,7 +125,7 @@ msgstr "Od:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/sl/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/sl/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/sl/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 14:00:00.000000000 +0100 +++ new/libksysguard-5.21.2/po/sl/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:46.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-06-15 16:47+0200\n" "Last-Translator: Matja?? Jeran <matjaz.je...@amis.net>\n" "Language-Team: Slovenian <lugos-...@lugos.si>\n" @@ -66,7 +66,7 @@ msgid "From:" msgstr "Od:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Do:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/sv/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/sv/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/sv/KSysGuardSensorFaces.po 2021-02-23 14:00:02.000000000 +0100 +++ new/libksysguard-5.21.2/po/sv/KSysGuardSensorFaces.po 2021-03-02 14:03:48.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: libksysguard\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-06 12:18+0100\n" "Last-Translator: Stefan Asserh??ll <stefan.asserh...@bredband.net>\n" "Language-Team: Swedish <kde-i18n-...@kde.org>\n" @@ -122,7 +122,7 @@ msgstr "Fr??n:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Till:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/sv/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/sv/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/sv/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 14:00:02.000000000 +0100 +++ new/libksysguard-5.21.2/po/sv/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:48.000000000 +0100 @@ -6,7 +6,7 @@ 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" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-16 08:04+0200\n" "Last-Translator: Stefan Asserh??ll <stefan.asserh...@bredband.net>\n" "Language-Team: Swedish <kde-i18n-...@kde.org>\n" @@ -65,7 +65,7 @@ msgid "From:" msgstr "Fr??n:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "Till:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/uk/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/uk/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/uk/KSysGuardSensorFaces.po 2021-02-23 14:00:04.000000000 +0100 +++ new/libksysguard-5.21.2/po/uk/KSysGuardSensorFaces.po 2021-03-02 14:03:50.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: KSysGuardSensorFaces\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-01-06 09:01+0200\n" "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n" "Language-Team: Ukrainian <kde-i18n...@kde.org>\n" @@ -127,7 +127,7 @@ msgstr "??????:" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "????:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/uk/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/uk/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/uk/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 14:00:04.000000000 +0100 +++ new/libksysguard-5.21.2/po/uk/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:50.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ksysguard_face_org.kde.ksysguard.piechart\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-05-14 03:59+0200\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2020-05-14 09:55+0300\n" "Last-Translator: Yuri Chornoivan <yurc...@ukr.net>\n" "Language-Team: Ukrainian <kde-i18n...@kde.org>\n" @@ -68,7 +68,7 @@ msgid "From:" msgstr "??????:" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "????:" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/zh_CN/KSysGuardSensorFaces.po new/libksysguard-5.21.2/po/zh_CN/KSysGuardSensorFaces.po --- old/libksysguard-5.21.1/po/zh_CN/KSysGuardSensorFaces.po 2021-02-23 14:00:06.000000000 +0100 +++ new/libksysguard-5.21.2/po/zh_CN/KSysGuardSensorFaces.po 2021-03-02 14:03:52.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2021-01-06 03:01+0100\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-02-04 12:00\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -121,7 +121,7 @@ msgstr "?????????" #: facepackages/barchart/contents/ui/Config.qml:74 -#: facepackages/piechart/contents/ui/Config.qml:90 +#: facepackages/piechart/contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "?????????" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po new/libksysguard-5.21.2/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po --- old/libksysguard-5.21.1/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po 2021-02-23 14:00:06.000000000 +0100 +++ new/libksysguard-5.21.2/po/zh_CN/ksysguard_face_org.kde.ksysguard.piechart.po 2021-03-02 14:03:51.000000000 +0100 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2020-05-14 03:59+0200\n" +"POT-Creation-Date: 2021-02-27 08:18+0100\n" "PO-Revision-Date: 2021-02-04 12:00\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -66,7 +66,7 @@ msgid "From:" msgstr "?????????" -#: contents/ui/Config.qml:90 +#: contents/ui/Config.qml:92 #, kde-format msgid "To:" msgstr "?????????" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libksysguard-5.21.1/sensors/SensorDataModel.cpp new/libksysguard-5.21.2/sensors/SensorDataModel.cpp --- old/libksysguard-5.21.1/sensors/SensorDataModel.cpp 2021-02-23 13:59:36.000000000 +0100 +++ new/libksysguard-5.21.2/sensors/SensorDataModel.cpp 2021-03-02 14:03:21.000000000 +0100 @@ -205,7 +205,7 @@ return 0; } - return d->sensors.count(); + return d->sensorInfos.count(); } qreal SensorDataModel::minimum() const @@ -296,7 +296,7 @@ bool KSysGuard::SensorDataModel::isReady() const { - return d->sensors.size() == d->requestedSensors.size(); + return d->sensors.size() == d->sensorInfos.size(); } void SensorDataModel::addSensor(const QString &sensorId) @@ -407,7 +407,10 @@ SensorDaemonInterface::instance()->requestValue(sensorId); emit sensorMetaDataChanged(); - Q_EMIT readyChanged(); + + if (isReady()) { + Q_EMIT readyChanged(); + } } void SensorDataModel::onValueChanged(const QString &sensorId, const QVariant &value) @@ -433,10 +436,6 @@ sensors = requestedSensors; - for (const auto& sensor : sensors) { - sensorInfos[sensor] = KSysGuard::SensorInfo(); - } - SensorDaemonInterface::instance()->subscribe(requestedSensors); SensorDaemonInterface::instance()->requestMetaData(requestedSensors);