Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package plasma6-mobile for openSUSE:Factory 
checked in at 2024-07-17 15:14:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma6-mobile (Old)
 and      /work/SRC/openSUSE:Factory/.plasma6-mobile.new.17339 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "plasma6-mobile"

Wed Jul 17 15:14:47 2024 rev:9 rq:1188013 version:6.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma6-mobile/plasma6-mobile.changes    
2024-07-04 16:24:42.958669538 +0200
+++ /work/SRC/openSUSE:Factory/.plasma6-mobile.new.17339/plasma6-mobile.changes 
2024-07-17 15:15:38.103131018 +0200
@@ -1,0 +2,20 @@
+Tue Jul 16 13:24:51 UTC 2024 - Fabian Vogt <fab...@ritter-vogt.de>
+
+- Update to 6.1.3:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.1.3
+- Changes since 6.1.2:
+  * update version for new release
+  * homescreens/folio: Close settings view when home button is pressed
+  * homescreens/folio: Make it easier to click on delegate context menus 
without starting drag
+  * homescreens/folio: Fix cube effect typo
+  * Adding translation domains to some dynamic libraries to resolve 
untranslated issues.
+  * homescreens/folio: Halve the needed swipe distance for swipe detection
+  * homescreens/folio: Fix widget config dialogs not having a background
+  * homescreen: Add button to wallpaper selector to go to advanced settings
+  * homescreen: Don't animate after unlock
+  * shellsettingsplugin: Never affect panels when not in Plasma Mobile
+  * taskswitcher: Only enable KWin effect in mobile, have it be managed by 
envmanager
+  * update version for new release
+
+-------------------------------------------------------------------

Old:
----
  plasma-mobile-6.1.2.tar.xz
  plasma-mobile-6.1.2.tar.xz.sig

New:
----
  plasma-mobile-6.1.3.tar.xz
  plasma-mobile-6.1.3.tar.xz.sig

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

Other differences:
------------------
++++++ plasma6-mobile.spec ++++++
--- /var/tmp/diff_new_pack.saDhgu/_old  2024-07-17 15:15:38.627150206 +0200
+++ /var/tmp/diff_new_pack.saDhgu/_new  2024-07-17 15:15:38.627150206 +0200
@@ -30,7 +30,7 @@
 %{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk 
-F. '{print $1"."$2}')}
 %bcond_without released
 Name:           plasma6-mobile
-Version:        6.1.2
+Version:        6.1.3
 Release:        0
 # Full Plasma 6 version (e.g. 5.9.3)
 %{!?_plasma6_bugfix: %define _plasma6_bugfix %{version}}

++++++ plasma-mobile-6.1.2.tar.xz -> plasma-mobile-6.1.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/CMakeLists.txt 
new/plasma-mobile-6.1.3/CMakeLists.txt
--- old/plasma-mobile-6.1.2/CMakeLists.txt      2024-07-02 11:13:58.000000000 
+0200
+++ new/plasma-mobile-6.1.3/CMakeLists.txt      2024-07-16 13:09:34.000000000 
+0200
@@ -7,10 +7,10 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(plasma-mobile)
-set(PROJECT_VERSION "6.1.2")
+set(PROJECT_VERSION "6.1.3")
 set(PROJECT_VERSION_MAJOR 6)
 
-set(PROJECT_DEP_VERSION "6.1.2")
+set(PROJECT_DEP_VERSION "6.1.3")
 set(QT_MIN_VERSION "6.6.0")
 set(KF6_MIN_VERSION "6.2.0")
 set(KDE_COMPILERSETTINGS_LEVEL "5.82")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/components/mobileshell/components/swipearea.cpp 
new/plasma-mobile-6.1.3/components/mobileshell/components/swipearea.cpp
--- old/plasma-mobile-6.1.2/components/mobileshell/components/swipearea.cpp     
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/components/mobileshell/components/swipearea.cpp     
2024-07-16 13:09:34.000000000 +0200
@@ -284,7 +284,7 @@
         m_lastPos = point;
         m_stealMouse = true;
         setMoving(true);
-        Q_EMIT swipeStarted(m_startPos);
+        Q_EMIT swipeStarted(m_startPos, m_pressPos);
     }
 
     const QVector2D totalDelta = QVector2D(point - m_startPos);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/components/mobileshell/components/swipearea.h 
new/plasma-mobile-6.1.3/components/mobileshell/components/swipearea.h
--- old/plasma-mobile-6.1.2/components/mobileshell/components/swipearea.h       
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/components/mobileshell/components/swipearea.h       
2024-07-16 13:09:34.000000000 +0200
@@ -52,7 +52,7 @@
     void pressedChanged();
 
     void swipeEnded();
-    void swipeStarted(QPointF point);
+    void swipeStarted(QPointF currentPoint, QPointF startPoint); // we let the 
user move a couple of pixels for swipe detection
 
     // deltaX, deltaY - amount moved since last swipeMove()
     // totalDeltaX, totalDeltaY - amount move since startedSwipe()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/components/mobileshell/qml/homescreen/HomeScreen.qml 
new/plasma-mobile-6.1.3/components/mobileshell/qml/homescreen/HomeScreen.qml
--- 
old/plasma-mobile-6.1.2/components/mobileshell/qml/homescreen/HomeScreen.qml    
    2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/components/mobileshell/qml/homescreen/HomeScreen.qml    
    2024-07-16 13:09:34.000000000 +0200
@@ -121,19 +121,6 @@
 
 //END API implementation
 
