Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Sep 2018 19:22:45 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480969 - in head/deskutils: . kdeconnect-kde kdeconnect-kde-kde4 kdeconnect-kde/files
Message-ID:  <201809301922.w8UJMj77036995@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Sun Sep 30 19:22:44 2018
New Revision: 480969
URL: https://svnweb.freebsd.org/changeset/ports/480969

Log:
  Add new port: deskutils/kdeconnect-kde -- the KF5 baesed version of deskutils/kdeconnect-kde-kde4.
  
  Thanks to mikael.urankar@gmail.com for the patch fixing segfaults on IPv4 mapped IPV6 addresses.
  
  PR:		220896
  PR:		227832

Added:
  head/deskutils/kdeconnect-kde/
     - copied from r480966, head/deskutils/kdeconnect-kde-kde4/
  head/deskutils/kdeconnect-kde/files/
  head/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp   (contents, props changed)
Modified:
  head/deskutils/Makefile
  head/deskutils/kdeconnect-kde-kde4/Makefile
  head/deskutils/kdeconnect-kde/Makefile
  head/deskutils/kdeconnect-kde/distinfo
  head/deskutils/kdeconnect-kde/pkg-plist

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Sun Sep 30 19:22:24 2018	(r480968)
+++ head/deskutils/Makefile	Sun Sep 30 19:22:44 2018	(r480969)
@@ -133,6 +133,7 @@
     SUBDIR += kcharselect
     SUBDIR += kcharselect-kde4
     SUBDIR += kchmviewer
+    SUBDIR += kdeconnect-kde
     SUBDIR += kdeconnect-kde-kde4
     SUBDIR += kdepim
     SUBDIR += kdepim-addons

Modified: head/deskutils/kdeconnect-kde-kde4/Makefile
==============================================================================
--- head/deskutils/kdeconnect-kde-kde4/Makefile	Sun Sep 30 19:22:24 2018	(r480968)
+++ head/deskutils/kdeconnect-kde-kde4/Makefile	Sun Sep 30 19:22:44 2018	(r480969)
@@ -10,6 +10,8 @@ PKGNAMESUFFIX=	-kde4
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	Support for KDE to interface between your phone and your computer
 
+CONFLICTS_INSTALL=	${PORTNAME}
+
 USES=		cmake:noninja compiler:c++0x gettext kde:4 qt:4 tar:xz
 USE_KDE=	kdelibs automoc4 workspace runtime
 USE_QT=		corelib gui moc_build qmake_build uic_build rcc_build

Modified: head/deskutils/kdeconnect-kde/Makefile
==============================================================================
--- head/deskutils/kdeconnect-kde-kde4/Makefile	Sun Sep 30 18:59:22 2018	(r480966)
+++ head/deskutils/kdeconnect-kde/Makefile	Sun Sep 30 19:22:44 2018	(r480969)
@@ -1,18 +1,33 @@
 # $FreeBSD$
 
 PORTNAME=	kdeconnect-kde
-PORTVERSION=	0.7.2
-PORTREVISION=	7
-CATEGORIES=	deskutils
-MASTER_SITES=	KDE/unstable/kdeconnect/${PORTVERSION}/src/
-PKGNAMESUFFIX=	-kde4
+DISTVERSION=	1.3.1
+CATEGORIES=	deskutils kde
+MASTER_SITES=	KDE/stable/kdeconnect/${DISTVERSION}/src/
+DIST_SUBDIR=	KDE
 
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	Support for KDE to interface between your phone and your computer
 
-USES=		cmake:noninja compiler:c++0x gettext kde:4 qt:4 tar:xz
-USE_KDE=	kdelibs automoc4 workspace runtime
-USE_QT=		corelib gui moc_build qmake_build uic_build rcc_build
-USE_LDCONFIG=	yes
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
 
