Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plasma5-mobile for openSUSE:Factory checked in at 2022-10-29 20:16:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plasma5-mobile (Old) and /work/SRC/openSUSE:Factory/.plasma5-mobile.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-mobile" Sat Oct 29 20:16:18 2022 rev:9 rq:1031885 version:5.26.2 Changes: -------- --- /work/SRC/openSUSE:Factory/plasma5-mobile/plasma5-mobile.changes 2022-10-20 11:11:31.159996306 +0200 +++ /work/SRC/openSUSE:Factory/.plasma5-mobile.new.2275/plasma5-mobile.changes 2022-10-29 20:17:34.766361771 +0200 @@ -1,0 +2,13 @@ +Wed Oct 26 14:16:16 UTC 2022 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to 5.26.2 + * New bugfix release + * For more details please see: + * https://kde.org/announcements/plasma/5/5.26.2 +- Changes since 5.26.1: + * mmplugin: Cleanup signals + * dataproviders: Fix mobile provider label + * mmplugin: Ensure variables are reset properly + * mmplugin: Flesh out update signals and behaviour + +------------------------------------------------------------------- Old: ---- plasma-mobile-5.26.1.tar.xz plasma-mobile-5.26.1.tar.xz.sig New: ---- plasma-mobile-5.26.2.tar.xz plasma-mobile-5.26.2.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plasma5-mobile.spec ++++++ --- /var/tmp/diff_new_pack.K16787/_old 2022-10-29 20:17:35.378365031 +0200 +++ /var/tmp/diff_new_pack.K16787/_new 2022-10-29 20:17:35.382365052 +0200 @@ -24,7 +24,7 @@ %bcond_without released Name: plasma5-mobile -Version: 5.26.1 +Version: 5.26.2 Release: 0 # Full Plasma 5 version (e.g. 5.9.3) %{!?_plasma5_bugfix: %define _plasma5_bugfix %{version}} ++++++ plasma-mobile-5.26.1.tar.xz -> plasma-mobile-5.26.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/CMakeLists.txt new/plasma-mobile-5.26.2/CMakeLists.txt --- old/plasma-mobile-5.26.1/CMakeLists.txt 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/CMakeLists.txt 2022-10-26 12:11:33.000000000 +0200 @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.16) project(plasma-mobile) -set(PROJECT_VERSION "5.26.1") +set(PROJECT_VERSION "5.26.2") set(PROJECT_VERSION_MAJOR 5) set(QT_MIN_VERSION "5.15.2") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/components/mmplugin/signalindicator.cpp new/plasma-mobile-5.26.2/components/mmplugin/signalindicator.cpp --- old/plasma-mobile-5.26.1/components/mmplugin/signalindicator.cpp 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/components/mmplugin/signalindicator.cpp 2022-10-26 12:11:33.000000000 +0200 @@ -4,14 +4,29 @@ #include <NetworkManagerQt/GsmSetting> #include <NetworkManagerQt/Manager> +#include <NetworkManagerQt/Settings> +#include <NetworkManagerQt/Utils> #include "signalindicator.h" -SignalIndicator::SignalIndicator() -{ - connect(ModemManager::notifier(), &ModemManager::Notifier::modemAdded, this, &SignalIndicator::updateModem); - connect(ModemManager::notifier(), &ModemManager::Notifier::modemRemoved, this, &SignalIndicator::updateModem); - updateModem(); +SignalIndicator::SignalIndicator(QObject *parent) + : QObject{parent} + , m_nmModem{nullptr} + , m_modemDevice{nullptr} + , m_modem{nullptr} + , m_3gppModem{nullptr} +{ + connect(ModemManager::notifier(), &ModemManager::Notifier::modemAdded, this, &SignalIndicator::updateModemManagerModem); + connect(ModemManager::notifier(), &ModemManager::Notifier::modemRemoved, this, &SignalIndicator::updateModemManagerModem); + + connect(NetworkManager::settingsNotifier(), &NetworkManager::SettingsNotifier::connectionAdded, this, &SignalIndicator::mobileDataEnabledChanged); + connect(NetworkManager::settingsNotifier(), &NetworkManager::SettingsNotifier::connectionRemoved, this, &SignalIndicator::mobileDataEnabledChanged); + connect(NetworkManager::notifier(), &NetworkManager::Notifier::activeConnectionAdded, this, &SignalIndicator::mobileDataEnabledChanged); + connect(NetworkManager::notifier(), &NetworkManager::Notifier::activeConnectionRemoved, this, &SignalIndicator::mobileDataEnabledChanged); + connect(NetworkManager::notifier(), &NetworkManager::Notifier::deviceAdded, this, &SignalIndicator::updateNetworkManagerModem); + connect(NetworkManager::notifier(), &NetworkManager::Notifier::deviceRemoved, this, &SignalIndicator::updateNetworkManagerModem); + + updateModemManagerModem(); } int SignalIndicator::strength() const @@ -27,30 +42,27 @@ return m_3gppModem ? m_3gppModem->operatorName() : QString(); } -bool SignalIndicator::simLocked() const +bool SignalIndicator::modemAvailable() const { - if (!m_modem) { - return false; - } - return m_modem->unlockRequired() == MM_MODEM_LOCK_SIM_PIN; + return !m_modem.isNull(); } -bool SignalIndicator::simEmpty() const +bool SignalIndicator::simLocked() const { if (!m_modem) { return false; } - return m_modemDevice && m_modemDevice->sim() && m_modemDevice->sim()->uni() == QStringLiteral("/"); + return m_modem->unlockRequired() == MM_MODEM_LOCK_SIM_PIN; } -bool SignalIndicator::available() const +bool SignalIndicator::simEmpty() const { - return !ModemManager::modemDevices().isEmpty(); + return !m_modemDevice || !m_modemDevice->sim() || (m_modemDevice->sim()->uni() == QStringLiteral("/")); } bool SignalIndicator::mobileDataSupported() const { - return m_nmModem && m_modemDevice->sim() && !simEmpty(); + return m_nmModem && !simEmpty(); } bool SignalIndicator::mobileDataEnabled() const @@ -98,7 +110,7 @@ con->settings()->setAutoconnect(false); con->update(con->settings()->toMap()); } - m_nmModem->disconnectInterface().waitForFinished(); + m_nmModem->disconnectInterface(); } else { m_nmModem->setAutoconnect(true); // activate the connection that was last used @@ -125,32 +137,22 @@ } } -void SignalIndicator::updateModem() +void SignalIndicator::updateModemManagerModem() { - if (!available()) { + m_modemDevice = nullptr; + m_modem = nullptr; + m_3gppModem = nullptr; + + if (ModemManager::modemDevices().isEmpty()) { qWarning() << "No modems available"; return; } - // we assume that there is a single modem + // TODO: we assume that there is a single modem for the time being m_modemDevice = ModemManager::modemDevices()[0]; m_modem = m_modemDevice->modemInterface(); m_3gppModem = m_modemDevice->interface(ModemManager::ModemDevice::GsmInterface).objectCast<ModemManager::Modem3gpp>(); - // find networkmanager modem - for (NetworkManager::Device::Ptr nmDevice : NetworkManager::networkInterfaces()) { - if (nmDevice->udi() == m_modemDevice->uni()) { - m_nmModem = nmDevice.objectCast<NetworkManager::ModemDevice>(); - - connect(m_nmModem.get(), &NetworkManager::Device::autoconnectChanged, this, [this]() { - Q_EMIT mobileDataEnabledChanged(); - }); - connect(m_nmModem.get(), &NetworkManager::Device::stateChanged, this, [this](auto, auto, auto) { - Q_EMIT mobileDataEnabledChanged(); - }); - } - } - connect(m_modemDevice->sim().get(), &ModemManager::Sim::simIdentifierChanged, this, &SignalIndicator::simEmptyChanged); if (m_modem) { @@ -161,7 +163,32 @@ connect(m_3gppModem.get(), &ModemManager::Modem3gpp::operatorNameChanged, this, &SignalIndicator::nameChanged); } - Q_EMIT mobileDataSupportedChanged(); + updateNetworkManagerModem(); + Q_EMIT nameChanged(); - Q_EMIT availableChanged(); + Q_EMIT strengthChanged(); + Q_EMIT modemAvailableChanged(); +} + +void SignalIndicator::updateNetworkManagerModem() +{ + m_nmModem = nullptr; + if (!m_modemDevice) { + return; + } + + // find networkmanager modem + for (NetworkManager::Device::Ptr nmDevice : NetworkManager::networkInterfaces()) { + if (nmDevice->udi() == m_modemDevice->uni()) { + m_nmModem = nmDevice.objectCast<NetworkManager::ModemDevice>(); + + connect(m_nmModem.get(), &NetworkManager::Device::autoconnectChanged, this, &SignalIndicator::mobileDataEnabledChanged); + connect(m_nmModem.get(), &NetworkManager::Device::stateChanged, this, &SignalIndicator::mobileDataEnabledChanged); + connect(m_nmModem.get(), &NetworkManager::Device::availableConnectionAppeared, this, &SignalIndicator::mobileDataEnabledChanged); + connect(m_nmModem.get(), &NetworkManager::Device::availableConnectionDisappeared, this, &SignalIndicator::mobileDataEnabledChanged); + } + } + + Q_EMIT mobileDataSupportedChanged(); + Q_EMIT mobileDataEnabledChanged(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/components/mmplugin/signalindicator.h new/plasma-mobile-5.26.2/components/mmplugin/signalindicator.h --- old/plasma-mobile-5.26.1/components/mmplugin/signalindicator.h 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/components/mmplugin/signalindicator.h 2022-10-26 12:11:33.000000000 +0200 @@ -19,21 +19,21 @@ Q_PROPERTY(int strength READ strength NOTIFY strengthChanged) Q_PROPERTY(QString name READ name NOTIFY nameChanged) + Q_PROPERTY(bool modemAvailable READ modemAvailable NOTIFY modemAvailableChanged) Q_PROPERTY(bool simLocked READ simLocked NOTIFY simLockedChanged) Q_PROPERTY(bool simEmpty READ simEmpty NOTIFY simEmptyChanged) - Q_PROPERTY(bool available READ available NOTIFY availableChanged) Q_PROPERTY(bool mobileDataSupported READ mobileDataSupported NOTIFY mobileDataSupportedChanged) Q_PROPERTY(bool mobileDataEnabled READ mobileDataEnabled WRITE setMobileDataEnabled NOTIFY mobileDataEnabledChanged) Q_PROPERTY(bool needsAPNAdded READ needsAPNAdded NOTIFY mobileDataEnabledChanged) public: - SignalIndicator(); + SignalIndicator(QObject *parent = nullptr); int strength() const; QString name() const; + bool modemAvailable() const; bool simLocked() const; bool simEmpty() const; - bool available() const; bool mobileDataSupported() const; bool mobileDataEnabled() const; bool needsAPNAdded() const; @@ -43,9 +43,9 @@ Q_SIGNALS: void strengthChanged(); void nameChanged(); + void modemAvailableChanged(); void simLockedChanged(); void simEmptyChanged(); - void availableChanged(); void mobileDataSupportedChanged(); void mobileDataEnabledChanged(); @@ -55,5 +55,6 @@ ModemManager::Modem::Ptr m_modem; ModemManager::Modem3gpp::Ptr m_3gppModem; - void updateModem(); + void updateModemManagerModem(); + void updateNetworkManagerModem(); }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/components/mobileshell/qml/dataproviders/SignalStrengthProvider.qml new/plasma-mobile-5.26.2/components/mobileshell/qml/dataproviders/SignalStrengthProvider.qml --- old/plasma-mobile-5.26.1/components/mobileshell/qml/dataproviders/SignalStrengthProvider.qml 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/components/mobileshell/qml/dataproviders/SignalStrengthProvider.qml 2022-10-26 12:11:33.000000000 +0200 @@ -15,7 +15,8 @@ property string icon: "network-mobile-" + Math.floor(SignalIndicator.strength / 20) * 20 - property string label: !SignalIndicator.available ? "" - : SignalIndicator.simLocked ? i18n("SIM Locked") : SignalIndicator.name + property string label: SignalIndicator.simLocked ? i18n("SIM Locked") : SignalIndicator.name + + property bool showIndicator: SignalIndicator.modemAvailable } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/components/mobileshell/qml/statusbar/indicators/SignalStrengthIndicator.qml new/plasma-mobile-5.26.2/components/mobileshell/qml/statusbar/indicators/SignalStrengthIndicator.qml --- old/plasma-mobile-5.26.1/components/mobileshell/qml/statusbar/indicators/SignalStrengthIndicator.qml 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/components/mobileshell/qml/statusbar/indicators/SignalStrengthIndicator.qml 2022-10-26 12:11:33.000000000 +0200 @@ -37,7 +37,7 @@ source: provider.icon // don't show mobile indicator icon if the networkmanager one is already showing - visible: !isInternetIndicatorMobileData + visible: !isInternetIndicatorMobileData && provider.showIndicator } PlasmaComponents.Label { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/po/zh_CN/plasma_applet_org.kde.phone.homescreen.po new/plasma-mobile-5.26.2/po/zh_CN/plasma_applet_org.kde.phone.homescreen.po --- old/plasma-mobile-5.26.1/po/zh_CN/plasma_applet_org.kde.phone.homescreen.po 2022-10-18 12:40:22.000000000 +0200 +++ new/plasma-mobile-5.26.2/po/zh_CN/plasma_applet_org.kde.phone.homescreen.po 2022-10-26 12:11:52.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-05-28 01:02+0000\n" -"PO-Revision-Date: 2022-10-02 15:52\n" +"PO-Revision-Date: 2022-10-22 05:32\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-mobile-5.26.1/po/zh_CN/plasma_applet_org.kde.phone.homescreen.simple.po new/plasma-mobile-5.26.2/po/zh_CN/plasma_applet_org.kde.phone.homescreen.simple.po --- old/plasma-mobile-5.26.1/po/zh_CN/plasma_applet_org.kde.phone.homescreen.simple.po 2022-10-18 12:40:22.000000000 +0200 +++ new/plasma-mobile-5.26.2/po/zh_CN/plasma_applet_org.kde.phone.homescreen.simple.po 2022-10-26 12:11:52.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-09-19 02:14+0000\n" -"PO-Revision-Date: 2022-10-02 15:52\n" +"PO-Revision-Date: 2022-10-22 05:32\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-mobile-5.26.1/po/zh_CN/plasma_shell_org.kde.plasma.phone.po new/plasma-mobile-5.26.2/po/zh_CN/plasma_shell_org.kde.plasma.phone.po --- old/plasma-mobile-5.26.1/po/zh_CN/plasma_shell_org.kde.plasma.phone.po 2022-10-18 12:40:22.000000000 +0200 +++ new/plasma-mobile-5.26.2/po/zh_CN/plasma_shell_org.kde.plasma.phone.po 2022-10-26 12:11:52.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-09-11 00:46+0000\n" -"PO-Revision-Date: 2022-10-02 15:52\n" +"PO-Revision-Date: 2022-10-22 05:32\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-mobile-5.26.1/po/zh_TW/plasma_applet_org.kde.phone.homescreen.po new/plasma-mobile-5.26.2/po/zh_TW/plasma_applet_org.kde.phone.homescreen.po --- old/plasma-mobile-5.26.1/po/zh_TW/plasma_applet_org.kde.phone.homescreen.po 1970-01-01 01:00:00.000000000 +0100 +++ new/plasma-mobile-5.26.2/po/zh_TW/plasma_applet_org.kde.phone.homescreen.po 2022-10-26 12:11:52.000000000 +0200 @@ -0,0 +1,29 @@ +# Chinese translations for plasma-mobile package +# plasma-mobile ???????????????????????????. +# Copyright (C) 2022 This file is copyright: +# This file is distributed under the same license as the plasma-mobile package. +# Automatically generated, 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: plasma-mobile\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2022-05-28 01:02+0000\n" +"PO-Revision-Date: 2022-05-28 01:02+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: package/contents/ui/appdrawer/AppDrawerHeader.qml:37 +#, kde-format +msgid "Applications" +msgstr "" + +#: package/contents/ui/private/ConfigOverlay.qml:98 +#, kde-format +msgid "Remove" +msgstr "" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/po/zh_TW/plasma_applet_org.kde.phone.homescreen.simple.po new/plasma-mobile-5.26.2/po/zh_TW/plasma_applet_org.kde.phone.homescreen.simple.po --- old/plasma-mobile-5.26.1/po/zh_TW/plasma_applet_org.kde.phone.homescreen.simple.po 1970-01-01 01:00:00.000000000 +0100 +++ new/plasma-mobile-5.26.2/po/zh_TW/plasma_applet_org.kde.phone.homescreen.simple.po 2022-10-26 12:11:52.000000000 +0200 @@ -0,0 +1,51 @@ +# Chinese translations for plasma-mobile package +# plasma-mobile ???????????????????????????. +# Copyright (C) 2022 This file is copyright: +# This file is distributed under the same license as the plasma-mobile package. +# Automatically generated, 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: plasma-mobile\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2022-09-19 02:14+0000\n" +"PO-Revision-Date: 2022-06-09 00:57+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: package/contents/ui/FavoritesGrid.qml:224 +#: package/contents/ui/FolderGrid.qml:203 +#, kde-format +msgid "Remove from favourites" +msgstr "" + +#: package/contents/ui/FavoritesGrid.qml:296 +#, kde-format +msgid "Add applications to your favourites so they show up here." +msgstr "" + +#: package/contents/ui/FolderGrid.qml:208 +#, kde-format +msgid "Move out of folder" +msgstr "" + +#: package/contents/ui/GridAppDelegate.qml:65 +#, kde-format +msgid "Add to favourites" +msgstr "" + +#: package/contents/ui/GridAppList.qml:57 +#, kde-format +msgid "Applications" +msgstr "" + +#: pinnedmodel.cpp:148 +#, kde-format +msgctxt "Default application folder name." +msgid "Folder" +msgstr "" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/po/zh_TW/plasma_shell_org.kde.plasma.phone.po new/plasma-mobile-5.26.2/po/zh_TW/plasma_shell_org.kde.plasma.phone.po --- old/plasma-mobile-5.26.1/po/zh_TW/plasma_shell_org.kde.plasma.phone.po 1970-01-01 01:00:00.000000000 +0100 +++ new/plasma-mobile-5.26.2/po/zh_TW/plasma_shell_org.kde.plasma.phone.po 2022-10-26 12:11:52.000000000 +0200 @@ -0,0 +1,73 @@ +# Chinese translations for plasma-mobile package +# plasma-mobile ???????????????????????????. +# Copyright (C) 2022 This file is copyright: +# This file is distributed under the same license as the plasma-mobile package. +# +# Automatically generated, 2022. +# Kisaragi Hiu <m...@kisaragi-hiu.com>, 2022. +msgid "" +msgstr "" +"Project-Id-Version: plasma-mobile\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2022-09-11 00:46+0000\n" +"PO-Revision-Date: 2022-10-19 06:53+0900\n" +"Last-Translator: Kisaragi Hiu <m...@kisaragi-hiu.com>\n" +"Language-Team: Traditional Chinese <zh-l...@linux.org.tw>\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Lokalize 22.08.2\n" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:44 +msgid "Layout changes have been restricted by the system administrator" +msgstr "???????????????????????????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:65 +msgid "General" +msgstr "??????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:71 +msgid "Homescreen Layout" +msgstr "???????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:72 +msgid "The homescreen layout to use." +msgstr "??????????????????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:108 +msgid "Wallpaper Plugin" +msgstr "??????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:109 +msgid "The wallpaper plugin to use." +msgstr "?????????????????????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:151 +msgid "Wallpaper Plugins" +msgstr "??????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:156 +msgid "Get New Plugins???" +msgstr "???????????????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:171 +msgid "Layout changes must be applied before other changes can be made" +msgstr "???????????????????????????????????????????????????" + +#: contents/configuration/ConfigurationContainmentAppearance.qml:177 +msgid "Apply now" +msgstr "????????????" + +#: contents/configuration/ContainmentConfiguration.qml:32 +msgid "Wallpaper" +msgstr "??????" + +#: contents/configuration/ContainmentConfiguration.qml:95 +msgid "Change Wallpaper" +msgstr "????????????" + +#: contents/configuration/ContainmentConfiguration.qml:113 +msgid "Configure" +msgstr "??????" \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/quicksettings/donotdisturb/metadata.json new/plasma-mobile-5.26.2/quicksettings/donotdisturb/metadata.json --- old/plasma-mobile-5.26.1/quicksettings/donotdisturb/metadata.json 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/quicksettings/donotdisturb/metadata.json 2022-10-26 12:11:33.000000000 +0200 @@ -65,6 +65,7 @@ "Name[nl]": "Niet storen", "Name[pl]": "Nie przeszkadza??", "Name[pt]": "N??o Incomodar", + "Name[pt_BR]": "N??o perturbe", "Name[ru]": "???? ????????????????????", "Name[sl]": "Ne moti", "Name[sv]": "St??r ej", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/quicksettings/mobiledata/contents/ui/main.qml new/plasma-mobile-5.26.2/quicksettings/mobiledata/contents/ui/main.qml --- old/plasma-mobile-5.26.1/quicksettings/mobiledata/contents/ui/main.qml 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/quicksettings/mobiledata/contents/ui/main.qml 2022-10-26 12:11:33.000000000 +0200 @@ -10,7 +10,9 @@ text: i18n("Mobile Data") icon: "network-modem" status: { - if (PlasmaMM.SignalIndicator.needsAPNAdded) { + if (!PlasmaMM.SignalIndicator.modemAvailable) { + return i18n("Not Available"); + } else if (PlasmaMM.SignalIndicator.needsAPNAdded) { return i18n("APN needs to be configured in the settings"); } else if (PlasmaMM.SignalIndicator.mobileDataSupported) { return enabled ? i18n("On") : i18n("Off"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/quicksettings/record/metadata.json new/plasma-mobile-5.26.2/quicksettings/record/metadata.json --- old/plasma-mobile-5.26.1/quicksettings/record/metadata.json 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/quicksettings/record/metadata.json 2022-10-26 12:11:33.000000000 +0200 @@ -65,6 +65,7 @@ "Name[nl]": "Scherm opnemen", "Name[pl]": "Nagraj ekran", "Name[pt]": "Gravar o Ecr??", + "Name[pt_BR]": "Gravar tela", "Name[ru]": "???????????? ????????????", "Name[sl]": "Posnemi zaslon", "Name[sv]": "Spela in bildsk??rm", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plasma-mobile-5.26.1/quicksettings/screenrotation/package/metadata.json new/plasma-mobile-5.26.2/quicksettings/screenrotation/package/metadata.json --- old/plasma-mobile-5.26.1/quicksettings/screenrotation/package/metadata.json 2022-10-18 12:40:02.000000000 +0200 +++ new/plasma-mobile-5.26.2/quicksettings/screenrotation/package/metadata.json 2022-10-26 12:11:33.000000000 +0200 @@ -45,6 +45,7 @@ "Description[nl]": "Snelle instelling van schermrotatie", "Description[pl]": "Szybkie ustawienie obracania ekranu", "Description[pt]": "Configura????o r??pida da rota????o do ecr??", + "Description[pt_BR]": "Configura????es r??pidas de rota????o da tela", "Description[ru]": "?????????????? ?????????????????? ???????????????? ????????????", "Description[sl]": "Hitre nastavitve sukanja zaslona", "Description[sv]": "Snabbinst??llning av sk??rmrotation",