-    Connections {
-        target: MobileShellState.LockscreenDBusClient
-
-        function onLockscreenLocked() {
-            itemContainer.zoomOut();
-        }
-
-        function onLockscreenUnlocked() {
-            // run zoom animation after login
-            itemContainer.zoomIn();
-        }
-    }
-
     Component.onCompleted: {
         // determine the margins used
         evaluateMargins();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/components/mobileshell/qml/homescreen/WallpaperSelector.qml
 
new/plasma-mobile-6.1.3/components/mobileshell/qml/homescreen/WallpaperSelector.qml
--- 
old/plasma-mobile-6.1.2/components/mobileshell/qml/homescreen/WallpaperSelector.qml
 2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/components/mobileshell/qml/homescreen/WallpaperSelector.qml
 2024-07-16 13:09:34.000000000 +0200
@@ -15,24 +15,26 @@
 Controls.Drawer {
     id: imageWallpaperDrawer
     dragMargin: 0
-    
+
     required property bool horizontal
 
+    signal wallpaperSettingsRequested()
+
     onOpened: {
         wallpapersView.forceActiveFocus()
     }
-    
+
     implicitWidth: Kirigami.Units.gridUnit * 10
     implicitHeight: Kirigami.Units.gridUnit * 8
     width: imageWallpaperDrawer.horizontal ? implicitWidth : parent.width
     height: imageWallpaperDrawer.horizontal ? parent.height : implicitHeight
-    
+
     Wallpaper.ImageBackend {
         id: imageWallpaper
     }
-    
+
     background: null
-    
+
     ListView {
         id: wallpapersView
         anchors.fill: parent
@@ -45,7 +47,37 @@
         snapMode: ListView.SnapToItem
         model: imageWallpaper.wallpaperModel
         // onCountChanged: currentIndex =  
Math.min(model.indexOf(configDialog.wallpaperConfiguration["Image"]), 
model.rowCount()-1)
-        headerPositioning: ListView.PullBackHeader
+        headerPositioning: ListView.InlineHeader
+
+        header: Controls.ItemDelegate {
+            id: openSettings
+            width: imageWallpaperDrawer.horizontal ? parent.width : height * 
(imageWallpaperDrawer.width / imageWallpaperDrawer.Screen.height)
+            height: imageWallpaperDrawer.horizontal ? width / 
(imageWallpaperDrawer.Screen.width / imageWallpaperDrawer.Screen.height) : 
parent.height
+            padding: Kirigami.Units.gridUnit / 2
+            leftPadding: padding
+            topPadding: padding
+            rightPadding: padding
+            bottomPadding: padding
+
+            background: Rectangle {
+                color: Qt.rgba(255, 255, 255, (openSettings.down || 
openSettings.highlighted) ? 0.3 : 0.2)
+                radius: Kirigami.Units.gridUnit / 4
+                anchors.fill: parent
+                anchors.margins: Kirigami.Units.gridUnit / 4
+            }
+
+            contentItem: Item {
+                Kirigami.Icon {
+                    anchors.centerIn: parent
+                    implicitHeight: Kirigami.Units.iconSizes.large
+                    implicitWidth: Kirigami.Units.iconSizes.large
+                    source: 'list-add'
+                }
+            }
+
+            onClicked: imageWallpaperDrawer.wallpaperSettingsRequested()
+            Keys.onReturnPressed: clicked();
+        }
 
         delegate: Controls.ItemDelegate {
             width: imageWallpaperDrawer.horizontal ? parent.width : height * 
(imageWallpaperDrawer.width / imageWallpaperDrawer.Screen.height)
@@ -68,7 +100,7 @@
                     wallpapersView.currentIndex = index;
                 }
             }
-            
+
             z: wallpapersView.currentIndex === index ? 2 : 0
             contentItem: Item {
                 Kirigami.Icon {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/components/shellsettingsplugin/mobileshellsettings.cpp 
new/plasma-mobile-6.1.3/components/shellsettingsplugin/mobileshellsettings.cpp
--- 
old/plasma-mobile-6.1.2/components/shellsettingsplugin/mobileshellsettings.cpp  
    2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/components/shellsettingsplugin/mobileshellsettings.cpp  
    2024-07-16 13:09:34.000000000 +0200
@@ -9,6 +9,7 @@
 #include <KIO/CommandLauncherJob>
 #include <KNotificationJobUiDelegate>
 #include <KPluginFactory>
+#include <KRuntimePlatform>
 
 #include <QDBusConnection>
 #include <QDBusMessage>
@@ -154,6 +155,12 @@
 
 void MobileShellSettings::updateNavigationBarsInPlasma(bool 
navigationPanelEnabled)
 {
+    // Do not update panels when not in Plasma Mobile
+    bool isMobilePlatform = 
KRuntimePlatform::runtimePlatform().contains("phone");
+    if (!isMobilePlatform) {
+        return;
+    }
+
     auto message = 
QDBusMessage::createMethodCall(QLatin1String("org.kde.plasmashell"),
                                                   
QLatin1String("/PlasmaShell"),
                                                   
QLatin1String("org.kde.PlasmaShell"),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/CMakeLists.txt 
new/plasma-mobile-6.1.3/containments/homescreens/folio/CMakeLists.txt
--- old/plasma-mobile-6.1.2/containments/homescreens/folio/CMakeLists.txt       
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/containments/homescreens/folio/CMakeLists.txt       
2024-07-16 13:09:34.000000000 +0200
@@ -1,6 +1,8 @@
 # SPDX-FileCopyrightText: 2023 Devin Lin <de...@kde.org>
 # SPDX-License-Identifier: GPL-2.0-or-later
 
+add_definitions(-DTRANSLATION_DOMAIN=\"plasma_applet_org.kde.plasma.mobile.homescreen.folio\")
+
 set(homescreen_SRCS
     homescreen.cpp
     applicationlistmodel.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/homescreenstate.cpp 
new/plasma-mobile-6.1.3/containments/homescreens/folio/homescreenstate.cpp
--- old/plasma-mobile-6.1.2/containments/homescreens/folio/homescreenstate.cpp  
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/containments/homescreens/folio/homescreenstate.cpp  
2024-07-16 13:09:34.000000000 +0200
@@ -868,13 +868,17 @@
     swipeEnded();
 }
 
-void HomeScreenState::swipeStarted()
+void HomeScreenState::swipeStarted(qreal deltaX, qreal deltaY)
 {
     if (m_swipeState != SwipeState::None) {
         return;
     }
 
     setSwipeState(SwipeState::DeterminingSwipeType);
+
+    // the user interaction has already moved a bit (for swipe detection),
+    // so we call the move event too.
+    swipeMoved(deltaX, deltaY, deltaX, deltaY);
 }
 
 void HomeScreenState::swipeEnded()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/homescreenstate.h 
new/plasma-mobile-6.1.3/containments/homescreens/folio/homescreenstate.h
--- old/plasma-mobile-6.1.2/containments/homescreens/folio/homescreenstate.h    
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/containments/homescreens/folio/homescreenstate.h    
2024-07-16 13:09:34.000000000 +0200
@@ -334,7 +334,7 @@
     void cancelDelegateDrag();
 
     // from SwipeArea
-    void swipeStarted();
+    void swipeStarted(qreal deltaX, qreal deltaY);
     void swipeEnded();
     void swipeMoved(qreal totalDeltaX, qreal totalDeltaY, qreal deltaX, qreal 
deltaY);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/AppDrawerGrid.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/AppDrawerGrid.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/AppDrawerGrid.qml
        2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/AppDrawerGrid.qml
        2024-07-16 13:09:34.000000000 +0200
@@ -91,7 +91,7 @@
         height: root.cellHeight
 
         onPressAndHold: {
-            const mappedCoords = 
root.homeScreen.prepareStartDelegateDrag(model.delegate, 
appDelegate.delegateItem);
+            const mappedCoords = 
root.homeScreen.prepareStartDelegateDrag(model.delegate, 
appDelegate.delegateItem, true);
             folio.HomeScreenState.closeAppDrawer();
 
             // we need to adjust because app drawer delegates have a different 
size than regular homescreen delegates
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/HomeScreen.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/HomeScreen.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/HomeScreen.qml
   2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/HomeScreen.qml
   2024-07-16 13:09:34.000000000 +0200
@@ -45,8 +45,13 @@
 
     // called by any delegates when starting drag
     // returns the mapped coordinates to be used in the home screen state
-    function prepareStartDelegateDrag(delegate, item) {
-        swipeArea.setSkipSwipeThreshold(true);
+    function prepareStartDelegateDrag(delegate, item, skipSwipeThreshold) {
+
+        // If the user is prompted with a context menu, they may want to let 
go, and so we keep the detect swipe threshold.
+        // Otherwise, we want to skip detecting a swipe because we know we 
immediately go into delegate dragging.
+        if (skipSwipeThreshold) {
+            swipeArea.setSkipSwipeThreshold(true);
+        }
 
         if (delegate) {
             delegateDragItem.delegate = delegate;
@@ -107,8 +112,10 @@
                 folio.HomeScreenState.swipeState === 
Folio.HomeScreenState.SwipingAppDrawerGrid ||
                 folio.HomeScreenState.viewState !== 
Folio.HomeScreenState.AppDrawerView)
 
-        onSwipeStarted: {
-            homeScreenState.swipeStarted();
+        onSwipeStarted: (currentPos, startPos) => {
+            const deltaX = currentPos.x - startPos.x;
+            const deltaY = currentPos.y - startPos.y;
+            homeScreenState.swipeStarted(deltaX, deltaY);
         }
         onSwipeEnded: {
             homeScreenState.swipeEnded();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/HomeScreenPages.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/HomeScreenPages.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/HomeScreenPages.qml
      2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/HomeScreenPages.qml
      2024-07-16 13:09:34.000000000 +0200
@@ -93,7 +93,7 @@
                 origin.x: (positionX < 0) ?
                             (folio.HomeScreenState.pageWidth / 2) * 
homeScreenPage.progressToCenter :
                             (folio.HomeScreenState.pageWidth / 2) + 
(folio.HomeScreenState.pageWidth / 2) * (1 - homeScreenPage.progressToCenter);
-                origin.y: Folio.HomeScreenState.pageHeight / 2;
+                origin.y: folio.HomeScreenState.pageHeight / 2;
                 axis { x: 0; y: 1; z: 0 }
                 angle: {
                     return Math.min(1, Math.max(0, distanceToCenter / 
root.width)) * 90 * ((positionX > 0) ? 1 : -1)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/delegate/WidgetDelegateConfig.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/delegate/WidgetDelegateConfig.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/delegate/WidgetDelegateConfig.qml
        2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/delegate/WidgetDelegateConfig.qml
        2024-07-16 13:09:34.000000000 +0200
@@ -207,7 +207,6 @@
                 title: i18n('Widget Options')
 
                 // workaround: remove background so that it doesn't remain if 
the widget is deleted (and this is de-initialized without closing)
-                background: null
                 QQC2.Overlay.modal: null
 
                 // close parent dialog too
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/main.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/main.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/main.qml
 2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/main.qml
 2024-07-16 13:09:34.000000000 +0200
@@ -81,7 +81,7 @@
         }
 
         if (isInWindow) {
-            // only minimize windows and go to homescreen when not in docked 
mode
+            // Only minimize windows and go to homescreen when not in docked 
mode
             if (!ShellSettings.Settings.convergenceModeEnabled) {
                 folio.HomeScreenState.closeFolder();
                 folio.HomeScreenState.closeSearchWidget();
@@ -90,7 +90,13 @@
 
                 WindowPlugin.WindowUtil.minimizeAll();
             }
-        } else { // if we are on the homescreen
+
+            // Always ensure settings view is closed
+            if (folio.HomeScreenState.viewState == 
Folio.HomeScreenState.SettingsView) {
+                folio.HomeScreenState.closeSettingsView();
+            }
+
+        } else { // If we are already on the homescreen
             switch (folio.HomeScreenState.viewState) {
                 case Folio.HomeScreenState.PageView:
                     if (folio.HomeScreenState.currentPage === 0) {
@@ -108,6 +114,9 @@
                 case Folio.HomeScreenState.FolderView:
                     folio.HomeScreenState.closeFolder();
                     break;
+                case Folio.HomeScreenState.SettingsView:
+                    folio.HomeScreenState.closeSettingsView();
+                    break;
             }
         }
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/settings/AppletListViewer.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/settings/AppletListViewer.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/settings/AppletListViewer.qml
    2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/settings/AppletListViewer.qml
    2024-07-16 13:09:34.000000000 +0200
@@ -119,7 +119,7 @@
                 root.requestClose();
                 folio.HomeScreenState.closeSettingsView();
 
-                let mappedCoords = 
root.homeScreen.prepareStartDelegateDrag(null, delegate);
+                let mappedCoords = 
root.homeScreen.prepareStartDelegateDrag(null, delegate, true);
                 const widthOffset = folio.HomeScreenState.pageCellWidth / 2;
                 const heightOffset = folio.HomeScreenState.pageCellHeight / 2;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/settings/SettingsComponent.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/settings/SettingsComponent.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/folio/package/contents/ui/settings/SettingsComponent.qml
   2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/folio/package/contents/ui/settings/SettingsComponent.qml
   2024-07-16 13:09:34.000000000 +0200
@@ -190,6 +190,11 @@
             onClosed: {
                 wallpaperSelectorLoader.active = false;
             }
+
+            onWallpaperSettingsRequested: {
+                close();
+                homeScreen.openConfigure();
+            }
         }
     }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/halcyon/CMakeLists.txt 
new/plasma-mobile-6.1.3/containments/homescreens/halcyon/CMakeLists.txt
--- old/plasma-mobile-6.1.2/containments/homescreens/halcyon/CMakeLists.txt     
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/containments/homescreens/halcyon/CMakeLists.txt     
2024-07-16 13:09:34.000000000 +0200
@@ -1,6 +1,8 @@
 # SPDX-FileCopyrightText: 2022-2023 Devin Lin <de...@kde.org>
 # SPDX-License-Identifier: GPL-2.0-or-later
 
+add_definitions(-DTRANSLATION_DOMAIN=\"plasma_applet_org.kde.plasma.mobile.homescreen.halcyon\")
+
 set(homescreen_SRCS
     homescreen.cpp
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/containments/homescreens/halcyon/package/contents/ui/SettingsScreen.qml
 
new/plasma-mobile-6.1.3/containments/homescreens/halcyon/package/contents/ui/SettingsScreen.qml
--- 
old/plasma-mobile-6.1.2/containments/homescreens/halcyon/package/contents/ui/SettingsScreen.qml
     2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/containments/homescreens/halcyon/package/contents/ui/SettingsScreen.qml
     2024-07-16 13:09:34.000000000 +0200
@@ -65,7 +65,7 @@
                         implicitHeight: Kirigami.Units.iconSizes.smallMedium
                         source: 'edit-image'
                     }
-                    
+
                     QQC2.Label {
                         Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
                         text: i18n('Wallpapers')
@@ -93,7 +93,7 @@
                         implicitHeight: Kirigami.Units.iconSizes.smallMedium
                         source: 'settings-configure'
                     }
-                    
+
                     QQC2.Label {
                         Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
                         text: i18n('Settings')
@@ -127,6 +127,10 @@
             onClosed: {
                 wallpaperSelectorLoader.active = false;
             }
+            onWallpaperSettingsRequested: {
+                close();
+                root.homeScreen.openContainmentSettings();
+            }
         }
     }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/envmanager/config.h 
new/plasma-mobile-6.1.3/envmanager/config.h
--- old/plasma-mobile-6.1.2/envmanager/config.h 2024-07-02 11:13:58.000000000 
+0200
+++ new/plasma-mobile-6.1.3/envmanager/config.h 2024-07-16 13:09:34.000000000 
+0200
@@ -40,7 +40,8 @@
             {"Plugins",
              {
                  {"blurEnabled", false}, // disable blur for performance 
reasons, we could reconsider in the future for more powerful devices
-                 {"convergentwindowsEnabled", true} // enable our convergent 
window plugin
+                 {"convergentwindowsEnabled", true}, // enable our convergent 
window plugin
+                 {"mobiletaskswitcherEnabled", true} // ensure the mobile task 
switcher plugin is enabled
              }},
             {"Wayland",
              {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/kwin/mobiletaskswitcher/mobiletaskswitcher.json 
new/plasma-mobile-6.1.3/kwin/mobiletaskswitcher/mobiletaskswitcher.json
--- old/plasma-mobile-6.1.2/kwin/mobiletaskswitcher/mobiletaskswitcher.json     
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/kwin/mobiletaskswitcher/mobiletaskswitcher.json     
2024-07-16 13:09:34.000000000 +0200
@@ -31,7 +31,7 @@
         "Description[x-test]": "xxAllows you to switch between running tasks 
with a mobile interface.xx",
         "Description[zh_CN]": "å…
è®¸æ‚¨ä½¿ç”¨ç§»åŠ¨ç•Œé¢åœ¨æ­£åœ¨è¿è¡Œçš„ä»»åŠ¡ä¹‹é—´åˆ‡æ¢ã€‚",
         "Description[zh_TW]": "讓您用手機介面在執行中的工作項
目之間切換。",
-        "EnabledByDefault": true,
+        "EnabledByDefault": false,
         "License": "GPL",
         "Name": "Mobile Task Switcher",
         "Name[ca@valencia]": "Commutador de tasques del mòbil",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/eu/kcm_mobile_wifi.po 
new/plasma-mobile-6.1.3/po/eu/kcm_mobile_wifi.po
--- old/plasma-mobile-6.1.2/po/eu/kcm_mobile_wifi.po    2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/eu/kcm_mobile_wifi.po    2024-07-16 
13:09:34.000000000 +0200
@@ -1,7 +1,7 @@
 # Translation for kcm_mobile_wifi.po to Euskara/Basque (eu).
 # Copyright (C) 2019-2023 This file is copyright:
 # This file is distributed under the same license as the plasma-nm package.
-# SPDX-FileCopyrightText: 2023 KDE euskaratzeko proiektuko arduraduna 
<xa...@ni.eus>
+# SPDX-FileCopyrightText: 2023, 2024 KDE euskaratzeko proiektuko arduraduna 
<xa...@ni.eus>
 #
 # Translators:
 # Iñigo Salvador Azurmendi <xa...@ni.eus>, 2019, 2020, 2021, 2023.
@@ -10,7 +10,7 @@
 "Project-Id-Version: plasma-mobile\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-02-12 00:39+0000\n"
-"PO-Revision-Date: 2023-12-17 08:58+0100\n"
+"PO-Revision-Date: 2024-07-04 13:04+0200\n"
 "Last-Translator: Iñigo Salvador Azurmendi <xa...@ni.eus>\n"
 "Language-Team: Basque <kde-i18n...@kde.org>\n"
 "Language: eu\n"
@@ -18,7 +18,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 23.08.4\n"
+"X-Generator: Lokalize 24.05.1\n"
 
 #: ui/ConnectDialog.qml:57
 #, kde-format
@@ -78,7 +78,7 @@
 #: ui/NetworkSettings.qml:99
 #, kde-format
 msgid "WPA/WPA2 Personal"
-msgstr "WPA/WPA2 pertsonala"
+msgstr "WPA/WPA2 Pertsonala"
 
 #: ui/NetworkSettings.qml:100
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/fr/kcm_cellular_network.po 
new/plasma-mobile-6.1.3/po/fr/kcm_cellular_network.po
--- old/plasma-mobile-6.1.2/po/fr/kcm_cellular_network.po       2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/fr/kcm_cellular_network.po       2024-07-16 
13:09:34.000000000 +0200
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: 2021, 2022, 2023 Xavier Besnard 
<xavier.besn...@kde.org>
+# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Xavier Besnard 
<xavier.besn...@kde.org>
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-settings\n"
@@ -6,13 +6,13 @@
 "POT-Creation-Date: 2024-06-17 02:35+0000\n"
 "PO-Revision-Date: 2023-12-18 09:41+0100\n"
 "Last-Translator: Xavier BESNARD <xavier.besn...@neuf.fr>\n"
-"Language-Team: French <kde-francoph...@kde.org>\n"
+"Language-Team: French <French <kde-francoph...@kde.org>>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 23.08.4\n"
+"X-Generator: Lokalize 23.08.5\n"
 
 #: modem.cpp:130
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/po/fr/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
 
new/plasma-mobile-6.1.3/po/fr/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
--- 
old/plasma-mobile-6.1.2/po/fr/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
       2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/po/fr/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
       2024-07-16 13:09:34.000000000 +0200
@@ -10,13 +10,13 @@
 "POT-Creation-Date: 2024-06-25 02:25+0000\n"
 "PO-Revision-Date: 2024-02-10 09:57+0100\n"
 "Last-Translator: Xavier Besnard <xavier.besn...@kde.org>\n"
-"Language-Team: fr\n"
+"Language-Team: French <French <kde-francoph...@kde.org>>\n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Lokalize 23.08.4\n"
+"X-Generator: Lokalize 23.08.5\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/gl/kcm_cellular_network.po 
new/plasma-mobile-6.1.3/po/gl/kcm_cellular_network.po
--- old/plasma-mobile-6.1.2/po/gl/kcm_cellular_network.po       2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/gl/kcm_cellular_network.po       2024-07-16 
13:09:34.000000000 +0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: plasma-mobile\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-06-17 02:35+0000\n"
-"PO-Revision-Date: 2024-06-23 13:03+0200\n"
+"PO-Revision-Date: 2024-07-02 17:44+0200\n"
 "Last-Translator: Adrián Chaves (Gallaecio) <adr...@chaves.io>\n"
 "Language-Team: Proxecto Trasno (proxe...@trasno.gal)\n"
 "Language: gl\n"
@@ -525,7 +525,7 @@
 #: ui/EditProfileDialog.qml:14
 #, kde-format
 msgid "Edit APN"
-msgstr "Editar o NPA"
+msgstr "Editar o APN"
 
 #: ui/EditProfileDialog.qml:41
 #, kde-format
@@ -600,7 +600,8 @@
 #: ui/main.qml:80
 #, kde-format
 msgid "An APN needs to be configured to have mobile data."
-msgstr "Para ter datos móbiles necesita configurar un APN."
+msgstr ""
+"Para ter datos móbiles necesita configurar un nome de punto de acceso (APN)."
 
 #: ui/main.qml:82
 #, kde-format
@@ -776,8 +777,9 @@
 "carrier's APN settings by either contacting support or searching online."
 msgstr ""
 "Non é posíbel detectar automaticamente a configuración de conexión do seu 
"
-"fornecedor. Descubra a configuración de APN do seu fornecedor, ben sexa "
-"contactando co seu servizo de asistencia técnica ou buscándoa por Internet."
+"fornecedor. Descubra a configuración de nome de punto de acceso (APN) do seu 
"
+"fornecedor, ben sexa contactando co seu servizo de asistencia técnica ou "
+"buscándoa por Internet."
 
 #: ui/ProfileList.qml:72
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/gl/kcm_mobileshell.po 
new/plasma-mobile-6.1.3/po/gl/kcm_mobileshell.po
--- old/plasma-mobile-6.1.2/po/gl/kcm_mobileshell.po    2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/gl/kcm_mobileshell.po    2024-07-16 
13:09:34.000000000 +0200
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.05.0\n"
+"X-Generator: Lokalize 24.05.1\n"
 
 #: ui/main.qml:18
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/po/gl/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
 
new/plasma-mobile-6.1.3/po/gl/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
--- 
old/plasma-mobile-6.1.2/po/gl/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
       2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/po/gl/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
       2024-07-16 13:09:34.000000000 +0200
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 23.08.4\n"
+"X-Generator: Lokalize 24.05.1\n"
 
 #: dragstate.cpp:14
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/nn/kcm_cellular_network.po 
new/plasma-mobile-6.1.3/po/nn/kcm_cellular_network.po
--- old/plasma-mobile-6.1.2/po/nn/kcm_cellular_network.po       2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/nn/kcm_cellular_network.po       2024-07-16 
13:09:34.000000000 +0200
@@ -1,12 +1,11 @@
 # Translation of kcm_cellular_network to Norwegian Nynorsk
 #
-# Karl Ove Hufthammer <k...@huftis.org>, 2022, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-settings\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-06-17 02:35+0000\n"
-"PO-Revision-Date: 2023-03-04 15:51+0100\n"
+"PO-Revision-Date: 2024-07-08 22:06+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
 "Language: nn\n"
@@ -14,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 22.12.2\n"
+"X-Generator: Lokalize 24.05.1\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -348,12 +347,12 @@
 #: modemdetails.cpp:430 ui/ModemPage.qml:176 ui/SimPage.qml:119
 #, kde-format
 msgid "Yes"
-msgstr ""
+msgstr "Ja"
 
 #: modemdetails.cpp:432 ui/ModemPage.qml:176 ui/SimPage.qml:119
 #, kde-format
 msgid "No"
-msgstr ""
+msgstr "Nei"
 
 #: modemdetails.cpp:434
 #, kde-format
@@ -406,77 +405,77 @@
 #: sim.cpp:78
 #, kde-format
 msgid "SIM requires the PIN code."
-msgstr ""
+msgstr "SIM krev PIN-kode."
 
 #: sim.cpp:80
 #, kde-format
 msgid "SIM requires the PIN2 code."
-msgstr ""
+msgstr "SIM krev PIN2-kode."
 
 #: sim.cpp:82
 #, kde-format
 msgid "SIM requires the PUK code."
-msgstr ""
+msgstr "SIM krev PUK-kode."
 
 #: sim.cpp:84
 #, kde-format
 msgid "SIM requires the PUK2 code."
-msgstr ""
+msgstr "SIM krev PUK2-kode."
 
 #: sim.cpp:86
 #, kde-format
 msgid "Modem requires the service provider PIN code."
-msgstr ""
+msgstr "Modemet treng PIN-koden til tenesteleverandøren."
 
 #: sim.cpp:88
 #, kde-format
 msgid "Modem requires the service provider PUK code."
-msgstr ""
+msgstr "Modemet treng PUK-koden til tenesteleverandøren."
 
 #: sim.cpp:90
 #, kde-format
 msgid "Modem requires the network PIN code."
-msgstr ""
+msgstr "Modemet treng PIN-koden til nettverket."
 
 #: sim.cpp:92
 #, kde-format
 msgid "Modem requires the network PUK code."
-msgstr ""
+msgstr "Modemet treng PUK-koden til nettverket."
 
 #: sim.cpp:94
 #, kde-format
 msgid "Modem requires the PIN code."
-msgstr ""
+msgstr "Modemet krev PIN-koden."
 
 #: sim.cpp:96
 #, kde-format
 msgid "Modem requires the corporate PIN code."
-msgstr ""
+msgstr "Modemet krev PIN-koden til firmaet."
 
 #: sim.cpp:98
 #, kde-format
 msgid "Modem requires the corporate PUK code."
-msgstr ""
+msgstr "Modemet krev PUK-koden til firmaet."
 
 #: sim.cpp:100
 #, kde-format
 msgid "Modem requires the PH-FSIM PIN code."
-msgstr ""
+msgstr "Modemet krev PH-FSIM PIN-koden."
 
 #: sim.cpp:102
 #, kde-format
 msgid "Modem requires the PH-FSIM PUK code."
-msgstr ""
+msgstr "Modemet krev PH-FSIM PUK-koden."
 
 #: sim.cpp:104
 #, kde-format
 msgid "Modem requires the network subset PIN code."
-msgstr ""
+msgstr "Modemet krev PIN-koden til undernettverket."
 
 #: sim.cpp:106
 #, kde-format
 msgid "Modem requires the network subset PUK code."
-msgstr ""
+msgstr "Modemet krev PUK-koden til undernettverket."
 
 #: sim.cpp:150
 #, kde-format
@@ -581,7 +580,7 @@
 #: ui/main.qml:52
 #, kde-format
 msgid "Modem not available"
-msgstr ""
+msgstr "Modem ikkje tilgjengeleg"
 
 #: ui/main.qml:71
 #, kde-format
@@ -611,16 +610,15 @@
 #: ui/main.qml:113
 #, kde-format
 msgid "Data Usage"
-msgstr ""
+msgstr "Databruk"
 
 #: ui/main.qml:114
 #, kde-format
 msgid "View data usage."
-msgstr ""
+msgstr "Vis databruk."
 
 #: ui/main.qml:122 ui/SimPage.qml:35
-#, fuzzy, kde-format
-#| msgid "SIM"
+#, kde-format
 msgid "SIM"
 msgid_plural "SIMs"
 msgstr[0] "SIM"
@@ -629,17 +627,17 @@
 #: ui/main.qml:143
 #, kde-format
 msgid "SIM %1"
-msgstr ""
+msgstr "SIM %1"
 
 #: ui/main.qml:144
 #, kde-format
 msgid "View SIM %1 details."
-msgstr ""
+msgstr "Vis SIM %1-detaljar."
 
 #: ui/ModemPage.qml:20
 #, kde-format
 msgid "Modem %1"
-msgstr ""
+msgstr "Modem %1"
 
 #: ui/ModemPage.qml:30
 #, kde-format
@@ -654,7 +652,7 @@
 #: ui/ModemPage.qml:42 ui/SimPage.qml:105
 #, kde-format
 msgid "Modem Details"
-msgstr ""
+msgstr "Modemdetaljar"
 
 #: ui/ModemPage.qml:55
 #, kde-format
@@ -781,7 +779,7 @@
 #: ui/ProfileList.qml:72
 #, kde-format
 msgid "APN List"
-msgstr ""
+msgstr "APN-liste"
 
 #: ui/ProfileList.qml:107
 #, kde-format
@@ -844,7 +842,7 @@
 #: ui/SimLockPage.qml:91
 #, kde-format
 msgid "Change PIN"
-msgstr ""
+msgstr "Byt PIN"
 
 #: ui/SimLockPage.qml:92
 #, kde-format
@@ -859,17 +857,17 @@
 #: ui/SimLockPage.qml:114
 #, kde-format
 msgid "Attempts left: %1"
-msgstr ""
+msgstr "Forsøk att: %1"
 
 #: ui/SimLockPage.qml:118
 #, kde-format
 msgid "Enter PIN"
-msgstr ""
+msgstr "Skriv inn PIN"
 
 #: ui/SimLockPage.qml:126
 #, kde-format
 msgid "Change SIM PIN"
-msgstr ""
+msgstr "Byt SIM-PIN"
 
 #: ui/SimLockPage.qml:145 ui/SimLockPage.qml:210
 #, kde-format
@@ -884,27 +882,27 @@
 #: ui/SimLockPage.qml:156 ui/SimLockPage.qml:183
 #, kde-format
 msgid "Current PIN"
-msgstr ""
+msgstr "Gjelande PIN"
 
 #: ui/SimLockPage.qml:161 ui/SimLockPage.qml:221
 #, kde-format
 msgid "New PIN"
-msgstr ""
+msgstr "Ny PIN"
 
 #: ui/SimLockPage.qml:166 ui/SimLockPage.qml:226
 #, kde-format
 msgid "Confirm PIN"
-msgstr ""
+msgstr "Stadfest PIN"
 
 #: ui/SimLockPage.qml:174
 #, kde-format
 msgid "Remove SIM PIN"
-msgstr ""
+msgstr "Fjern SIM-PIN"
 
 #: ui/SimLockPage.qml:191
 #, kde-format
 msgid "Add SIM PIN"
-msgstr ""
+msgstr "Legg til SIM-PIN"
 
 #: ui/SimPage.qml:45
 #, kde-format
@@ -916,7 +914,7 @@
 #: ui/SimPage.qml:60
 #, kde-format
 msgid "Data Roaming"
-msgstr ""
+msgstr "Nettveksling"
 
 #: ui/SimPage.qml:61
 #, kde-format
@@ -926,7 +924,7 @@
 #: ui/SimPage.qml:72
 #, kde-format
 msgid "Modify APNs"
-msgstr ""
+msgstr "Rediger APN-ar"
 
 #: ui/SimPage.qml:73
 #, kde-format
@@ -936,7 +934,7 @@
 #: ui/SimPage.qml:83
 #, kde-format
 msgid "Networks"
-msgstr ""
+msgstr "Nettverk"
 
 #: ui/SimPage.qml:84
 #, kde-format
@@ -956,7 +954,7 @@
 #: ui/SimPage.qml:112
 #, kde-format
 msgid "SIM Details"
-msgstr ""
+msgstr "SIM-detaljar"
 
 #: ui/SimPage.qml:126
 #, kde-format
@@ -991,7 +989,7 @@
 #: ui/SimPage.qml:174
 #, kde-format
 msgid "SIM ID"
-msgstr ""
+msgstr "SIM-ID"
 
 #: ui/SimPage.qml:190
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/nn/kcm_mobile_wifi.po 
new/plasma-mobile-6.1.3/po/nn/kcm_mobile_wifi.po
--- old/plasma-mobile-6.1.2/po/nn/kcm_mobile_wifi.po    2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/nn/kcm_mobile_wifi.po    2024-07-16 
13:09:34.000000000 +0200
@@ -14,7 +14,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.02.0\n"
+"X-Generator: Lokalize 24.05.1\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-mobile-6.1.2/po/nn/kcm_mobileshell.po 
new/plasma-mobile-6.1.3/po/nn/kcm_mobileshell.po
--- old/plasma-mobile-6.1.2/po/nn/kcm_mobileshell.po    2024-07-02 
11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/nn/kcm_mobileshell.po    2024-07-16 
13:09:34.000000000 +0200
@@ -5,7 +5,7 @@
 "Project-Id-Version: plasma-mobile\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-02-20 00:39+0000\n"
-"PO-Revision-Date: 2024-03-17 11:07+0100\n"
+"PO-Revision-Date: 2024-07-13 21:51+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
 "Language: nn\n"
@@ -13,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 24.02.0\n"
+"X-Generator: Lokalize 24.05.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -61,14 +61,15 @@
 #: ui/main.qml:74
 #, kde-format
 msgid "Always show keyboard toggle"
-msgstr ""
+msgstr "Vis alltid tastatur-knapp"
 
 #: ui/main.qml:75
-#, fuzzy, kde-format
-#| msgid "Whether to hide the navigation panel."
+#, kde-format
 msgid ""
 "Whether to always show the keyboard toggle button on the navigation panel."
-msgstr "Om navigasjonspanelet skal gøymast."
+msgstr ""
+"Om knappen for å visa/gøyma skjerm­tastaturet alltid skal visast på "
+"navigasjonspanelet."
 
 #: ui/main.qml:86
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/po/nn/plasma_org.kde.plasma.mobileinitialstart.po 
new/plasma-mobile-6.1.3/po/nn/plasma_org.kde.plasma.mobileinitialstart.po
--- old/plasma-mobile-6.1.2/po/nn/plasma_org.kde.plasma.mobileinitialstart.po   
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/nn/plasma_org.kde.plasma.mobileinitialstart.po   
2024-07-16 13:09:34.000000000 +0200
@@ -1,12 +1,11 @@
 # Translation of plasma_org.kde.plasma.mobileinitialstart to Norwegian Nynorsk
 #
-# Karl Ove Hufthammer <k...@huftis.org>, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-mobile\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2024-02-01 00:39+0000\n"
-"PO-Revision-Date: 2023-05-27 14:48+0200\n"
+"PO-Revision-Date: 2024-07-13 21:49+0200\n"
 "Last-Translator: Karl Ove Hufthammer <k...@huftis.org>\n"
 "Language-Team: Norwegian Nynorsk <l10n...@lister.huftis.org>\n"
 "Language: nn\n"
@@ -14,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 23.04.1\n"
+"X-Generator: Lokalize 24.05.2\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
@@ -165,13 +164,9 @@
 msgstr "Ferdig!"
 
 #: modules/finished/contents/ui/main.qml:24
-#, fuzzy, kde-format
-#| msgid "Your device is now ready. <br /><br />Enjoy <b>Plasma 6.0</b>!"
+#, kde-format
 msgid "Your device is now ready. <br /><br />Enjoy <b>%1</b>!"
-msgstr ""
-"Eininga er no klar til bruk.<br />\n"
-"<br />\n"
-"Kos deg med <b>Plasma 6.0</b>!"
+msgstr "Eininga er no klar til bruk.<br /><br />Kos deg med <b>%1</b>!"
 
 #: modules/prepare/package/contents/ui/main.qml:14
 #, kde-format
@@ -197,7 +192,7 @@
 #: modules/prepare/package/contents/ui/main.qml:125
 #, kde-format
 msgid "Dark Theme"
-msgstr ""
+msgstr "Mørkt tema"
 
 #: modules/time/package/contents/ui/main.qml:14
 #, kde-format
@@ -240,10 +235,9 @@
 msgstr "Passord …"
 
 #: qml/LandingComponent.qml:104
-#, fuzzy, kde-format
-#| msgid "Welcome to <b>Plasma</b>"
+#, kde-format
 msgid "Welcome to<br/><b>%1</b>"
-msgstr "Velkommen til <b>Plasma</b>"
+msgstr "Velkommen til<br/><b>%1</b>"
 
 #: qml/LandingComponent.qml:125 qml/Wizard.qml:293
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/po/nn/plasma_shell_org.kde.plasma.phone.po 
new/plasma-mobile-6.1.3/po/nn/plasma_shell_org.kde.plasma.phone.po
--- old/plasma-mobile-6.1.2/po/nn/plasma_shell_org.kde.plasma.phone.po  
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/po/nn/plasma_shell_org.kde.plasma.phone.po  
2024-07-16 13:09:34.000000000 +0200
@@ -1,6 +1,5 @@
 # Translation of plasma_shell_org.kde.plasma.phone to Norwegian Nynorsk
 #
-# Karl Ove Hufthammer <k...@huftis.org>, 2023.
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-mobile\n"
@@ -14,7 +13,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 22.12.2\n"
+"X-Generator: Lokalize 24.05.1\n"
 "X-Environment: kde\n"
 "X-Accelerator-Marker: &\n"
 "X-Text-Markup: kde4\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/po/zh_CN/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
 
new/plasma-mobile-6.1.3/po/zh_CN/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
--- 
old/plasma-mobile-6.1.2/po/zh_CN/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
    2024-07-02 11:13:58.000000000 +0200
+++ 
new/plasma-mobile-6.1.3/po/zh_CN/plasma_applet_org.kde.plasma.mobile.homescreen.folio.po
    2024-07-16 13:09:34.000000000 +0200
@@ -143,7 +143,7 @@
 #, kde-format
 msgctxt "@action:button"
 msgid "Switch between homescreens and more wallpaper options"
-msgstr "在主屏幕和更多壁纸选项间切换"
+msgstr "切换主屏幕和更多壁纸选项"
 
 #: package/contents/ui/settings/SettingsWindow.qml:294
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/plasma-mobile-6.1.2/quicksettings/screenshot/CMakeLists.txt 
new/plasma-mobile-6.1.3/quicksettings/screenshot/CMakeLists.txt
--- old/plasma-mobile-6.1.2/quicksettings/screenshot/CMakeLists.txt     
2024-07-02 11:13:58.000000000 +0200
+++ new/plasma-mobile-6.1.3/quicksettings/screenshot/CMakeLists.txt     
2024-07-16 13:09:34.000000000 +0200
@@ -1,6 +1,8 @@
 # SPDX-FileCopyrightText: 2022 Devin Lin <de...@kde.org>
 # SPDX-License-Identifier: GPL-2.0-or-later
 
+add_definitions(-DTRANSLATION_DOMAIN=\"plasma_org.kde.plasma.quicksetting.screenshot\")
+
 qt_add_dbus_interfaces(DBUS_SRCS dbus/org.kde.KWin.ScreenShot2.xml)
 
 set(screenshotplugin_SRCS

Reply via email to