+LIB_DEPENDS=	libfakekey.so:x11/libfakekey \
+		libqca-qt5.so:devel/qca@qt5
+RUN_DEPENDS=	sshfs:sysutils/fusefs-sshfs
+
+CONFLICTS_INSTALL=	kdeconnect-kde-0.7* kdeconnect-kde-kde4-0.7.*
+
+USES=		cmake:outsource compiler:c++11-lang desktop-file-utils gettext kde:5 \
+		pkgconfig qt:5 tar:xz
+USE_KDE=	auth bookmarks codecs completion config configwidgets \
+		coreaddons dbusaddons doctools ecm i18n iconthemes \
+		itemviews jobwidgets kcmutils kio notifications service \
+		solid wayland widgetsaddons xmlgui
+USE_QT=		concurrent core dbus gui network qml quick testlib widgets x11extras xml \
+		buildtools_build qmake_build
+USE_XORG=	ice sm x11 xext xtst
+USE_LDCONFIG=	${QT_QMLDIR}/org/kde/kdeconnect
+
 .include <bsd.port.mk>
+

Modified: head/deskutils/kdeconnect-kde/distinfo
==============================================================================
--- head/deskutils/kdeconnect-kde-kde4/distinfo	Sun Sep 30 18:59:22 2018	(r480966)
+++ head/deskutils/kdeconnect-kde/distinfo	Sun Sep 30 19:22:44 2018	(r480969)
@@ -1,2 +1,3 @@
-SHA256 (kdeconnect-kde-0.7.2.tar.xz) = 8f3456cdffbef20efd53c6ace1e1569b2d5e273d2ee16f8fbdc8a6e11f8bfaec
-SIZE (kdeconnect-kde-0.7.2.tar.xz) = 127792
+TIMESTAMP = 1528057032
+SHA256 (KDE/kdeconnect-kde-1.3.1.tar.xz) = 848c9cc13988b3adca79508d37f41fb46254692c6ab496820d0852d1885df267
+SIZE (KDE/kdeconnect-kde-1.3.1.tar.xz) = 283636

Added: head/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp	Sun Sep 30 19:22:44 2018	(r480969)
@@ -0,0 +1,20 @@
+--- core/backends/lan/lanlinkprovider.cpp.orig	2018-05-30 21:41:03 UTC
++++ core/backends/lan/lanlinkprovider.cpp
+@@ -196,6 +196,17 @@ void LanLinkProvider::newUdpConnection() //udpBroadcas
+ 
+         int tcpPort = receivedPacket->get<int>(QStringLiteral("tcpPort"));
+ 
++        // convert IPv6 addresses of type "v4-mapped" to IPv4 
++        QHostAddress addr = sender;
++        if (addr.protocol() == QAbstractSocket::IPv6Protocol) {
++            bool success;
++            QHostAddress convertedAddr = QHostAddress(addr.toIPv4Address(&success));
++            if (success) {
++                // qCDebug(KDECONNECT_CORE) << "Converting IPv6" << addr << "to IPv4" << convertedAddr;
++                sender = convertedAddr;
++            }
++        }
++
+         //qCDebug(KDECONNECT_CORE) << "Received Udp identity packet from" << sender << " asking for a tcp connection on port " << tcpPort;
+ 
+         QSslSocket* socket = new QSslSocket(this);

Modified: head/deskutils/kdeconnect-kde/pkg-plist
==============================================================================
--- head/deskutils/kdeconnect-kde-kde4/pkg-plist	Sun Sep 30 18:59:22 2018	(r480966)
+++ head/deskutils/kdeconnect-kde/pkg-plist	Sun Sep 30 19:22:44 2018	(r480969)
@@ -1,213 +1,433 @@
 bin/kdeconnect-cli
