Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package plasma5-phone-components for
openSUSE:Factory checked in at 2021-10-23 23:14:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma5-phone-components (Old)
and /work/SRC/openSUSE:Factory/.plasma5-phone-components.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-phone-components"
Sat Oct 23 23:14:00 2021 rev:18 rq:926394 version:5.23.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/plasma5-phone-components/plasma5-phone-components.changes
2021-10-13 18:09:53.699632773 +0200
+++
/work/SRC/openSUSE:Factory/.plasma5-phone-components.new.1890/plasma5-phone-components.changes
2021-10-23 23:14:07.556985484 +0200
@@ -1,0 +2,10 @@
+Tue Oct 19 14:05:43 UTC 2021 - Fabian Vogt <[email protected]>
+
+- Update to 5.23.1
+ * New bugfix release
+ * For more details please see:
+ * https://kde.org/announcements/plasma/5/5.23.1
+- Changes since 5.23.0:
+ * panel: Fix quicksetting delegate width not getting enforced on label
+
+-------------------------------------------------------------------
Old:
----
plasma-phone-components-5.23.0.tar.xz
plasma-phone-components-5.23.0.tar.xz.sig
New:
----
plasma-phone-components-5.23.1.tar.xz
plasma-phone-components-5.23.1.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma5-phone-components.spec ++++++
--- /var/tmp/diff_new_pack.GhpFUO/_old 2021-10-23 23:14:08.076985739 +0200
+++ /var/tmp/diff_new_pack.GhpFUO/_new 2021-10-23 23:14:08.076985739 +0200
@@ -24,7 +24,7 @@
%bcond_without lang
Name: plasma5-phone-components
-Version: 5.23.0
+Version: 5.23.1
Release: 0
# Full Plasma 5 version (e.g. 5.9.3)
%{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}}
++++++ plasma-phone-components-5.23.0.tar.xz ->
plasma-phone-components-5.23.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/plasma-phone-components-5.23.0/CMakeLists.txt
new/plasma-phone-components-5.23.1/CMakeLists.txt
--- old/plasma-phone-components-5.23.0/CMakeLists.txt 2021-10-07
13:46:31.000000000 +0200
+++ new/plasma-phone-components-5.23.1/CMakeLists.txt 2021-10-19
14:59:15.000000000 +0200
@@ -3,7 +3,7 @@
project(plasma-phone-components)
set(QT_MIN_VERSION "5.15.0")
-set(KF5_MIN_VERSION "5.82")
+set(KF5_MIN_VERSION "5.86")
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
set(CMAKE_CXX_STANDARD 17)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/containments/panel/package/contents/ui/quicksettings/Delegate.qml
new/plasma-phone-components-5.23.1/containments/panel/package/contents/ui/quicksettings/Delegate.qml
---
old/plasma-phone-components-5.23.0/containments/panel/package/contents/ui/quicksettings/Delegate.qml
2021-10-07 13:46:12.000000000 +0200
+++
new/plasma-phone-components-5.23.1/containments/panel/package/contents/ui/quicksettings/Delegate.qml
2021-10-19 14:58:57.000000000 +0200
@@ -27,12 +27,15 @@
required property var toggleFunction
property alias labelOpacity: label.opacity
+ required property real boundingWidth
+
property color disabledButtonColor: PlasmaCore.Theme.backgroundColor
property color disabledPressedButtonColor: Qt.darker(disabledButtonColor,
1.1)
property color enabledButtonColor:
Kirigami.ColorUtils.adjustColor(PlasmaCore.ColorScope.highlightColor, {"alpha":
0.4*255})
property color enabledPressedButtonColor:
Kirigami.ColorUtils.adjustColor(PlasmaCore.ColorScope.highlightColor, {"alpha":
0.6*255});
Rectangle {
+ id: iconButton
Layout.preferredWidth: PlasmaCore.Units.iconSizes.large +
PlasmaCore.Units.smallSpacing
Layout.minimumHeight: width
Layout.alignment: Qt.AlignHCenter
@@ -95,7 +98,7 @@
PlasmaComponents.Label {
id: label
- Layout.maximumWidth: parent.width
+ Layout.maximumWidth: delegateRoot.boundingWidth - arrow.width -
PlasmaCore.Units.smallSpacing * 2
Layout.alignment: Qt.AlignHCenter
text: delegateRoot.text
@@ -106,6 +109,7 @@
verticalAlignment: Text.AlignVCenter
PlasmaCore.SvgItem {
+ id: arrow
anchors {
left: parent.right
verticalCenter: parent.verticalCenter
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/containments/panel/package/contents/ui/quicksettings/QuickSettingsPanel.qml
new/plasma-phone-components-5.23.1/containments/panel/package/contents/ui/quicksettings/QuickSettingsPanel.qml
---
old/plasma-phone-components-5.23.0/containments/panel/package/contents/ui/quicksettings/QuickSettingsPanel.qml
2021-10-07 13:46:12.000000000 +0200
+++
new/plasma-phone-components-5.23.1/containments/panel/package/contents/ui/quicksettings/QuickSettingsPanel.qml
2021-10-19 14:58:57.000000000 +0200
@@ -136,10 +136,10 @@
delegate: Delegate {
id: delegateItem
required property var modelData
- width: root.expandedRatio < 0.4
- ? Math.max(implicitWidth +
PlasmaCore.Units.smallSpacing * 2, flow.width / (flow.columns + 1))
- : Math.max(implicitWidth +
PlasmaCore.Units.smallSpacing * 2,
- (flow.width / (flow.columns + 1))
* (1 - root.expandedRatio) + (flow.width / flow.columns) * root.expandedRatio)
+ width: Math.max(implicitWidth +
PlasmaCore.Units.smallSpacing * 2, boundingWidth)
+ boundingWidth: root.expandedRatio < 0.4
+ ? flow.width / (flow.columns + 1)
+ : (flow.width / (flow.columns +
1)) * (1 - root.expandedRatio) + (flow.width / flow.columns) *
root.expandedRatio
labelOpacity: y > 0 ? 1 : root.expandedRatio
opacity: y <= 0 ? 1 : root.expandedRatio
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/ca/plasma_applet_org.kde.phone.activities.po
new/plasma-phone-components-5.23.1/po/ca/plasma_applet_org.kde.phone.activities.po
---
old/plasma-phone-components-5.23.0/po/ca/plasma_applet_org.kde.phone.activities.po
2021-10-07 13:46:15.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/ca/plasma_applet_org.kde.phone.activities.po
2021-10-19 14:58:59.000000000 +0200
@@ -3,14 +3,14 @@
# 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.
#
-# Josep Ma. Ferrer <[email protected]>, 2019.
+# Josep M. Ferrer <[email protected]>, 2019.
msgid ""
msgstr ""
"Project-Id-Version: plasma-phone-components\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-03-04 02:55+0100\n"
"PO-Revision-Date: 2019-11-01 08:57+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/ca/plasma_applet_org.kde.phone.krunner.po
new/plasma-phone-components-5.23.1/po/ca/plasma_applet_org.kde.phone.krunner.po
---
old/plasma-phone-components-5.23.0/po/ca/plasma_applet_org.kde.phone.krunner.po
2021-10-07 13:46:15.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/ca/plasma_applet_org.kde.phone.krunner.po
2021-10-19 14:58:59.000000000 +0200
@@ -3,14 +3,14 @@
# 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.
#
-# Josep Ma. Ferrer <[email protected]>, 2020.
+# Josep M. Ferrer <[email protected]>, 2020.
msgid ""
msgstr ""
"Project-Id-Version: plasma-phone-components\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-05-05 00:20+0000\n"
"PO-Revision-Date: 2020-02-06 20:54+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/ca/plasma_applet_org.kde.phone.panel.po
new/plasma-phone-components-5.23.1/po/ca/plasma_applet_org.kde.phone.panel.po
---
old/plasma-phone-components-5.23.0/po/ca/plasma_applet_org.kde.phone.panel.po
2021-10-07 13:46:15.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/ca/plasma_applet_org.kde.phone.panel.po
2021-10-19 14:58:59.000000000 +0200
@@ -4,7 +4,7 @@
# version 3 or later versions approved by the membership of KDE e.V.
#
# Antoni Bella P??rez <[email protected]>, 2019, 2020.
-# Josep Ma. Ferrer <[email protected]>, 2019, 2020, 2021.
+# Josep M. Ferrer <[email protected]>, 2019, 2020, 2021.
msgid ""
msgstr ""
"Project-Id-Version: plasma-phone-components\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/ca/plasma_shell_org.kde.plasma.phone.po
new/plasma-phone-components-5.23.1/po/ca/plasma_shell_org.kde.plasma.phone.po
---
old/plasma-phone-components-5.23.0/po/ca/plasma_shell_org.kde.plasma.phone.po
2021-10-07 13:46:15.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/ca/plasma_shell_org.kde.plasma.phone.po
2021-10-19 14:58:59.000000000 +0200
@@ -4,14 +4,14 @@
# version 3 or later versions approved by the membership of KDE e.V.
#
# Antoni Bella P??rez <[email protected]>, 2019.
-# Josep Ma. Ferrer <[email protected]>, 2019, 2020.
+# Josep M. Ferrer <[email protected]>, 2019, 2020.
msgid ""
msgstr ""
"Project-Id-Version: plasma-phone-components\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-05-29 00:18+0000\n"
"PO-Revision-Date: 2020-10-30 12:35+0100\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"Last-Translator: Josep M. Ferrer <[email protected]>\n"
"Language-Team: Catalan <[email protected]>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/en_GB/plasma_applet_org.kde.phone.panel.po
new/plasma-phone-components-5.23.1/po/en_GB/plasma_applet_org.kde.phone.panel.po
---
old/plasma-phone-components-5.23.0/po/en_GB/plasma_applet_org.kde.phone.panel.po
2021-10-07 13:46:17.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/en_GB/plasma_applet_org.kde.phone.panel.po
2021-10-19 14:59:01.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: plasma-phone-components\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-09-30 01:38+0000\n"
-"PO-Revision-Date: 2021-09-10 13:22+0100\n"
+"PO-Revision-Date: 2021-10-10 12:12+0100\n"
"Last-Translator: Steve Allewell <[email protected]>\n"
"Language-Team: British English <[email protected]>\n"
"Language: en_GB\n"
@@ -23,10 +23,9 @@
msgstr "%1%"
#: package/contents/ui/indicators/providers/SignalStrengthProvider.qml:18
-#, fuzzy, kde-format
-#| msgid "Sim locked"
+#, kde-format
msgid "Sim Locked"
-msgstr "SIM locked"
+msgstr "Sim Locked"
#: package/contents/ui/indicators/providers/VolumeProvider.qml:158
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/fi/plasma_applet_org.kde.phone.panel.po
new/plasma-phone-components-5.23.1/po/fi/plasma_applet_org.kde.phone.panel.po
---
old/plasma-phone-components-5.23.0/po/fi/plasma_applet_org.kde.phone.panel.po
2021-10-07 13:46:18.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/fi/plasma_applet_org.kde.phone.panel.po
2021-10-19 14:59:02.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: plasma-phone-components\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-09-30 01:38+0000\n"
-"PO-Revision-Date: 2021-09-17 15:39+0300\n"
+"PO-Revision-Date: 2021-10-12 16:57+0300\n"
"Last-Translator: Tommi Nieminen <[email protected]>\n"
"Language-Team: Finnish <[email protected]>\n"
"Language: fi\n"
@@ -23,10 +23,9 @@
msgstr "%1 %"
#: package/contents/ui/indicators/providers/SignalStrengthProvider.qml:18
-#, fuzzy, kde-format
-#| msgid "Sim locked"
+#, kde-format
msgid "Sim Locked"
-msgstr "SIM on lukittu"
+msgstr "SIM lukittu"
#: package/contents/ui/indicators/providers/VolumeProvider.qml:158
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/hu/plasma_applet_org.kde.phone.panel.po
new/plasma-phone-components-5.23.1/po/hu/plasma_applet_org.kde.phone.panel.po
---
old/plasma-phone-components-5.23.0/po/hu/plasma_applet_org.kde.phone.panel.po
2021-10-07 13:46:20.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/hu/plasma_applet_org.kde.phone.panel.po
2021-10-19 14:59:04.000000000 +0200
@@ -2,20 +2,21 @@
# This file is distributed under the same license as the
plasma-phone-components package.
#
# Krist??f Kiszel <[email protected]>, 2019, 2020.
+# Kristof Kiszel <[email protected]>, 2021.
msgid ""
msgstr ""
"Project-Id-Version: plasma-phone-components\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-09-30 01:38+0000\n"
-"PO-Revision-Date: 2020-12-17 20:32+0100\n"
-"Last-Translator: Krist??f Kiszel <[email protected]>\n"
+"PO-Revision-Date: 2021-10-17 16:06+0200\n"
+"Last-Translator: Kristof Kiszel <[email protected]>\n"
"Language-Team: Hungarian <[email protected]>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 21.03.70\n"
+"X-Generator: Lokalize 21.08.2\n"
#: package/contents/ui/indicators/Battery.qml:35
#, kde-format
@@ -67,7 +68,7 @@
#: package/contents/ui/quicksettings/SettingsModel.qml:50
#, kde-format
msgid "Wi-Fi"
-msgstr ""
+msgstr "Wi-Fi"
#: package/contents/ui/quicksettings/SettingsModel.qml:59
#, kde-format
@@ -102,48 +103,47 @@
#: package/contents/ui/volumeosd/AudioApplet.qml:74
#, kde-format
msgid "Outputs"
-msgstr ""
+msgstr "Kimenetek"
#: package/contents/ui/volumeosd/AudioApplet.qml:102
#, kde-format
msgid "Inputs"
-msgstr ""
+msgstr "Bementek"
#: package/contents/ui/volumeosd/AudioApplet.qml:131
#, kde-format
msgid "Playback Streams"
-msgstr ""
+msgstr "Lej??tsz??si adatfolyam"
#: package/contents/ui/volumeosd/AudioApplet.qml:181
#, kde-format
msgid "Recording Streams"
-msgstr ""
+msgstr "Felv??teli adatfolyam"
#: package/contents/ui/volumeosd/DeviceListItem.qml:25
#, kde-format
msgctxt "label of device items"
msgid "%1 (%2)"
-msgstr ""
+msgstr "%1 (%2)"
#: package/contents/ui/volumeosd/DeviceListItem.qml:34
#, kde-format
msgid "Device name not found"
-msgstr ""
+msgstr "Az eszk??zn??v nem tal??lhat??"
#: package/contents/ui/volumeosd/ListItemBase.qml:109
#, kde-format
msgid "Show additional options for %1"
-msgstr ""
+msgstr "%1 tov??bbi be??ll??t??sainak megjelen??t??se"
#: package/contents/ui/volumeosd/ListItemBase.qml:165
#, kde-format
msgctxt "Accessibility data on volume slider"
msgid "Adjust volume for %1"
-msgstr ""
+msgstr "%1 hangerej??nek be??ll??t??sa"
#: package/contents/ui/volumeosd/ListItemBase.qml:247
-#, fuzzy, kde-format
-#| msgid "%1%"
+#, kde-format
msgctxt "volume percentage"
msgid "%1%"
msgstr "%1%"
@@ -152,37 +152,36 @@
#, kde-format
msgctxt "only used for sizing, should be widest possible string"
msgid "100%"
-msgstr ""
+msgstr "100%"
#: package/contents/ui/volumeosd/StreamListItem.qml:21
#, kde-format
msgid "Notification Sounds"
-msgstr ""
+msgstr "??rtes??t??si hangok"
#: package/contents/ui/volumeosd/StreamListItem.qml:24
#, kde-format
msgctxt "label of stream items"
msgid "%1: %2"
-msgstr ""
+msgstr "%1: %2"
#: package/contents/ui/volumeosd/StreamListItem.qml:29
#, kde-format
msgid "Stream name not found"
-msgstr ""
+msgstr "Az adatfolyam neve nem tal??lhat??"
#: package/contents/ui/volumeosd/VolumeOsd.qml:106
#, kde-format
msgid "Unmute"
-msgstr ""
+msgstr "Visszahangos??t??s"
#: package/contents/ui/volumeosd/VolumeOsd.qml:130
#, kde-format
msgid "100%"
-msgstr ""
+msgstr "100%"
#: package/contents/ui/volumeosd/VolumeOsd.qml:140
-#, fuzzy, kde-format
-#| msgid "%1%"
+#, kde-format
msgctxt "Percentage value"
msgid "%1%"
msgstr "%1%"
@@ -190,18 +189,17 @@
#: package/contents/ui/volumeosd/VolumeOsd.qml:160
#, kde-format
msgid "Open audio settings"
-msgstr ""
+msgstr "Hangbe??ll??t??sok megnyit??sa"
#: package/contents/ui/volumeosd/VolumeOsd.qml:173
-#, fuzzy, kde-format
-#| msgid "Settings"
+#, kde-format
msgid "Audio Settings"
-msgstr "Be??ll??t??sok"
+msgstr "Hangbe??ll??t??sok"
#: package/contents/ui/volumeosd/VolumeOsd.qml:180
#, kde-format
msgid "Toggle showing audio streams"
-msgstr ""
+msgstr "Hangfolyamok megjelen??t??s??nek kapcsol??sa"
#: phonepanel.cpp:180
#, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_applet_org.kde.phone.activities.po
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_applet_org.kde.phone.activities.po
---
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_applet_org.kde.phone.activities.po
2021-10-07 13:46:31.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_applet_org.kde.phone.activities.po
2021-10-19 14:59:14.000000000 +0200
@@ -7,7 +7,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-03-04 02:55+0100\n"
-"PO-Revision-Date: 2021-09-27 13:10\n"
+"PO-Revision-Date: 2021-10-10 03:53\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_applet_org.kde.phone.krunner.po
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_applet_org.kde.phone.krunner.po
---
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_applet_org.kde.phone.krunner.po
2021-10-07 13:46:31.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_applet_org.kde.phone.krunner.po
2021-10-19 14:59:14.000000000 +0200
@@ -3,7 +3,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-05-05 00:20+0000\n"
-"PO-Revision-Date: 2021-09-27 13:10\n"
+"PO-Revision-Date: 2021-10-10 03:53\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_applet_org.kde.phone.panel.po
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_applet_org.kde.phone.panel.po
---
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_applet_org.kde.phone.panel.po
2021-10-07 13:46:31.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_applet_org.kde.phone.panel.po
2021-10-19 14:59:14.000000000 +0200
@@ -3,7 +3,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-09-30 01:38+0000\n"
-"PO-Revision-Date: 2021-09-27 13:10\n"
+"PO-Revision-Date: 2021-10-10 03:53\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_shell_org.kde.plasma.phone.po
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_shell_org.kde.plasma.phone.po
---
old/plasma-phone-components-5.23.0/po/zh_CN/plasma_shell_org.kde.plasma.phone.po
2021-10-07 13:46:31.000000000 +0200
+++
new/plasma-phone-components-5.23.1/po/zh_CN/plasma_shell_org.kde.plasma.phone.po
2021-10-19 14:59:14.000000000 +0200
@@ -3,7 +3,7 @@
"Project-Id-Version: kdeorg\n"
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
"POT-Creation-Date: 2021-05-29 00:18+0000\n"
-"PO-Revision-Date: 2021-09-27 13:10\n"
+"PO-Revision-Date: 2021-10-10 03:53\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/quicksettings/airplanemode/metadata.desktop
new/plasma-phone-components-5.23.1/quicksettings/airplanemode/metadata.desktop
---
old/plasma-phone-components-5.23.0/quicksettings/airplanemode/metadata.desktop
2021-10-07 13:46:12.000000000 +0200
+++
new/plasma-phone-components-5.23.1/quicksettings/airplanemode/metadata.desktop
2021-10-19 14:58:57.000000000 +0200
@@ -2,9 +2,12 @@
Name=Airplane Mode
Name[ca]=Mode avi??
Name[cs]=Re??im v Letadle
+Name[en_GB]=Airplane Mode
Name[es]=Modo avi??n
Name[eu]=Hegaldi modua
+Name[fi]=Lentokonetila
Name[fr]=Mode Avion
+Name[hu]=Rep??l??s ??zemm??d
Name[ia]=Modo aeroplano
Name[nl]=Vliegtuigmodus
Name[nn]=Flymodus
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/plasma-phone-components-5.23.0/quicksettings/nightcolor/metadata.desktop
new/plasma-phone-components-5.23.1/quicksettings/nightcolor/metadata.desktop
---
old/plasma-phone-components-5.23.0/quicksettings/nightcolor/metadata.desktop
2021-10-07 13:46:12.000000000 +0200
+++
new/plasma-phone-components-5.23.1/quicksettings/nightcolor/metadata.desktop
2021-10-19 14:58:57.000000000 +0200
@@ -7,6 +7,7 @@
Name[eu]=Gaueko kolorea
Name[fi]=Y??v??ri
Name[fr]=Couleur de nuit
+Name[hu]=??jszakai sz??nek
Name[ia]=Color de Nocte
Name[it]=Colore notturno
Name[ko]=?????? ??????