-include/kde4/KDEConnect/DevicesModel
-include/kde4/KDEConnect/NotificationsModel
-include/kde4/kdeconnect/daemoninterface.h
-include/kde4/kdeconnect/dbusinterfaces.h
-include/kde4/kdeconnect/devicebatteryinterface.h
-include/kde4/kdeconnect/deviceinterface.h
-include/kde4/kdeconnect/devicenotificationsinterface.h
-include/kde4/kdeconnect/devicesftpinterface.h
-include/kde4/kdeconnect/devicesmodel.h
-include/kde4/kdeconnect/kdeconnectinterfaces_export.h
-include/kde4/kdeconnect/notificationinterface.h
-include/kde4/kdeconnect/notificationsmodel.h
-lib/cmake/KDEConnect/KDEConnectConfig.cmake
-lib/cmake/KDEConnect/KDEConnectConfigVersion.cmake
-lib/kde4/imports/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so
-lib/kde4/imports/org/kde/kdeconnect/qmldir
-lib/kde4/kcm_kdeconnect.so
-lib/kde4/kdeconnect_battery.so
-lib/kde4/kdeconnect_clipboard.so
-lib/kde4/kdeconnect_mousepad.so
-lib/kde4/kdeconnect_mpriscontrol.so
-lib/kde4/kdeconnect_notifications.so
-lib/kde4/kdeconnect_pausemusic.so
-lib/kde4/kdeconnect_pausemusic_config.so
-lib/kde4/kdeconnect_ping.so
-lib/kde4/kdeconnect_sftp.so
-lib/kde4/kdeconnect_sftp_config.so
-lib/kde4/kdeconnect_share.so
-lib/kde4/kdeconnect_share_config.so
-lib/kde4/kdeconnect_telephony.so
-lib/kde4/kdeconnectfiletiemaction.so
-lib/kde4/kded_kdeconnect.so
-lib/kde4/kio_kdeconnect.so
-lib/kde4/libexec/kdeconnectd
-lib/libkdeconnectcore.so
+bin/kdeconnect-handler
+bin/kdeconnect-indicator
+etc/xdg/autostart/kdeconnectd.desktop
+lib/libexec/kdeconnectd
 lib/libkdeconnectcore.so.1
-lib/libkdeconnectcore.so.1.0.1
-lib/libkdeconnectinterfaces.so
+lib/libkdeconnectcore.so.1.3.1
 lib/libkdeconnectinterfaces.so.1
-lib/libkdeconnectinterfaces.so.1.0.1
-share/applications/kde4/kdeconnect.desktop
-share/apps/kdeconnect/kdeconnect.notifyrc
-share/apps/plasma/plasmoids/kdeconnect/contents/ui/Battery.qml
-share/apps/plasma/plasmoids/kdeconnect/contents/ui/CompactRepresentation.qml
-share/apps/plasma/plasmoids/kdeconnect/contents/ui/DeviceDelegate.qml
-share/apps/plasma/plasmoids/kdeconnect/contents/ui/Sftp.qml
-share/apps/plasma/plasmoids/kdeconnect/contents/ui/kdeconnect.qml
-share/apps/plasma/plasmoids/kdeconnect/metadata.desktop
-share/dbus-1/interfaces/org.kde.kdeconnect.daemon.xml
-share/dbus-1/interfaces/org.kde.kdeconnect.device.battery.xml
-share/dbus-1/interfaces/org.kde.kdeconnect.device.notifications.notification.xml
-share/dbus-1/interfaces/org.kde.kdeconnect.device.notifications.xml
-share/dbus-1/interfaces/org.kde.kdeconnect.device.sftp.xml
-share/dbus-1/interfaces/org.kde.kdeconnect.device.xml
+lib/libkdeconnectinterfaces.so.1.3.1
+lib/libkdeconnectpluginkcm.so.1
+lib/libkdeconnectpluginkcm.so.1.3.1
+%%QT_PLUGINDIR%%/kcm_kdeconnect.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so
+%%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so
+%%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so
+%%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so
+%%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so
+%%QT_PLUGINDIR%%/kdeconnect_share_config.so
+%%QT_PLUGINDIR%%/kdeconnectfileitemaction.so
+%%QT_PLUGINDIR%%/kio_kdeconnect.so
+%%QT_QMLDIR%%/org/kde/kdeconnect/DBusProperty.qml
+%%QT_QMLDIR%%/org/kde/kdeconnect/PluginChecker.qml
+%%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so
+%%QT_QMLDIR%%/org/kde/kdeconnect/qmldir
+share/applications/org.kde.kdeconnect.kcm.desktop
+share/applications/org.kde.kdeconnect.nonplasma.desktop
+share/applications/org.kde.kdeconnect.telhandler.desktop
+share/dbus-1/services/org.kde.kdeconnect.service
+share/doc/HTML/en/kdeconnect/index.cache.bz2
+share/doc/HTML/en/kdeconnect/index.docbook
 share/icons/hicolor/128x128/apps/kdeconnect.png
 share/icons/hicolor/16x16/apps/kdeconnect.png
 share/icons/hicolor/22x22/apps/kdeconnect.png
 share/icons/hicolor/256x256/apps/kdeconnect.png
 share/icons/hicolor/32x32/apps/kdeconnect.png
+share/icons/hicolor/32x32/status/laptopconnected.png
+share/icons/hicolor/32x32/status/laptopdisconnected.png
+share/icons/hicolor/32x32/status/laptoptrusted.png
+share/icons/hicolor/32x32/status/smartphoneconnected.png
+share/icons/hicolor/32x32/status/smartphonedisconnected.png
+share/icons/hicolor/32x32/status/smartphonetrusted.png
+share/icons/hicolor/32x32/status/tabletconnected.png
+share/icons/hicolor/32x32/status/tabletdisconnected.png
+share/icons/hicolor/32x32/status/tablettrusted.png
 share/icons/hicolor/48x48/apps/kdeconnect.png
 share/icons/hicolor/64x64/apps/kdeconnect.png
-share/icons/hicolor/8x8/apps/kdeconnect.png
 share/icons/hicolor/scalable/apps/kdeconnect.svgz
-share/kde4/services/kcm_kdeconnect.desktop
-share/kde4/services/kdeconnect.protocol
-share/kde4/services/kdeconnect_battery.desktop
-share/kde4/services/kdeconnect_clipboard.desktop
-share/kde4/services/kdeconnect_mousepad.desktop
-share/kde4/services/kdeconnect_mpriscontrol.desktop
-share/kde4/services/kdeconnect_notifications.desktop
-share/kde4/services/kdeconnect_pausemusic.desktop
-share/kde4/services/kdeconnect_pausemusic_config.desktop
-share/kde4/services/kdeconnect_ping.desktop
-share/kde4/services/kdeconnect_sftp.desktop
-share/kde4/services/kdeconnect_sftp_config.desktop
-share/kde4/services/kdeconnect_share.desktop
-share/kde4/services/kdeconnect_share_config.desktop
-share/kde4/services/kdeconnect_telephony.desktop
-share/kde4/services/kdeconnectsendfile.desktop
-share/kde4/services/kded/kdeconnect.desktop
-share/kde4/services/plasma-kdeconnect.desktop
-share/kde4/servicetypes/kdeconnect_plugin.desktop
+share/icons/hicolor/scalable/status/laptopconnected.svg
+share/icons/hicolor/scalable/status/laptopdisconnected.svg
+share/icons/hicolor/scalable/status/laptoptrusted.svg
+share/icons/hicolor/scalable/status/smartphoneconnected.svg
+share/icons/hicolor/scalable/status/smartphonedisconnected.svg
+share/icons/hicolor/scalable/status/smartphonetrusted.svg
+share/icons/hicolor/scalable/status/tabletconnected.svg
+share/icons/hicolor/scalable/status/tabletdisconnected.svg
+share/icons/hicolor/scalable/status/tablettrusted.svg
+share/knotifications5/kdeconnect.notifyrc
+share/kservices5/kcm_kdeconnect.desktop
+share/kservices5/kdeconnect.protocol
+share/kservices5/kdeconnect_pausemusic_config.desktop
+share/kservices5/kdeconnect_runcommand_config.desktop
+share/kservices5/kdeconnect_sendnotifications_config.desktop
+share/kservices5/kdeconnect_share_config.desktop
+share/kservices5/kdeconnectsendfile.desktop
+share/kservices5/plasma-kdeconnect.desktop
+share/kservicetypes5/kdeconnect_plugin.desktop
+share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ar/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ar/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/bs/LC_MESSAGES/kdeconnect-core.mo
+share/locale/bs/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo
-share/locale/bs/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/ca/LC_MESSAGES/kdeconnect-core.mo
-share/locale/ca/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/ca/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/cs/LC_MESSAGES/kdeconnect-core.mo
-share/locale/cs/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/cs/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/da/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/da/LC_MESSAGES/kdeconnect-core.mo
-share/locale/da/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/da/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/da/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/da/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/de/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/de/LC_MESSAGES/kdeconnect-core.mo
+share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/de/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/de/LC_MESSAGES/kdeconnect-kio.mo
-share/locale/de/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/el/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/el/LC_MESSAGES/kdeconnect-core.mo
+share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/el/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/el/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/es/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/es/LC_MESSAGES/kdeconnect-core.mo
-share/locale/es/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/es/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/es/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/es/LC_MESSAGES/plasma_applet_kdeconnect.mo
-share/locale/fi/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/et/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/et/LC_MESSAGES/kdeconnect-core.mo
+share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/et/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/et/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-core.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-core.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/fr/LC_MESSAGES/kdeconnect-core.mo
+share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo
-share/locale/fr/LC_MESSAGES/plasma_applet_kdeconnect.mo
-share/locale/gl/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-core.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/he/LC_MESSAGES/kdeconnect-core.mo
+share/locale/he/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/he/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/he/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/hu/LC_MESSAGES/kdeconnect-core.mo
+share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo
-share/locale/hu/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/it/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/it/LC_MESSAGES/kdeconnect-core.mo
+share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/it/LC_MESSAGES/kdeconnect-kded.mo
-share/locale/it/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/it/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ja/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo
-share/locale/ja/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ko/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo
-share/locale/ko/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/lt/LC_MESSAGES/kdeconnect-core.mo
+share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo
-share/locale/lt/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/nl/LC_MESSAGES/kdeconnect-core.mo
-share/locale/nl/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/nl/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-core.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/pl/LC_MESSAGES/kdeconnect-core.mo
-share/locale/pl/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/pl/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/pt/LC_MESSAGES/kdeconnect-core.mo
-share/locale/pt/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/pt/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo
-share/locale/pt_BR/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo
-share/locale/ro/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/ru/LC_MESSAGES/kdeconnect-core.mo
+share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo
-share/locale/ru/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/sk/LC_MESSAGES/kdeconnect-core.mo
-share/locale/sk/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/sk/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-core.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-core.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-core.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-core.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/sr@latin/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/sv/LC_MESSAGES/kdeconnect-core.mo
-share/locale/sv/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/sv/LC_MESSAGES/plasma_applet_kdeconnect.mo
-share/locale/tr/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-core.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
 share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo
 share/locale/uk/LC_MESSAGES/kdeconnect-core.mo
-share/locale/uk/LC_MESSAGES/kdeconnect-filetiemaction.mo
+share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo
 share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo
 share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo
 share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo
 share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo
-share/locale/uk/LC_MESSAGES/plasma_applet_kdeconnect.mo
+share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo
+share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo
+share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo
+share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo
+share/metainfo/org.kde.kdeconnect.kcm.appdata.xml
+share/nautilus-python/extensions/kdeconnect-share.py
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteKeyboard.qml
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml
+share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml
+share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809301922.w8UJMj77036995>